Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f7f7c31c98830e5f4aa5486b8aabb7f3bf4a2512
Commit:     f7f7c31c98830e5f4aa5486b8aabb7f3bf4a2512
Parent:     28356a1679006b110215596e057f304ef3083922
Author:     Steve French <[EMAIL PROTECTED]>
AuthorDate: Thu May 24 02:29:51 2007 +0000
Committer:  Steve French <[EMAIL PROTECTED]>
CommitDate: Thu May 24 02:29:51 2007 +0000

    [CIFS] typo in previous patch
    
    (also fixed missing space after if)
    
    Signed-off-by: Steve French <[EMAIL PROTECTED]>
---
 fs/cifs/connect.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c
index f6963d1..f4e9266 100644
--- a/fs/cifs/connect.c
+++ b/fs/cifs/connect.c
@@ -2077,7 +2077,7 @@ cifs_mount(struct super_block *sb, struct cifs_sb_info 
*cifs_sb,
                                send_sig(SIGKILL,srvTcp->tsk,1);
                                tsk = srvTcp->tsk;
                                if(tsk)
-                                       kthread_stop(srvTcp->tsk);
+                                       kthread_stop(tsk);
                        }
                }
                 /* If find_unc succeeded then rc == 0 so we can not end */
@@ -2095,7 +2095,7 @@ cifs_mount(struct super_block *sb, struct cifs_sb_info 
*cifs_sb,
                                                struct task_struct *tsk;
                                                
send_sig(SIGKILL,pSesInfo->server->tsk,1);
                                                tsk = pSesInfo->server->tsk;
-                                               if(tsk)
+                                               if (tsk)
                                                        kthread_stop(tsk);
                                        }
                                } else
@@ -3344,7 +3344,7 @@ cifs_umount(struct super_block *sb, struct cifs_sb_info 
*cifs_sb)
                                return 0;
                        } else if (rc == -ESHUTDOWN) {
                                cFYI(1,("Waking up socket by sending it 
signal"));
-                               if(cifsd_task) {
+                               if (cifsd_task) {
                                        send_sig(SIGKILL,cifsd_task,1);
                                        kthread_stop(cifsd_task);
                                }
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to