diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-08 17:28:25 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-08 17:28:25 -0700 |
commit | 832504933757ba7913bf64cd574326e014215b41 (patch) | |
tree | 8ee42f0cd79d605ea13f6d81a1ab38cb3473a6f4 | |
parent | 61ce7b3ab55e6dd3a9811d0cf4f2dc5a3a5d892a (diff) | |
download | linux-3.10-832504933757ba7913bf64cd574326e014215b41.tar.gz linux-3.10-832504933757ba7913bf64cd574326e014215b41.tar.bz2 linux-3.10-832504933757ba7913bf64cd574326e014215b41.zip |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/client.c b/fs/nfs/client.c index 013cdbc3b00..34c3996bd0f 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); |