diff options
author | Steve French <sfrench@us.ibm.com> | 2007-08-24 05:22:48 +0200 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2007-08-24 05:22:48 +0200 |
commit | c19eb71020687e178b9fa564f4a8ac1880f87b10 (patch) | |
tree | 8d629e4ece7dda57719e037ea1e79b6d5e3b626b /fs/cifs/file.c | |
parent | [CIFS] Byte range unlock request to non-Unix server can unlock too much (diff) | |
download | linux-c19eb71020687e178b9fa564f4a8ac1880f87b10.tar.xz linux-c19eb71020687e178b9fa564f4a8ac1880f87b10.zip |
[CIFS] fix typo in previous
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to '')
-rw-r--r-- | fs/cifs/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/file.c b/fs/cifs/file.c index f9bd8b83f40e..26fa50858aac 100644 --- a/fs/cifs/file.c +++ b/fs/cifs/file.c @@ -767,7 +767,7 @@ int cifs_lock(struct file *file, int cmd, struct file_lock *pfLock) mutex_lock(&fid->lock_mutex); list_for_each_entry_safe(li, tmp, &fid->llist, llist) { if (pfLock->fl_start <= li->offset && - (pflock->fl_start + length) >= + (pfLock->fl_start + length) >= (li->offset + li->length)) { stored_rc = CIFSSMBLock(xid, pTcon, netfid, |