diff options
author | Boaz Harrosh <bharrosh@panasas.com> | 2009-12-03 13:29:12 -0500 |
---|---|---|
committer | J. Bruce Fields <bfields@citi.umich.edu> | 2009-12-14 18:12:09 -0500 |
commit | 341eb184469f8e4a6841fc49a57ad4a27e51c335 (patch) | |
tree | df6b06cc5b15ae421b589865fc008df1219589a4 /fs/nfsd/vfs.c | |
parent | 72579ac9cd68081108277c31781b127d0f420d61 (diff) |
nfsd: Source files #include cleanups
Now that the headers are fixed and carry their own wait, all fs/nfsd/
source files can include a minimal set of headers. and still compile just
fine.
This patch should improve the compilation speed of the nfsd module.
Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Diffstat (limited to 'fs/nfsd/vfs.c')
-rw-r--r-- | fs/nfsd/vfs.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/fs/nfsd/vfs.c b/fs/nfsd/vfs.c index a7038ede671a..81ce108c114e 100644 --- a/fs/nfsd/vfs.c +++ b/fs/nfsd/vfs.c | |||
@@ -16,43 +16,23 @@ | |||
16 | * Zerocpy NFS support (C) 2002 Hirokazu Takahashi <taka@valinux.co.jp> | 16 | * Zerocpy NFS support (C) 2002 Hirokazu Takahashi <taka@valinux.co.jp> |
17 | */ | 17 | */ |
18 | 18 | ||
19 | #include <linux/string.h> | ||
20 | #include <linux/time.h> | ||
21 | #include <linux/errno.h> | ||
22 | #include <linux/fs.h> | 19 | #include <linux/fs.h> |
23 | #include <linux/file.h> | 20 | #include <linux/file.h> |
24 | #include <linux/mount.h> | ||
25 | #include <linux/major.h> | ||
26 | #include <linux/splice.h> | 21 | #include <linux/splice.h> |
27 | #include <linux/proc_fs.h> | ||
28 | #include <linux/stat.h> | ||
29 | #include <linux/fcntl.h> | 22 | #include <linux/fcntl.h> |
30 | #include <linux/net.h> | ||
31 | #include <linux/unistd.h> | ||
32 | #include <linux/slab.h> | ||
33 | #include <linux/pagemap.h> | ||
34 | #include <linux/in.h> | ||
35 | #include <linux/module.h> | ||
36 | #include <linux/namei.h> | 23 | #include <linux/namei.h> |
37 | #include <linux/vfs.h> | ||
38 | #include <linux/delay.h> | 24 | #include <linux/delay.h> |
39 | #include <linux/sunrpc/svc.h> | ||
40 | #include <linux/nfsd/nfsd.h> | 25 | #include <linux/nfsd/nfsd.h> |
41 | #ifdef CONFIG_NFSD_V3 | 26 | #ifdef CONFIG_NFSD_V3 |
42 | #include <linux/nfs3.h> | ||
43 | #include <linux/nfsd/xdr3.h> | 27 | #include <linux/nfsd/xdr3.h> |
44 | #endif /* CONFIG_NFSD_V3 */ | 28 | #endif /* CONFIG_NFSD_V3 */ |
45 | #include <linux/nfsd/nfsfh.h> | ||
46 | #include <linux/quotaops.h> | 29 | #include <linux/quotaops.h> |
47 | #include <linux/fsnotify.h> | 30 | #include <linux/fsnotify.h> |
48 | #include <linux/posix_acl.h> | ||
49 | #include <linux/posix_acl_xattr.h> | 31 | #include <linux/posix_acl_xattr.h> |
50 | #include <linux/xattr.h> | 32 | #include <linux/xattr.h> |
51 | #ifdef CONFIG_NFSD_V4 | 33 | #ifdef CONFIG_NFSD_V4 |
52 | #include <linux/nfs4.h> | ||
53 | #include <linux/nfs4_acl.h> | 34 | #include <linux/nfs4_acl.h> |
54 | #include <linux/nfsd_idmap.h> | 35 | #include <linux/nfsd_idmap.h> |
55 | #include <linux/security.h> | ||
56 | #endif /* CONFIG_NFSD_V4 */ | 36 | #endif /* CONFIG_NFSD_V4 */ |
57 | #include <linux/jhash.h> | 37 | #include <linux/jhash.h> |
58 | #include <linux/ima.h> | 38 | #include <linux/ima.h> |