diff options
author | Steve French <smfrench@austin.rr.com> | 2005-04-29 01:41:11 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-29 01:41:11 -0400 |
commit | 0cb766ae629c70d53040f85de73db0583eadb233 (patch) | |
tree | b763f4acf57f69b51d00a3a62ad30cb91b02baba /fs/cifs/connect.c | |
parent | 31ca3bc3c569f9fe02aae6974ac3a9126f14902f (diff) |
[PATCH] cifs: Do not sleep interruptible after socket connect failure
.. since it can be due to pending kill.
Update readme information to better describe cifs umount
Signed-off-by: Steve French (sfrench@us.ibm.com)
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/cifs/connect.c')
-rw-r--r-- | fs/cifs/connect.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index ac1f970e5369..e568cc47a7f9 100644 --- a/fs/cifs/connect.c +++ b/fs/cifs/connect.c | |||
@@ -178,8 +178,7 @@ cifs_reconnect(struct TCP_Server_Info *server) | |||
178 | server->workstation_RFC1001_name); | 178 | server->workstation_RFC1001_name); |
179 | } | 179 | } |
180 | if(rc) { | 180 | if(rc) { |
181 | set_current_state(TASK_INTERRUPTIBLE); | 181 | msleep(3000); |
182 | schedule_timeout(3 * HZ); | ||
183 | } else { | 182 | } else { |
184 | atomic_inc(&tcpSesReconnectCount); | 183 | atomic_inc(&tcpSesReconnectCount); |
185 | spin_lock(&GlobalMid_Lock); | 184 | spin_lock(&GlobalMid_Lock); |