summary refs log tree commit diff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@g5.osdl.org>2006-10-08 17:28:25 -0700
committerLinus Torvalds <torvalds@g5.osdl.org>2006-10-08 17:28:25 -0700
commit832504933757ba7913bf64cd574326e014215b41 (patch)
tree8ee42f0cd79d605ea13f6d81a1ab38cb3473a6f4
parent61ce7b3ab55e6dd3a9811d0cf4f2dc5a3a5d892a (diff)
downloadlinux-832504933757ba7913bf64cd574326e014215b41.tar.gz
Fix extraneous '&' in recent NFS client cleanup
We should pass "wait_event_interruptible()" the wait-queue itself, not
the pointer to it. The magic macro will pointerize it internally.

Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r--fs/nfs/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/client.c b/fs/nfs/client.c
index 013cdbc3b000..34c3996bd0f5 100644
--- a/fs/nfs/client.c
+++ b/fs/nfs/client.c
@@ -322,7 +322,7 @@ found_client:
 	if (new)
 		nfs_free_client(new);
 
-	error = wait_event_interruptible(&nfs_client_active_wq,
+	error = wait_event_interruptible(nfs_client_active_wq,
 				clp->cl_cons_state != NFS_CS_INITING);
 	if (error < 0) {
 		nfs_put_client(clp);