mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 04:00:52 +07:00
locks: flock_make_lock should return a struct file_lock (or PTR_ERR)
Eliminate the need for a return pointer. Signed-off-by: Jeff Layton <jlayton@primarydata.com> Reviewed-by: Christoph Hellwig <hch@lst.de>
This commit is contained in:
parent
7ca76311fe
commit
6e129d0068
19
fs/locks.c
19
fs/locks.c
@ -326,17 +326,18 @@ static inline int flock_translate_cmd(int cmd) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Fill in a file_lock structure with an appropriate FLOCK lock. */
|
/* Fill in a file_lock structure with an appropriate FLOCK lock. */
|
||||||
static int flock_make_lock(struct file *filp, struct file_lock **lock,
|
static struct file_lock *
|
||||||
unsigned int cmd)
|
flock_make_lock(struct file *filp, unsigned int cmd)
|
||||||
{
|
{
|
||||||
struct file_lock *fl;
|
struct file_lock *fl;
|
||||||
int type = flock_translate_cmd(cmd);
|
int type = flock_translate_cmd(cmd);
|
||||||
|
|
||||||
if (type < 0)
|
if (type < 0)
|
||||||
return type;
|
return ERR_PTR(type);
|
||||||
|
|
||||||
fl = locks_alloc_lock();
|
fl = locks_alloc_lock();
|
||||||
if (fl == NULL)
|
if (fl == NULL)
|
||||||
return -ENOMEM;
|
return ERR_PTR(-ENOMEM);
|
||||||
|
|
||||||
fl->fl_file = filp;
|
fl->fl_file = filp;
|
||||||
fl->fl_owner = filp;
|
fl->fl_owner = filp;
|
||||||
@ -345,8 +346,7 @@ static int flock_make_lock(struct file *filp, struct file_lock **lock,
|
|||||||
fl->fl_type = type;
|
fl->fl_type = type;
|
||||||
fl->fl_end = OFFSET_MAX;
|
fl->fl_end = OFFSET_MAX;
|
||||||
|
|
||||||
*lock = fl;
|
return fl;
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int assign_type(struct file_lock *fl, long type)
|
static int assign_type(struct file_lock *fl, long type)
|
||||||
@ -1885,9 +1885,12 @@ SYSCALL_DEFINE2(flock, unsigned int, fd, unsigned int, cmd)
|
|||||||
!(f.file->f_mode & (FMODE_READ|FMODE_WRITE)))
|
!(f.file->f_mode & (FMODE_READ|FMODE_WRITE)))
|
||||||
goto out_putf;
|
goto out_putf;
|
||||||
|
|
||||||
error = flock_make_lock(f.file, &lock, cmd);
|
lock = flock_make_lock(f.file, cmd);
|
||||||
if (error)
|
if (IS_ERR(lock)) {
|
||||||
|
error = PTR_ERR(lock);
|
||||||
goto out_putf;
|
goto out_putf;
|
||||||
|
}
|
||||||
|
|
||||||
if (can_sleep)
|
if (can_sleep)
|
||||||
lock->fl_flags |= FL_SLEEP;
|
lock->fl_flags |= FL_SLEEP;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user