diff options
author | J. Bruce Fields <bfields@redhat.com> | 2011-07-30 23:33:59 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2011-09-07 09:45:49 -0400 |
commit | fe0750e5c43189adb6e6fc59837af7d5a588f413 (patch) | |
tree | 88c5afe7a955f1e55e305639a4d6031237542b8d /fs/nfsd/nfs4xdr.c | |
parent | f4dee24cca98739a4190a00fa014cd1b7e2581a4 (diff) | |
download | blackbird-op-linux-fe0750e5c43189adb6e6fc59837af7d5a588f413.tar.gz blackbird-op-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 'fs/nfsd/nfs4xdr.c')
-rw-r--r-- | fs/nfsd/nfs4xdr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c index c4dcba3aac1f..182570bed472 100644 --- a/fs/nfsd/nfs4xdr.c +++ b/fs/nfsd/nfs4xdr.c @@ -646,7 +646,7 @@ nfsd4_decode_open(struct nfsd4_compoundargs *argp, struct nfsd4_open *open) memset(open->op_bmval, 0, sizeof(open->op_bmval)); open->op_iattr.ia_valid = 0; - open->op_stateowner = NULL; + open->op_openowner = NULL; /* seqid, share_access, share_deny, clientid, ownerlen */ READ_BUF(16 + sizeof(clientid_t)); |