Преглед изворни кода

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>
Linus Torvalds пре 19 година
родитељ
комит
8325049337
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      fs/nfs/client.c

+ 1 - 1
fs/nfs/client.c

@@ -322,7 +322,7 @@ static struct nfs_client *nfs_get_client(const char *hostname,
 	if (new)
 	if (new)
 		nfs_free_client(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);
 				clp->cl_cons_state != NFS_CS_INITING);
 	if (error < 0) {
 	if (error < 0) {
 		nfs_put_client(clp);
 		nfs_put_client(clp);