summaryrefslogtreecommitdiffstats
path: root/fs/cifs/cifssmb.c
diff options
context:
space:
mode:
authorSteve French2006-03-01 10:17:37 +0100
committerSteve French2006-03-01 10:17:37 +0100
commitf26282c9af43c1aff3f448af61429625174ddf06 (patch)
tree9ed1de3d97064c73d0ec6d8806a168c113588a35 /fs/cifs/cifssmb.c
parent[CIFS] Add posix (advisory) byte range locking support to cifs client (diff)
downloadkernel-qcow2-linux-f26282c9af43c1aff3f448af61429625174ddf06.tar.gz
kernel-qcow2-linux-f26282c9af43c1aff3f448af61429625174ddf06.tar.xz
kernel-qcow2-linux-f26282c9af43c1aff3f448af61429625174ddf06.zip
[CIFS] Use correct pid on new cifs posix byte range lock call
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/cifssmb.c')
-rw-r--r--fs/cifs/cifssmb.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/cifs/cifssmb.c b/fs/cifs/cifssmb.c
index fea32e395cc6..3e89fbbd160f 100644
--- a/fs/cifs/cifssmb.c
+++ b/fs/cifs/cifssmb.c
@@ -1410,6 +1410,7 @@ CIFSSMBPosixLock(const int xid, struct cifsTconInfo *tcon,
parm_data->length = len; /* normalize negative numbers */
pSMB->DataOffset = cpu_to_le16(offset);
+ pSMB->Fid = smb_file_id;
pSMB->InformationLevel = cpu_to_le16(SMB_SET_POSIX_LOCK);
pSMB->Reserved4 = 0;
pSMB->hdr.smb_buf_length += byte_count;
@@ -3946,6 +3947,7 @@ CIFSSMBSetFSUnixInfo(const int xid, struct cifsTconInfo *tcon, __u64 cap)
cFYI(1, ("In SETFSUnixInfo"));
SETFSUnixRetry:
+ /* BB switch to small buf init to save memory */
rc = smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB,
(void **) &pSMBr);
if (rc)