at v6.14-rc3 37 lines 846 B view raw
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. 6 * 7 * Sorted alphabetically. 8 */ 9 10#include "blk.c" 11#include "bug.c" 12#include "build_assert.c" 13#include "build_bug.c" 14#include "cred.c" 15#include "device.c" 16#include "err.c" 17#include "fs.c" 18#include "io.c" 19#include "jump_label.c" 20#include "kunit.c" 21#include "mutex.c" 22#include "page.c" 23#include "platform.c" 24#include "pci.c" 25#include "pid_namespace.c" 26#include "rbtree.c" 27#include "rcu.c" 28#include "refcount.c" 29#include "security.c" 30#include "signal.c" 31#include "slab.c" 32#include "spinlock.c" 33#include "task.c" 34#include "uaccess.c" 35#include "vmalloc.c" 36#include "wait.c" 37#include "workqueue.c"