[PATCH] NFS: Fix typo in nfs_get_client()
authorTrond Myklebust <Trond.Myklebust@netapp.com>
Sun, 8 Oct 2006 18:33:24 +0000 (14:33 -0400)
committerLinus Torvalds <torvalds@g5.osdl.org>
Sun, 8 Oct 2006 19:07:03 +0000 (12:07 -0700)
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>
fs/nfs/client.c

index 6e4e48c5092afec39d716309ccccd5900105d4e3..d2533e214255b4a7287138ab09ca38beaf133b54 100644 (file)
@@ -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();
                }
This page took 0.026885 seconds and 5 git commands to generate.