switch fallocate(2) to fget_light()

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Al Viro 2012-08-26 20:15:40 -04:00
parent bf2965d5b5
commit 6b48c5b207
1 changed files with 3 additions and 3 deletions

View File

@ -277,12 +277,12 @@ int do_fallocate(struct file *file, int mode, loff_t offset, loff_t len)
SYSCALL_DEFINE(fallocate)(int fd, int mode, loff_t offset, loff_t len) SYSCALL_DEFINE(fallocate)(int fd, int mode, loff_t offset, loff_t len)
{ {
struct file *file; struct file *file;
int error = -EBADF; int error = -EBADF, fput_needed;
file = fget(fd); file = fget_light(fd, &fput_needed);
if (file) { if (file) {
error = do_fallocate(file, mode, offset, len); error = do_fallocate(file, mode, offset, len);
fput(file); fput_light(file, fput_needed);
} }
return error; return error;