From: Al Viro Date: Mon, 27 Aug 2012 00:13:36 +0000 (-0400) Subject: switch ftruncate(2) to fget_light X-Git-Tag: next-20120924~98^2~31 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d9d88e79b39bacbf07183897faea4ee844d01863;p=karo-tx-linux.git switch ftruncate(2) to fget_light Signed-off-by: Al Viro --- diff --git a/fs/open.c b/fs/open.c index 03028d0e7487..9f61d7269d39 100644 --- a/fs/open.c +++ b/fs/open.c @@ -132,16 +132,16 @@ SYSCALL_DEFINE2(truncate, const char __user *, path, long, length) static long do_sys_ftruncate(unsigned int fd, loff_t length, int small) { - struct inode * inode; + struct inode *inode; struct dentry *dentry; - struct file * file; - int error; + struct file *file; + int error, fput_needed; error = -EINVAL; if (length < 0) goto out; error = -EBADF; - file = fget(fd); + file = fget_light(fd, &fput_needed); if (!file) goto out; @@ -172,7 +172,7 @@ static long do_sys_ftruncate(unsigned int fd, loff_t length, int small) error = do_truncate(dentry, length, ATTR_MTIME|ATTR_CTIME, file); sb_end_write(inode->i_sb); out_putf: - fput(file); + fput_light(file, fput_needed); out: return error; }