projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b9bce2e
)
cifs: drop spinlock before calling cifs_put_tlink
author
Jeff Layton
<jlayton@redhat.com>
Mon, 11 Jul 2011 14:16:34 +0000
(10:16 -0400)
committer
Steve French
<sfrench@us.ibm.com>
Mon, 11 Jul 2011 18:40:52 +0000
(18:40 +0000)
...as that function can sleep.
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
fs/cifs/connect.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/cifs/connect.c
b/fs/cifs/connect.c
index 6ec366ff28b3fb8931587c1c85d72e4b1444e7ff..dbd669cc5bc7623ea93fafcff8d0448d55a92653 100644
(file)
--- a/
fs/cifs/connect.c
+++ b/
fs/cifs/connect.c
@@
-2242,8
+2242,8
@@
cifs_match_super(struct super_block *sb, void *data)
rc = compare_mount_options(sb, mnt_data);
out:
- cifs_put_tlink(tlink);
spin_unlock(&cifs_tcp_ses_lock);
+ cifs_put_tlink(tlink);
return rc;
}