mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 20:51:44 +00:00
[PATCH] NFS: Fix typo in nfs_get_client()
NFS_CS_INITING > NFS_CS_READY, so instead of waiting for the structure to get initialised, we currently immediately jump out of the loop without ever sleeping. Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
f1d08f7197
commit
ca4aa09635
@ -330,7 +330,7 @@ found_client:
|
||||
for (;;) {
|
||||
set_current_state(TASK_INTERRUPTIBLE);
|
||||
if (signal_pending(current) ||
|
||||
clp->cl_cons_state > NFS_CS_READY)
|
||||
clp->cl_cons_state != NFS_CS_INITING)
|
||||
break;
|
||||
schedule();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user