mirror of
https://github.com/torvalds/linux.git
synced 2026-05-12 16:18:45 +02:00
This is needed to inline these helpers into Rust code. Reviewed-by: Boqun Feng <boqun.feng@gmail.com> Reviewed-by: Gary Guo <gary@garyguo.net> Signed-off-by: Alice Ryhl <aliceryhl@google.com> Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org> Link: https://patch.msgid.link/20260105-define-rust-helper-v2-9-51da5f454a67@google.com Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
15 lines
249 B
C
15 lines
249 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
/*
|
|
* Copyright (C) 2024 Google LLC.
|
|
*/
|
|
|
|
#include <linux/jump_label.h>
|
|
|
|
#ifndef CONFIG_JUMP_LABEL
|
|
__rust_helper int rust_helper_static_key_count(struct static_key *key)
|
|
{
|
|
return static_key_count(key);
|
|
}
|
|
#endif
|