diff options
author | Trond Myklebust | 2007-08-10 23:44:32 +0200 |
---|---|---|
committer | Trond Myklebust | 2007-10-09 23:18:31 +0200 |
commit | cd3758e37ddea66fccca7d93c4b601e8a2e51926 (patch) | |
tree | 07566d3ee457524a97b534a4f214b9178b1278c8 /fs/nfs/nfs4state.c | |
parent | NFS: Add a helper to extract the nfs_open_context from a struct file (diff) | |
download | kernel-qcow2-linux-cd3758e37ddea66fccca7d93c4b601e8a2e51926.tar.gz kernel-qcow2-linux-cd3758e37ddea66fccca7d93c4b601e8a2e51926.tar.xz kernel-qcow2-linux-cd3758e37ddea66fccca7d93c4b601e8a2e51926.zip |
NFS: Replace file->private_data with calls to nfs_file_open_context()
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/nfs4state.c')
-rw-r--r-- | fs/nfs/nfs4state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/nfs4state.c b/fs/nfs/nfs4state.c index 3e4adf8c8312..bfb36261cecb 100644 --- a/fs/nfs/nfs4state.c +++ b/fs/nfs/nfs4state.c @@ -774,7 +774,7 @@ static int nfs4_reclaim_locks(struct nfs4_state_recovery_ops *ops, struct nfs4_s for (fl = inode->i_flock; fl != 0; fl = fl->fl_next) { if (!(fl->fl_flags & (FL_POSIX|FL_FLOCK))) continue; - if (((struct nfs_open_context *)fl->fl_file->private_data)->state != state) + if (nfs_file_open_context(fl->fl_file)->state != state) continue; status = ops->recover_lock(state, fl); if (status >= 0) |