mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-27 19:53:15 -04:00
This introduces a module for dealing with interrupt-disabled contexts, including the ability to enable and disable interrupts along with the ability to annotate functions as expecting that IRQs are already disabled on the local CPU. Signed-off-by: Lyude Paul <lyude@redhat.com> Signed-off-by: Boqun Feng <boqun@kernel.org> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Reviewed-by: Benno Lossin <lossin@kernel.org> Reviewed-by: Andreas Hindborg <a.hindborg@kernel.org> Reviewed-by: Gary Guo <gary@garyguo.net> Link: https://patch.msgid.link/20260807070218.27144-15-boqun@kernel.org
19 lines
390 B
C
19 lines
390 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include <linux/lockdep.h>
|
|
|
|
__rust_helper void rust_helper_lockdep_register_key(struct lock_class_key *k)
|
|
{
|
|
lockdep_register_key(k);
|
|
}
|
|
|
|
__rust_helper void rust_helper_lockdep_unregister_key(struct lock_class_key *k)
|
|
{
|
|
lockdep_unregister_key(k);
|
|
}
|
|
|
|
__rust_helper void rust_helper_lockdep_assert_irqs_disabled(void)
|
|
{
|
|
lockdep_assert_irqs_disabled();
|
|
}
|