diff options
| author | Steve French <sfrench@us.ibm.com> | 2006-06-20 16:36:38 -0400 |
|---|---|---|
| committer | Steve French <sfrench@us.ibm.com> | 2006-06-20 16:36:38 -0400 |
| commit | 75ba632a01d4dc70d0a0f3a92b5ec9b4a3644b2d (patch) | |
| tree | c2f02ee30609d0d69308b4ca80d68d02a5f85552 /fs/locks.c | |
| parent | 0fd1ffe0633b4b039b343b753598e6df435e034d (diff) | |
| parent | 25f42b6af09e34c3f92107b36b5aa6edc2fdba2f (diff) | |
Merge with /pub/scm/linux/kernel/git/torvalds/linux-2.6.git
Diffstat (limited to 'fs/locks.c')
| -rw-r--r-- | fs/locks.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/locks.c b/fs/locks.c index 6f99c0a6f836..ab61a8b54829 100644 --- a/fs/locks.c +++ b/fs/locks.c | |||
| @@ -755,6 +755,7 @@ static int flock_lock_file(struct file *filp, struct file_lock *request) | |||
| 755 | if (request->fl_type == F_UNLCK) | 755 | if (request->fl_type == F_UNLCK) |
| 756 | goto out; | 756 | goto out; |
| 757 | 757 | ||
| 758 | error = -ENOMEM; | ||
| 758 | new_fl = locks_alloc_lock(); | 759 | new_fl = locks_alloc_lock(); |
| 759 | if (new_fl == NULL) | 760 | if (new_fl == NULL) |
| 760 | goto out; | 761 | goto out; |
| @@ -781,6 +782,7 @@ static int flock_lock_file(struct file *filp, struct file_lock *request) | |||
| 781 | locks_copy_lock(new_fl, request); | 782 | locks_copy_lock(new_fl, request); |
| 782 | locks_insert_lock(&inode->i_flock, new_fl); | 783 | locks_insert_lock(&inode->i_flock, new_fl); |
| 783 | new_fl = NULL; | 784 | new_fl = NULL; |
| 785 | error = 0; | ||
| 784 | 786 | ||
| 785 | out: | 787 | out: |
| 786 | unlock_kernel(); | 788 | unlock_kernel(); |
