mirror of https://gitee.com/openkylin/linux.git
switch do_fsync() to fget_light()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
442a9ffabb
commit
c2bd6c11cd
|
@ -188,11 +188,12 @@ static int do_fsync(unsigned int fd, int datasync)
|
|||
{
|
||||
struct file *file;
|
||||
int ret = -EBADF;
|
||||
int fput_needed;
|
||||
|
||||
file = fget(fd);
|
||||
file = fget_light(fd, &fput_needed);
|
||||
if (file) {
|
||||
ret = vfs_fsync(file, datasync);
|
||||
fput(file);
|
||||
fput_light(file, fput_needed);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue