projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
61ce7b3
)
Fix extraneous '&' in recent NFS client cleanup
author
Linus Torvalds
<torvalds@g5.osdl.org>
Mon, 9 Oct 2006 00:28:25 +0000
(17:28 -0700)
committer
Linus Torvalds
<torvalds@g5.osdl.org>
Mon, 9 Oct 2006 00:28:25 +0000
(17:28 -0700)
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>
fs/nfs/client.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/nfs/client.c
b/fs/nfs/client.c
index 013cdbc3b000f152aba6479317cd66e9d35865d5..34c3996bd0f582438164602a64a6dbd5254e1247 100644
(file)
--- 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);