2025-03-07 15:27:01 -08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
|
|
|
|
|
#include <linux/lockdep.h>
|
|
|
|
|
|
2026-01-05 12:42:33 +00:00
|
|
|
__rust_helper void rust_helper_lockdep_register_key(struct lock_class_key *k)
|
2025-03-07 15:27:01 -08:00
|
|
|
{
|
|
|
|
|
lockdep_register_key(k);
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-05 12:42:33 +00:00
|
|
|
__rust_helper void rust_helper_lockdep_unregister_key(struct lock_class_key *k)
|
2025-03-07 15:27:01 -08:00
|
|
|
{
|
|
|
|
|
lockdep_unregister_key(k);
|
|
|
|
|
}
|