switch do_fsync() to fget_light()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
@@ -188,11 +188,12 @@ static int do_fsync(unsigned int fd, int datasync)
|
|||||||
{
|
{
|
||||||
struct file *file;
|
struct file *file;
|
||||||
int ret = -EBADF;
|
int ret = -EBADF;
|
||||||
|
int fput_needed;
|
||||||
|
|
||||||
file = fget(fd);
|
file = fget_light(fd, &fput_needed);
|
||||||
if (file) {
|
if (file) {
|
||||||
ret = vfs_fsync(file, datasync);
|
ret = vfs_fsync(file, datasync);
|
||||||
fput(file);
|
fput_light(file, fput_needed);
|
||||||
}
|
}
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user