提交 5ad4e53b 编写于 作者: A Al Viro

Get rid of indirect include of fs_struct.h

Don't pull it in sched.h; very few files actually need it and those
can include directly.  sched.h itself only needs forward declaration
of struct fs_struct;
Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
上级 ce3b0f8d
...@@ -19,7 +19,6 @@ ...@@ -19,7 +19,6 @@
#include <asm/system.h> #include <asm/system.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/spinlock.h> #include <linux/spinlock.h>
#include <linux/fs_struct.h>
#include <linux/init_task.h> #include <linux/init_task.h>
#include <linux/sched.h> #include <linux/sched.h>
#include <linux/fs.h> #include <linux/fs.h>
......
...@@ -32,6 +32,7 @@ ...@@ -32,6 +32,7 @@
#include <linux/seqlock.h> #include <linux/seqlock.h>
#include <linux/swap.h> #include <linux/swap.h>
#include <linux/bootmem.h> #include <linux/bootmem.h>
#include <linux/fs_struct.h>
#include "internal.h" #include "internal.h"
int sysctl_vfs_cache_pressure __read_mostly = 100; int sysctl_vfs_cache_pressure __read_mostly = 100;
......
...@@ -53,6 +53,7 @@ ...@@ -53,6 +53,7 @@
#include <linux/tracehook.h> #include <linux/tracehook.h>
#include <linux/kmod.h> #include <linux/kmod.h>
#include <linux/fsnotify.h> #include <linux/fsnotify.h>
#include <linux/fs_struct.h>
#include <asm/uaccess.h> #include <asm/uaccess.h>
#include <asm/mmu_context.h> #include <asm/mmu_context.h>
......
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
#include <linux/fs.h> #include <linux/fs.h>
#include <linux/path.h> #include <linux/path.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/fs_struct.h>
/* /*
* Replace the fs->{rootmnt,root} with {mnt,dentry}. Put the old values. * Replace the fs->{rootmnt,root} with {mnt,dentry}. Put the old values.
......
...@@ -32,6 +32,7 @@ ...@@ -32,6 +32,7 @@
#include <linux/file.h> #include <linux/file.h>
#include <linux/fcntl.h> #include <linux/fcntl.h>
#include <linux/device_cgroup.h> #include <linux/device_cgroup.h>
#include <linux/fs_struct.h>
#include <asm/uaccess.h> #include <asm/uaccess.h>
#define ACC_MODE(x) ("\000\004\002\006"[(x)&O_ACCMODE]) #define ACC_MODE(x) ("\000\004\002\006"[(x)&O_ACCMODE])
......
...@@ -27,6 +27,7 @@ ...@@ -27,6 +27,7 @@
#include <linux/ramfs.h> #include <linux/ramfs.h>
#include <linux/log2.h> #include <linux/log2.h>
#include <linux/idr.h> #include <linux/idr.h>
#include <linux/fs_struct.h>
#include <asm/uaccess.h> #include <asm/uaccess.h>
#include <asm/unistd.h> #include <asm/unistd.h>
#include "pnode.h" #include "pnode.h"
......
...@@ -29,6 +29,7 @@ ...@@ -29,6 +29,7 @@
#include <linux/rcupdate.h> #include <linux/rcupdate.h>
#include <linux/audit.h> #include <linux/audit.h>
#include <linux/falloc.h> #include <linux/falloc.h>
#include <linux/fs_struct.h>
int vfs_statfs(struct dentry *dentry, struct kstatfs *buf) int vfs_statfs(struct dentry *dentry, struct kstatfs *buf)
{ {
......
...@@ -80,6 +80,7 @@ ...@@ -80,6 +80,7 @@
#include <linux/oom.h> #include <linux/oom.h>
#include <linux/elf.h> #include <linux/elf.h>
#include <linux/pid_namespace.h> #include <linux/pid_namespace.h>
#include <linux/fs_struct.h>
#include "internal.h" #include "internal.h"
/* NOTE: /* NOTE:
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
#include <linux/mm.h> #include <linux/mm.h>
#include <linux/file.h> #include <linux/file.h>
#include <linux/fdtable.h> #include <linux/fdtable.h>
#include <linux/fs_struct.h>
#include <linux/mount.h> #include <linux/mount.h>
#include <linux/ptrace.h> #include <linux/ptrace.h>
#include <linux/seq_file.h> #include <linux/seq_file.h>
......
...@@ -22,6 +22,8 @@ struct proc_mounts { ...@@ -22,6 +22,8 @@ struct proc_mounts {
int event; int event;
}; };
struct fs_struct;
extern struct mnt_namespace *copy_mnt_ns(unsigned long, struct mnt_namespace *, extern struct mnt_namespace *copy_mnt_ns(unsigned long, struct mnt_namespace *,
struct fs_struct *); struct fs_struct *);
extern void __put_mnt_ns(struct mnt_namespace *ns); extern void __put_mnt_ns(struct mnt_namespace *ns);
......
...@@ -8,6 +8,7 @@ struct mnt_namespace; ...@@ -8,6 +8,7 @@ struct mnt_namespace;
struct uts_namespace; struct uts_namespace;
struct ipc_namespace; struct ipc_namespace;
struct pid_namespace; struct pid_namespace;
struct fs_struct;
/* /*
* A structure to contain pointers to all per-process * A structure to contain pointers to all per-process
......
...@@ -68,7 +68,7 @@ struct sched_param { ...@@ -68,7 +68,7 @@ struct sched_param {
#include <linux/smp.h> #include <linux/smp.h>
#include <linux/sem.h> #include <linux/sem.h>
#include <linux/signal.h> #include <linux/signal.h>
#include <linux/fs_struct.h> #include <linux/path.h>
#include <linux/compiler.h> #include <linux/compiler.h>
#include <linux/completion.h> #include <linux/completion.h>
#include <linux/pid.h> #include <linux/pid.h>
...@@ -97,6 +97,7 @@ struct futex_pi_state; ...@@ -97,6 +97,7 @@ struct futex_pi_state;
struct robust_list_head; struct robust_list_head;
struct bio; struct bio;
struct bts_tracer; struct bts_tracer;
struct fs_struct;
/* /*
* List of flags we want to share for kernel threads, * List of flags we want to share for kernel threads,
......
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
#include <linux/fs.h> #include <linux/fs.h>
#include <linux/initrd.h> #include <linux/initrd.h>
#include <linux/async.h> #include <linux/async.h>
#include <linux/fs_struct.h>
#include <linux/nfs_fs.h> #include <linux/nfs_fs.h>
#include <linux/nfs_fs_sb.h> #include <linux/nfs_fs_sb.h>
......
...@@ -66,6 +66,7 @@ ...@@ -66,6 +66,7 @@
#include <linux/syscalls.h> #include <linux/syscalls.h>
#include <linux/inotify.h> #include <linux/inotify.h>
#include <linux/capability.h> #include <linux/capability.h>
#include <linux/fs_struct.h>
#include "audit.h" #include "audit.h"
......
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
#include <linux/syscalls.h> #include <linux/syscalls.h>
#include <linux/sysctl.h> #include <linux/sysctl.h>
#include <linux/types.h> #include <linux/types.h>
#include <linux/fs_struct.h>
static void default_handler(int, struct pt_regs *); static void default_handler(int, struct pt_regs *);
......
...@@ -46,6 +46,7 @@ ...@@ -46,6 +46,7 @@
#include <linux/blkdev.h> #include <linux/blkdev.h>
#include <linux/task_io_accounting_ops.h> #include <linux/task_io_accounting_ops.h>
#include <linux/tracehook.h> #include <linux/tracehook.h>
#include <linux/fs_struct.h>
#include <linux/init_task.h> #include <linux/init_task.h>
#include <trace/sched.h> #include <trace/sched.h>
......
...@@ -60,6 +60,7 @@ ...@@ -60,6 +60,7 @@
#include <linux/tty.h> #include <linux/tty.h>
#include <linux/proc_fs.h> #include <linux/proc_fs.h>
#include <linux/blkdev.h> #include <linux/blkdev.h>
#include <linux/fs_struct.h>
#include <trace/sched.h> #include <trace/sched.h>
#include <linux/magic.h> #include <linux/magic.h>
......
...@@ -34,6 +34,7 @@ ...@@ -34,6 +34,7 @@
#include <linux/seccomp.h> #include <linux/seccomp.h>
#include <linux/cpu.h> #include <linux/cpu.h>
#include <linux/ptrace.h> #include <linux/ptrace.h>
#include <linux/fs_struct.h>
#include <linux/compat.h> #include <linux/compat.h>
#include <linux/syscalls.h> #include <linux/syscalls.h>
......
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
#include <linux/types.h> #include <linux/types.h>
#include <linux/mount.h> #include <linux/mount.h>
#include <linux/mnt_namespace.h> #include <linux/mnt_namespace.h>
#include <linux/fs_struct.h>
#include "common.h" #include "common.h"
#include "realpath.h" #include "realpath.h"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册