diff options
author | Steve French <sfrench@us.ibm.com> | 2006-05-30 14:07:17 -0400 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2006-05-30 14:07:17 -0400 |
commit | cec6815a12edc91b123394f29d672cb9fa6cf79f (patch) | |
tree | 06fb2dd56ff647ece64ea6b43f62b8cfd986c949 /fs | |
parent | a424f8bfcbecb8353b88a351394e8d1960136219 (diff) |
[CIFS] endian fix for new POSIX byte range lock support
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/cifs/cifssmb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/cifssmb.c b/fs/cifs/cifssmb.c index 20d5e748f41e..925881e00ff2 100644 --- a/fs/cifs/cifssmb.c +++ b/fs/cifs/cifssmb.c | |||
@@ -1409,10 +1409,10 @@ CIFSSMBPosixLock(const int xid, struct cifsTconInfo *tcon, | |||
1409 | 1409 | ||
1410 | parm_data->lock_type = cpu_to_le16(lock_type); | 1410 | parm_data->lock_type = cpu_to_le16(lock_type); |
1411 | if(waitFlag) | 1411 | if(waitFlag) |
1412 | parm_data->lock_flags = 1; | 1412 | parm_data->lock_flags = cpu_to_le16(1); |
1413 | parm_data->pid = cpu_to_le32(current->tgid); | 1413 | parm_data->pid = cpu_to_le32(current->tgid); |
1414 | parm_data->start = cpu_to_le64(pLockData->fl_start); | 1414 | parm_data->start = cpu_to_le64(pLockData->fl_start); |
1415 | parm_data->length = len; /* normalize negative numbers */ | 1415 | parm_data->length = cpu_to_le64(len); /* normalize negative numbers */ |
1416 | 1416 | ||
1417 | pSMB->DataOffset = cpu_to_le16(offset); | 1417 | pSMB->DataOffset = cpu_to_le16(offset); |
1418 | pSMB->Fid = smb_file_id; | 1418 | pSMB->Fid = smb_file_id; |