summaryrefslogtreecommitdiff
path: root/rust/helpers/sync.c
diff options
context:
space:
mode:
Diffstat (limited to 'rust/helpers/sync.c')
-rw-r--r--rust/helpers/sync.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/rust/helpers/sync.c b/rust/helpers/sync.c
new file mode 100644
index 000000000000..ff7e68b48810
--- /dev/null
+++ b/rust/helpers/sync.c
@@ -0,0 +1,13 @@
+// SPDX-License-Identifier: GPL-2.0
+
+#include <linux/lockdep.h>
+
+void rust_helper_lockdep_register_key(struct lock_class_key *k)
+{
+ lockdep_register_key(k);
+}
+
+void rust_helper_lockdep_unregister_key(struct lock_class_key *k)
+{
+ lockdep_unregister_key(k);
+}