Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 274976
b: refs/heads/master
c: a88b470
h: refs/heads/master
v: v3
  • Loading branch information
Pavel Shilovsky authored and Steve French committed Nov 4, 2011
1 parent 4094a32 commit 5c782c7
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 25 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 161ebf9fcca967e7396bb076af5ed18539497a3f
refs/heads/master: a88b470773bc5b640292d8be7b8e7e1011a86639
43 changes: 19 additions & 24 deletions trunk/fs/cifs/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -645,20 +645,20 @@ int cifs_closedir(struct inode *inode, struct file *file)
}

static struct cifsLockInfo *
cifs_lock_init(__u64 len, __u64 offset, __u8 type, __u16 netfid)
cifs_lock_init(__u64 offset, __u64 length, __u8 type, __u16 netfid)
{
struct cifsLockInfo *li =
struct cifsLockInfo *lock =
kmalloc(sizeof(struct cifsLockInfo), GFP_KERNEL);
if (!li)
return li;
li->netfid = netfid;
li->offset = offset;
li->length = len;
li->type = type;
li->pid = current->tgid;
INIT_LIST_HEAD(&li->blist);
init_waitqueue_head(&li->block_q);
return li;
if (!lock)
return lock;
lock->offset = offset;
lock->length = length;
lock->type = type;
lock->netfid = netfid;
lock->pid = current->tgid;
INIT_LIST_HEAD(&lock->blist);
init_waitqueue_head(&lock->block_q);
return lock;
}

static void
Expand Down Expand Up @@ -770,10 +770,8 @@ cifs_lock_add_if(struct cifsInodeInfo *cinode, struct cifsLockInfo *lock,
(lock->blist.next == &lock->blist));
if (!rc)
goto try_again;
else {
mutex_lock(&cinode->lock_mutex);
list_del_init(&lock->blist);
}
mutex_lock(&cinode->lock_mutex);
list_del_init(&lock->blist);
}

mutex_unlock(&cinode->lock_mutex);
Expand Down Expand Up @@ -927,7 +925,7 @@ cifs_push_posix_locks(struct cifsFileInfo *cfile)
else
type = CIFS_WRLCK;

lck = cifs_lock_init(length, flock->fl_start, type,
lck = cifs_lock_init(flock->fl_start, length, type,
cfile->netfid);
if (!lck) {
rc = -ENOMEM;
Expand Down Expand Up @@ -1064,14 +1062,12 @@ cifs_getlk(struct file *file, struct file_lock *flock, __u8 type,
if (rc != 0)
cERROR(1, "Error unlocking previously locked "
"range %d during test of lock", rc);
rc = 0;
return rc;
return 0;
}

if (type & LOCKING_ANDX_SHARED_LOCK) {
flock->fl_type = F_WRLCK;
rc = 0;
return rc;
return 0;
}

rc = CIFSSMBLock(xid, tcon, netfid, current->tgid, length,
Expand All @@ -1089,8 +1085,7 @@ cifs_getlk(struct file *file, struct file_lock *flock, __u8 type,
} else
flock->fl_type = F_WRLCK;

rc = 0;
return rc;
return 0;
}

static void
Expand Down Expand Up @@ -1250,7 +1245,7 @@ cifs_setlk(struct file *file, struct file_lock *flock, __u8 type,
if (lock) {
struct cifsLockInfo *lock;

lock = cifs_lock_init(length, flock->fl_start, type, netfid);
lock = cifs_lock_init(flock->fl_start, length, type, netfid);
if (!lock)
return -ENOMEM;

Expand Down

0 comments on commit 5c782c7

Please sign in to comment.