Merge tag 'drm-next-2024-11-21' of https://gitlab.freedesktop.org/drm/kernel
[linux.git] / rust / helpers / helpers.c
blob62022b18caf5ec17231fd0e7be1234592d1146e3
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Non-trivial C macros cannot be used in Rust. Similarly, inlined C functions
4 * cannot be called either. This file explicitly creates functions ("helpers")
5 * that wrap those so that they can be called from Rust.
7 * Sorted alphabetically.
8 */
10 #include "blk.c"
11 #include "bug.c"
12 #include "build_assert.c"
13 #include "build_bug.c"
14 #include "cred.c"
15 #include "err.c"
16 #include "fs.c"
17 #include "kunit.c"
18 #include "mutex.c"
19 #include "page.c"
20 #include "rbtree.c"
21 #include "refcount.c"
22 #include "security.c"
23 #include "signal.c"
24 #include "slab.c"
25 #include "spinlock.c"
26 #include "task.c"
27 #include "uaccess.c"
28 #include "wait.c"
29 #include "workqueue.c"