diff options
author | Jeff Layton <jlayton@kernel.org> | 2022-10-18 13:47:55 +0200 |
---|---|---|
committer | Chuck Lever <chuck.lever@oracle.com> | 2022-11-28 18:54:44 +0100 |
commit | cb12fae1c34b1fa7eaae92c5aadc72d86d7fae19 (patch) | |
tree | fceddd06f54d356e18816dfa5718e3939874df92 /fs/nfsd/blocklayout.c | |
parent | nfsd: ignore requests to disable unsupported versions (diff) | |
download | linux-cb12fae1c34b1fa7eaae92c5aadc72d86d7fae19.tar.xz linux-cb12fae1c34b1fa7eaae92c5aadc72d86d7fae19.zip |
nfsd: move nfserrno() to vfs.c
nfserrno() is common to all nfs versions, but nfsproc.c is specifically
for NFSv2. Move it to vfs.c, and the prototype to vfs.h.
While we're in here, remove the #ifdef EDQUOT check in this function.
It's apparently a holdover from the initial merge of the nfsd code in
1997. No other place in the kernel checks that that symbol is defined
before using it, so I think we can dispense with it here.
Signed-off-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Diffstat (limited to 'fs/nfsd/blocklayout.c')
-rw-r--r-- | fs/nfsd/blocklayout.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/nfsd/blocklayout.c b/fs/nfsd/blocklayout.c index b6d01d51a746..04697f8dc37d 100644 --- a/fs/nfsd/blocklayout.c +++ b/fs/nfsd/blocklayout.c @@ -12,6 +12,7 @@ #include "blocklayoutxdr.h" #include "pnfs.h" #include "filecache.h" +#include "vfs.h" #define NFSDDBG_FACILITY NFSDDBG_PNFS |