Displaying 2 results from an estimated 2 matches for "cifs_umount".
Did you mean:
cifs_mount
2005 Mar 08
0
Re: [linux-cifs-client] Mounting directories below share level
...IED
Mar 8 13:26:46 ma kernel: fs/cifs/netmisc.c: !!Mapping smb error code 5 to POSIX err -13 !!
Mar 8 13:26:46 ma kernel: fs/cifs/cifssmb.c: Send error in QPathInfo = -13
Mar 8 13:26:46 ma kernel: fs/cifs/cifsfs.c: In cifs_put_super
Mar 8 13:26:46 ma kernel: fs/cifs/connect.c: CIFS VFS: in cifs_umount as Xid: 64 with uid: 0
Mar 8 13:26:46 ma kernel: fs/cifs/cifssmb.c: In tree disconnect
Mar 8 13:26:46 ma kernel: fs/cifs/transport.c: For smb_command 113
Mar 8 13:26:46 ma kernel: fs/cifs/transport.c: Sending smb of length 35
Mar 8 13:26:46 ma kernel: fs/cifs/connect.c: Peek length rcvd: 0...
2005 Aug 15
3
[-mm PATCH 2/32] fs: fix-up schedule_timeout() usage
..._Q.next,
struct oplock_q_entry, qhead);
diff -urpN 2.6.13-rc5-mm1/fs/cifs/connect.c 2.6.13-rc5-mm1-dev/fs/cifs/connect.c
--- 2.6.13-rc5-mm1/fs/cifs/connect.c 2005-08-07 10:05:22.000000000 -0700
+++ 2.6.13-rc5-mm1-dev/fs/cifs/connect.c 2005-08-12 13:42:49.000000000 -0700
@@ -3215,10 +3215,8 @@ cifs_umount(struct super_block *sb, stru
}
cifs_sb->tcon = NULL;
- if (ses) {
- set_current_state(TASK_INTERRUPTIBLE);
- schedule_timeout(HZ / 2);
- }
+ if (ses)
+ schedule_timeout_interruptible(msecs_to_jiffies(500));
if (ses)
sesInfoFree(ses);
diff -urpN 2.6.13-rc5-mm1/fs/jbd/transaction....