diff options
author | Jeff Layton <jlayton@redhat.com> | 2008-10-12 13:34:11 +0000 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2008-10-12 13:34:11 +0000 |
commit | 14835a3325c1f84c3ae6eaf81102a3917e84809e (patch) | |
tree | 1ea764174a676ef68af15fb6fed4b71874eea845 /fs/cifs | |
parent | fd048088306656824958e7783ffcee27e241b361 (diff) | |
download | linux-3.10-14835a3325c1f84c3ae6eaf81102a3917e84809e.tar.gz linux-3.10-14835a3325c1f84c3ae6eaf81102a3917e84809e.tar.bz2 linux-3.10-14835a3325c1f84c3ae6eaf81102a3917e84809e.zip |
[CIFS] cifs: remove pointless lock and unlock of GlobalMid_Lock in header_assemble
We lock GlobalMid_Lock in header_assemble and then immediately unlock it
again without doing anything. Not sure what this was intended to do, but
remove it.
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs')
-rw-r--r-- | fs/cifs/misc.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/cifs/misc.c b/fs/cifs/misc.c index 654d972a88f..88786ba02d2 100644 --- a/fs/cifs/misc.c +++ b/fs/cifs/misc.c @@ -311,8 +311,6 @@ header_assemble(struct smb_hdr *buffer, char smb_command /* command */ , buffer->Flags2 = SMBFLG2_KNOWS_LONG_NAMES; buffer->Pid = cpu_to_le16((__u16)current->tgid); buffer->PidHigh = cpu_to_le16((__u16)(current->tgid >> 16)); - spin_lock(&GlobalMid_Lock); - spin_unlock(&GlobalMid_Lock); if (treeCon) { buffer->Tid = treeCon->tid; if (treeCon->ses) { |