diff options
author | Jeff Layton <jlayton@primarydata.com> | 2014-06-30 17:48:41 +0200 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2014-07-10 02:54:59 +0200 |
commit | fd44907c2d8f0647903d0c55520a34e24eeeb1cd (patch) | |
tree | 7cf5a5ddf7ec0df500286e1ac5a8889ca4377f63 /fs/nfsd/state.h | |
parent | nfsd: NFSv4 lock-owners are not associated to a specific file (diff) | |
download | linux-fd44907c2d8f0647903d0c55520a34e24eeeb1cd.tar.xz linux-fd44907c2d8f0647903d0c55520a34e24eeeb1cd.zip |
nfsd: clean up nfsd4_release_lockowner
Now that we know that we won't have several lockowners with the same,
owner->data, we can simplify nfsd4_release_lockowner and get rid of
the lo_list in the process.
Signed-off-by: Jeff Layton <jlayton@primarydata.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/state.h')
-rw-r--r-- | fs/nfsd/state.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/nfsd/state.h b/fs/nfsd/state.h index 23b110939da1..ab937b5f10ab 100644 --- a/fs/nfsd/state.h +++ b/fs/nfsd/state.h @@ -364,7 +364,6 @@ struct nfs4_openowner { struct nfs4_lockowner { struct nfs4_stateowner lo_owner; /* must be first element */ - struct list_head lo_list; /* for temporary uses */ }; static inline struct nfs4_openowner * openowner(struct nfs4_stateowner *so) |