Commit dd30333c authored by J. Bruce Fields's avatar J. Bruce Fields

nfsd4: better error return to indicate SSV non-support

As 4.1 becomes less experimental and SSV still isn't implemented, we
have to admit it's not going to be, and return some sensible error
rather than just saying "our server's broken".  Discussion in the ietf
group hasn't turned up any objections to using NFS4ERR_ENC_ALG_UNSUPP
for that purpose.
Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
parent aa387d6c
...@@ -1651,6 +1651,7 @@ nfsd4_exchange_id(struct svc_rqst *rqstp, ...@@ -1651,6 +1651,7 @@ nfsd4_exchange_id(struct svc_rqst *rqstp,
default: /* checked by xdr code */ default: /* checked by xdr code */
WARN_ON_ONCE(1); WARN_ON_ONCE(1);
case SP4_SSV: case SP4_SSV:
return nfserr_encr_alg_unsupp;
case SP4_MACH_CRED: case SP4_MACH_CRED:
return nfserr_serverfault; /* no excuse :-/ */ return nfserr_serverfault; /* no excuse :-/ */
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment