diff options
author | J. Bruce Fields <bfields@redhat.com> | 2011-07-31 05:33:59 +0200 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2011-09-07 15:45:49 +0200 |
commit | fe0750e5c43189adb6e6fc59837af7d5a588f413 (patch) | |
tree | 88c5afe7a955f1e55e305639a4d6031237542b8d /fs/nfsd/xdr4.h | |
parent | nfsd4: move CLOSE_STATE special case to caller (diff) | |
download | linux-fe0750e5c43189adb6e6fc59837af7d5a588f413.tar.xz linux-fe0750e5c43189adb6e6fc59837af7d5a588f413.zip |
nfsd4: split stateowners into open and lockowners
The stateowner has some fields that only make sense for openowners, and
some that only make sense for lockowners, and I find it a lot clearer if
those are separated out.
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to '')
-rw-r--r-- | fs/nfsd/xdr4.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/xdr4.h b/fs/nfsd/xdr4.h index 27a3dfab96a9..f95a72482064 100644 --- a/fs/nfsd/xdr4.h +++ b/fs/nfsd/xdr4.h @@ -227,7 +227,7 @@ struct nfsd4_open { struct nfsd4_change_info op_cinfo; /* response */ u32 op_rflags; /* response */ int op_truncate; /* used during processing */ - struct nfs4_stateowner *op_stateowner; /* used during processing */ + struct nfs4_openowner *op_openowner; /* used during processing */ struct nfs4_acl *op_acl; }; #define op_iattr iattr |