diff options
author | Jeff Layton <jlayton@redhat.com> | 2011-07-11 10:16:34 -0400 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2011-07-11 14:40:52 -0400 |
commit | f484b5d001a972a42129570e98086a2a6d216ce0 (patch) | |
tree | 1345cdda657b020acc0ca5da7645119d6740cbb3 | |
parent | b9bce2e9f9936cfd12fbc62ead11edcdd46dec7e (diff) |
cifs: drop spinlock before calling cifs_put_tlink
...as that function can sleep.
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
-rw-r--r-- | fs/cifs/connect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index 6ec366ff28b3..dbd669cc5bc7 100644 --- a/fs/cifs/connect.c +++ b/fs/cifs/connect.c | |||
@@ -2242,8 +2242,8 @@ cifs_match_super(struct super_block *sb, void *data) | |||
2242 | 2242 | ||
2243 | rc = compare_mount_options(sb, mnt_data); | 2243 | rc = compare_mount_options(sb, mnt_data); |
2244 | out: | 2244 | out: |
2245 | cifs_put_tlink(tlink); | ||
2246 | spin_unlock(&cifs_tcp_ses_lock); | 2245 | spin_unlock(&cifs_tcp_ses_lock); |
2246 | cifs_put_tlink(tlink); | ||
2247 | return rc; | 2247 | return rc; |
2248 | } | 2248 | } |
2249 | 2249 | ||