1 /* Public domain. */ 2 3 #ifndef _LINUX_FS_H 4 #define _LINUX_FS_H 5 6 #include <sys/types.h> 7 #include <sys/fcntl.h> 8 #include <sys/file.h> 9 #include <linux/capability.h> 10 #include <linux/linkage.h> 11 #include <linux/uuid.h> 12 #include <linux/pid.h> 13 #include <linux/radix-tree.h> 14 #include <linux/wait_bit.h> 15 #include <linux/err.h> 16 #include <linux/sched/signal.h> /* via percpu-rwsem.h -> rcuwait.h */ 17 18 struct address_space; 19 20 #endif 21