diff options
author | Kinglong Mee <kinglongmee@gmail.com> | 2013-12-05 10:41:40 +0800 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2014-01-06 12:23:32 -0500 |
commit | 3ff69309fed8ac3755864addfa064b51abfcde06 (patch) | |
tree | c190d3bba80848d86d7f460ff4c01c9a76b0dddb /fs/nfsd | |
parent | ff88825fbb9f5a503164bb5ad4a8c65dabfa13e0 (diff) | |
download | linux-3ff69309fed8ac3755864addfa064b51abfcde06.tar.gz linux-3ff69309fed8ac3755864addfa064b51abfcde06.tar.bz2 linux-3ff69309fed8ac3755864addfa064b51abfcde06.zip |
Define op_iattr for nfsd4_open instead using macro
Signed-off-by: Kinglong Mee <kinglongmee@gmail.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd')
-rw-r--r-- | fs/nfsd/xdr4.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/nfsd/xdr4.h b/fs/nfsd/xdr4.h index 916a40737313..d278a0d03496 100644 --- a/fs/nfsd/xdr4.h +++ b/fs/nfsd/xdr4.h @@ -228,7 +228,7 @@ struct nfsd4_open { u32 op_create; /* request */ u32 op_createmode; /* request */ u32 op_bmval[3]; /* request */ - struct iattr iattr; /* UNCHECKED4, GUARDED4, EXCLUSIVE4_1 */ + struct iattr op_iattr; /* UNCHECKED4, GUARDED4, EXCLUSIVE4_1 */ nfs4_verifier op_verf __attribute__((aligned(32))); /* EXCLUSIVE4 */ clientid_t op_clientid; /* request */ @@ -250,7 +250,6 @@ struct nfsd4_open { struct nfs4_acl *op_acl; struct xdr_netobj op_label; }; -#define op_iattr iattr struct nfsd4_open_confirm { stateid_t oc_req_stateid /* request */; |