diff options
author | Jeff Layton <jlayton@primarydata.com> | 2014-06-30 11:48:41 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2014-07-09 20:54:59 -0400 |
commit | fd44907c2d8f0647903d0c55520a34e24eeeb1cd (patch) | |
tree | 7cf5a5ddf7ec0df500286e1ac5a8889ca4377f63 /fs/nfsd/state.h | |
parent | b3c32bcd9c4b8320aea504477573f0c460d2d57d (diff) | |
download | linux-stable-fd44907c2d8f0647903d0c55520a34e24eeeb1cd.tar.gz linux-stable-fd44907c2d8f0647903d0c55520a34e24eeeb1cd.tar.bz2 linux-stable-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) |