diff options
author | J. Bruce Fields <bfields@redhat.com> | 2011-08-19 11:38:52 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2011-08-26 18:22:52 -0400 |
commit | c10bd39d800d42adef55ed9016f802677cd0ab5f (patch) | |
tree | 35b3301cf478bb3fed38eea2928548eea3e332c7 /fs/nfsd/nfsd.h | |
parent | 8cfb79134027e96bc11067da00d7ca73e58e69ce (diff) |
Remove include/linux/nfsd/const.h
Userspace shouldn't have a use for these constants. Nothing here is
used outside fs/nfsd.
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/nfsd.h')
-rw-r--r-- | fs/nfsd/nfsd.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/fs/nfsd/nfsd.h b/fs/nfsd/nfsd.h index 7ecfa2420307..8da03e16ab35 100644 --- a/fs/nfsd/nfsd.h +++ b/fs/nfsd/nfsd.h | |||
@@ -11,13 +11,39 @@ | |||
11 | #include <linux/types.h> | 11 | #include <linux/types.h> |
12 | #include <linux/mount.h> | 12 | #include <linux/mount.h> |
13 | 13 | ||
14 | #include <linux/nfs.h> | ||
15 | #include <linux/nfs2.h> | ||
16 | #include <linux/nfs3.h> | ||
17 | #include <linux/nfs4.h> | ||
18 | #include <linux/sunrpc/msg_prot.h> | ||
19 | |||
14 | #include <linux/nfsd/debug.h> | 20 | #include <linux/nfsd/debug.h> |
15 | #include <linux/nfsd/export.h> | 21 | #include <linux/nfsd/export.h> |
16 | #include <linux/nfsd/stats.h> | 22 | #include <linux/nfsd/stats.h> |
23 | |||
17 | /* | 24 | /* |
18 | * nfsd version | 25 | * nfsd version |
19 | */ | 26 | */ |
20 | #define NFSD_SUPPORTED_MINOR_VERSION 1 | 27 | #define NFSD_SUPPORTED_MINOR_VERSION 1 |
28 | /* | ||
29 | * Maximum blocksizes supported by daemon under various circumstances. | ||
30 | */ | ||
31 | #define NFSSVC_MAXBLKSIZE RPCSVC_MAXPAYLOAD | ||
32 | /* NFSv2 is limited by the protocol specification, see RFC 1094 */ | ||
33 | #define NFSSVC_MAXBLKSIZE_V2 (8*1024) | ||
34 | |||
35 | |||
36 | /* | ||
37 | * Largest number of bytes we need to allocate for an NFS | ||
38 | * call or reply. Used to control buffer sizes. We use | ||
39 | * the length of v3 WRITE, READDIR and READDIR replies | ||
40 | * which are an RPC header, up to 26 XDR units of reply | ||
41 | * data, and some page data. | ||
42 | * | ||
43 | * Note that accuracy here doesn't matter too much as the | ||
44 | * size is rounded up to a page size when allocating space. | ||
45 | */ | ||
46 | #define NFSD_BUFSIZE ((RPC_MAX_HEADER_WITH_AUTH+26)*XDR_UNIT + NFSSVC_MAXBLKSIZE) | ||
21 | 47 | ||
22 | struct readdir_cd { | 48 | struct readdir_cd { |
23 | __be32 err; /* 0, nfserr, or nfserr_eof */ | 49 | __be32 err; /* 0, nfserr, or nfserr_eof */ |