1
0
Fork 0

VFS: make vfs_fstat() use f[get|put]_light()

Use the *_light() versions that properly avoid doing the file user count
updates when they are unnecessary.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
hifive-unleashed-5.1
Linus Torvalds 2012-04-28 14:55:17 -07:00
parent 3f9f0aa687
commit e994defb7b
1 changed files with 3 additions and 2 deletions

View File

@ -57,12 +57,13 @@ EXPORT_SYMBOL(vfs_getattr);
int vfs_fstat(unsigned int fd, struct kstat *stat)
{
struct file *f = fget(fd);
int fput_needed;
struct file *f = fget_light(fd, &fput_needed);
int error = -EBADF;
if (f) {
error = vfs_getattr(f->f_path.mnt, f->f_path.dentry, stat);
fput(f);
fput_light(f, fput_needed);
}
return error;
}