Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 57569
b: refs/heads/master
c: f7f7c31
h: refs/heads/master
i:
  57567: b279548
v: v3
  • Loading branch information
Steve French committed May 24, 2007
1 parent fbc4cf1 commit d23d057
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 28356a1679006b110215596e057f304ef3083922
refs/heads/master: f7f7c31c98830e5f4aa5486b8aabb7f3bf4a2512
6 changes: 3 additions & 3 deletions trunk/fs/cifs/connect.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand All @@ -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
Expand Down Expand Up @@ -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);
}
Expand Down

0 comments on commit d23d057

Please sign in to comment.