mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2024-12-28 16:52:18 +00:00
8af7a50167
After a source tree build of the kernel, and having used the `RSCPP`
rule, running `rustfmt` fails with:
error: macros that expand to items must be delimited with braces or followed by a semicolon
--> rust/kernel/arch_static_branch_asm.rs:1:27
|
1 | ...ls!("1: jmp " ... ".popsection \n\t")
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
help: change the delimiters to curly braces
|
1 | ::kernel::concat_literals!{"1: jmp " ... ".popsection \n\t"}
| ~ ~
help: add a semicolon
|
1 | ::kernel::concat_literals!("1: jmp " ... ".popsection \n\t");
| +
This file is not meant to be formatted nor works on its own since it is
meant to be textually included.
Thus skip formatting it by prefixing its name with `generated_`.
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Alex Gaynor <alex.gaynor@gmail.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Boqun Feng <boqun.feng@gmail.com>
Cc: Gary Guo <gary@garyguo.net>
Cc: Björn Roy Baron <bjorn3_gh@protonmail.com>
Cc: Benno Lossin <benno.lossin@proton.me>
Cc: Andreas Hindborg <a.hindborg@kernel.org>
Cc: Alice Ryhl <aliceryhl@google.com>
Cc: Trevor Gross <tmgross@umich.edu>
Link: https://lore.kernel.org/20241120175916.58860-1-ojeda@kernel.org
Fixes: 169484ab66
("rust: add arch_static_branch")
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
75 lines
2.3 KiB
Rust
75 lines
2.3 KiB
Rust
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
// Copyright (C) 2024 Google LLC.
|
|
|
|
//! Logic for static keys.
|
|
//!
|
|
//! C header: [`include/linux/jump_label.h`](srctree/include/linux/jump_label.h).
|
|
|
|
/// Branch based on a static key.
|
|
///
|
|
/// Takes three arguments:
|
|
///
|
|
/// * `key` - the path to the static variable containing the `static_key`.
|
|
/// * `keytyp` - the type of `key`.
|
|
/// * `field` - the name of the field of `key` that contains the `static_key`.
|
|
///
|
|
/// # Safety
|
|
///
|
|
/// The macro must be used with a real static key defined by C.
|
|
#[macro_export]
|
|
macro_rules! static_branch_unlikely {
|
|
($key:path, $keytyp:ty, $field:ident) => {{
|
|
let _key: *const $keytyp = ::core::ptr::addr_of!($key);
|
|
let _key: *const $crate::bindings::static_key_false = ::core::ptr::addr_of!((*_key).$field);
|
|
let _key: *const $crate::bindings::static_key = _key.cast();
|
|
|
|
#[cfg(not(CONFIG_JUMP_LABEL))]
|
|
{
|
|
$crate::bindings::static_key_count(_key.cast_mut()) > 0
|
|
}
|
|
|
|
#[cfg(CONFIG_JUMP_LABEL)]
|
|
$crate::jump_label::arch_static_branch! { $key, $keytyp, $field, false }
|
|
}};
|
|
}
|
|
pub use static_branch_unlikely;
|
|
|
|
/// Assert that the assembly block evaluates to a string literal.
|
|
#[cfg(CONFIG_JUMP_LABEL)]
|
|
const _: &str = include!(concat!(
|
|
env!("OBJTREE"),
|
|
"/rust/kernel/generated_arch_static_branch_asm.rs"
|
|
));
|
|
|
|
#[macro_export]
|
|
#[doc(hidden)]
|
|
#[cfg(CONFIG_JUMP_LABEL)]
|
|
macro_rules! arch_static_branch {
|
|
($key:path, $keytyp:ty, $field:ident, $branch:expr) => {'my_label: {
|
|
$crate::asm!(
|
|
include!(concat!(env!("OBJTREE"), "/rust/kernel/generated_arch_static_branch_asm.rs"));
|
|
l_yes = label {
|
|
break 'my_label true;
|
|
},
|
|
symb = sym $key,
|
|
off = const ::core::mem::offset_of!($keytyp, $field),
|
|
branch = const $crate::jump_label::bool_to_int($branch),
|
|
);
|
|
|
|
break 'my_label false;
|
|
}};
|
|
}
|
|
|
|
#[cfg(CONFIG_JUMP_LABEL)]
|
|
pub use arch_static_branch;
|
|
|
|
/// A helper used by inline assembly to pass a boolean to as a `const` parameter.
|
|
///
|
|
/// Using this function instead of a cast lets you assert that the input is a boolean, and not some
|
|
/// other type that can also be cast to an integer.
|
|
#[doc(hidden)]
|
|
pub const fn bool_to_int(b: bool) -> i32 {
|
|
b as i32
|
|
}
|