X-Git-Url: https://git.karo-electronics.de/?a=blobdiff_plain;f=fs%2Fstatfs.c;h=95ad5c0e586c9f64fe492e141387b5092956d553;hb=fed425c742cb1262ce90a41f2d3d211bac099533;hp=43e6b6fe4e855684a197c48ed6bb8dee70f95467;hpb=8898159650093e9eee8829e30a9139b4273a0ac4;p=karo-tx-linux.git diff --git a/fs/statfs.c b/fs/statfs.c index 43e6b6fe4e85..95ad5c0e586c 100644 --- a/fs/statfs.c +++ b/fs/statfs.c @@ -87,11 +87,12 @@ int user_statfs(const char __user *pathname, struct kstatfs *st) int fd_statfs(int fd, struct kstatfs *st) { - struct file *file = fget(fd); + int fput_needed; + struct file *file = fget_light(fd, &fput_needed); int error = -EBADF; if (file) { error = vfs_statfs(&file->f_path, st); - fput(file); + fput_light(file, fput_needed); } return error; }