diff options
author | Benny Halevy <benny@tonian.com> | 2012-02-16 13:57:09 -0500 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2012-02-17 18:38:42 -0500 |
commit | 2c8bd7e0d1b66b2f8f267fd6ab62a30569c792c0 (patch) | |
tree | 54f90f3eb8c7cebfefea8b11957b2514078fe13d /fs/nfsd/xdr4.h | |
parent | 00b5f95a26f2f95b86e59cf86346b06ba14943ee (diff) |
nfsd41: split out share_access want and signal flags while decoding
Signed-off-by: Benny Halevy <bhalevy@tonian.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/xdr4.h')
-rw-r--r-- | fs/nfsd/xdr4.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/nfsd/xdr4.h b/fs/nfsd/xdr4.h index 12789eb3f911..4949832fd74a 100644 --- a/fs/nfsd/xdr4.h +++ b/fs/nfsd/xdr4.h | |||
@@ -233,6 +233,7 @@ struct nfsd4_open { | |||
233 | u32 op_seqid; /* request */ | 233 | u32 op_seqid; /* request */ |
234 | u32 op_share_access; /* request */ | 234 | u32 op_share_access; /* request */ |
235 | u32 op_share_deny; /* request */ | 235 | u32 op_share_deny; /* request */ |
236 | u32 op_deleg_want; /* request */ | ||
236 | stateid_t op_stateid; /* response */ | 237 | stateid_t op_stateid; /* response */ |
237 | u32 op_recall; /* recall */ | 238 | u32 op_recall; /* recall */ |
238 | struct nfsd4_change_info op_cinfo; /* response */ | 239 | struct nfsd4_change_info op_cinfo; /* response */ |
@@ -256,8 +257,9 @@ struct nfsd4_open_confirm { | |||
256 | struct nfsd4_open_downgrade { | 257 | struct nfsd4_open_downgrade { |
257 | stateid_t od_stateid; | 258 | stateid_t od_stateid; |
258 | u32 od_seqid; | 259 | u32 od_seqid; |
259 | u32 od_share_access; | 260 | u32 od_share_access; /* request */ |
260 | u32 od_share_deny; | 261 | u32 od_deleg_want; /* request */ |
262 | u32 od_share_deny; /* request */ | ||
261 | }; | 263 | }; |
262 | 264 | ||
263 | 265 | ||