aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/inode.c
diff options
context:
space:
mode:
authorTrond Myklebust <Trond.Myklebust@netapp.com>2005-06-22 13:16:21 -0400
committerTrond Myklebust <Trond.Myklebust@netapp.com>2005-06-22 16:07:08 -0400
commit464a98bd70bae8c559cfc82af799faf44824ce64 (patch)
tree06013db965c1450bfa800bd9c7e8eca35d320f77 /fs/nfs/inode.c
parent96651ab341cde0fee940ec837f323d711cbfa7d5 (diff)
[PATCH] NFS: cleanup: shrink struct nfs_open_context
Remove the wait queue, and replace the functions that depended on it with wait_on_bit(). Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/inode.c')
-rw-r--r--fs/nfs/inode.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c
index c80a81ff59c6..a38d4b22d1f8 100644
--- a/fs/nfs/inode.c
+++ b/fs/nfs/inode.c
@@ -848,7 +848,6 @@ struct nfs_open_context *alloc_nfs_open_context(struct dentry *dentry, struct rp
848 ctx->state = NULL; 848 ctx->state = NULL;
849 ctx->lockowner = current->files; 849 ctx->lockowner = current->files;
850 ctx->error = 0; 850 ctx->error = 0;
851 init_waitqueue_head(&ctx->waitq);
852 } 851 }
853 return ctx; 852 return ctx;
854} 853}