diff options
author | Benny Halevy <bhalevy@tonian.com> | 2011-10-19 22:13:13 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2011-10-24 04:24:28 -0400 |
commit | c668fc6dfcce98f8222ce1c997f4e5c4ac63f3d0 (patch) | |
tree | 5e4b637fbe6e0a060fe9c22fe9167caec8b66d27 | |
parent | fc0c3dd13bac0675cdedc4e0d0641aa8a22e82de (diff) |
nfsd4: allow NFS4_SHARE_SIGNAL_DELEG_WHEN_RESRC_AVAIL | NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED
RFC5661 says:
The client may set one or both of
OPEN4_SHARE_ACCESS_WANT_SIGNAL_DELEG_WHEN_RESRC_AVAIL and
OPEN4_SHARE_ACCESS_WANT_PUSH_DELEG_WHEN_UNCONTENDED.
Signed-off-by: Benny Halevy <bhalevy@tonian.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
-rw-r--r-- | fs/nfsd/nfs4xdr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c index fdc09a52cd8d..706ada1956c1 100644 --- a/fs/nfsd/nfs4xdr.c +++ b/fs/nfsd/nfs4xdr.c | |||
@@ -677,6 +677,8 @@ static __be32 nfsd4_decode_share_access(struct nfsd4_compoundargs *argp, u32 *x) | |||
677 | switch (w) { | 677 | switch (w) { |
678 | case NFS4_SHARE_SIGNAL_DELEG_WHEN_RESRC_AVAIL: | 678 | case NFS4_SHARE_SIGNAL_DELEG_WHEN_RESRC_AVAIL: |
679 | case NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED: | 679 | case NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED: |
680 | case (NFS4_SHARE_SIGNAL_DELEG_WHEN_RESRC_AVAIL | | ||
681 | NFS4_SHARE_PUSH_DELEG_WHEN_UNCONTENDED): | ||
680 | return nfs_ok; | 682 | return nfs_ok; |
681 | } | 683 | } |
682 | xdr_error: | 684 | xdr_error: |