diff options
author | Anna Schumaker <Anna.Schumaker@netapp.com> | 2014-08-27 19:17:56 +0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2014-08-29 00:00:01 +0400 |
commit | 2b8941b962a9f24d61c2b3c2e889928e6cf3d82b (patch) | |
tree | dfbedde824d9288dd99ded7c4fabbabd317f9b22 /include/linux/nfs4.h | |
parent | 6cd906627b4f7438c6f5bb1d1eed63a6d7776e2e (diff) | |
download | linux-2b8941b962a9f24d61c2b3c2e889928e6cf3d82b.tar.xz |
NFSD: Update some as-yet unused 4.2 error codes
Recent NFS v4.2 drafts have removed NFS4ERR_METADATA_NOTSUPP and
reassigned the error code to NFS4ERR_UNION_NOTSUPP.
I also add in the NFS4ERR_OFFLOAD_NO_REQS error code.
We're not using any of these yet, so there's no harm done.
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'include/linux/nfs4.h')
-rw-r--r-- | include/linux/nfs4.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/nfs4.h b/include/linux/nfs4.h index a1e3064a8d99..79b2a0f5c318 100644 --- a/include/linux/nfs4.h +++ b/include/linux/nfs4.h @@ -235,10 +235,11 @@ enum nfsstat4 { /* nfs42 */ NFS4ERR_PARTNER_NOTSUPP = 10088, NFS4ERR_PARTNER_NO_AUTH = 10089, - NFS4ERR_METADATA_NOTSUPP = 10090, + NFS4ERR_UNION_NOTSUPP = 10090, NFS4ERR_OFFLOAD_DENIED = 10091, NFS4ERR_WRONG_LFS = 10092, NFS4ERR_BADLABEL = 10093, + NFS4ERR_OFFLOAD_NO_REQS = 10094, }; static inline bool seqid_mutating_err(u32 err) |