diff options
author | David Howells <dhowells@redhat.com> | 2013-06-13 23:37:49 +0100 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-06-29 12:57:13 +0400 |
commit | c77cecee52e9b599da1f8ffd9170d4374c99a345 (patch) | |
tree | 7f3b178cda88ca3e94cf2992b438ccabd7938a62 /fs | |
parent | 656d09df8f73b6f2ae0c7205c6eb79f1642353f8 (diff) | |
download | linux-c77cecee52e9b599da1f8ffd9170d4374c99a345.tar.bz2 |
Replace a bunch of file->dentry->d_inode refs with file_inode()
Replace a bunch of file->dentry->d_inode refs with file_inode().
In __fput(), use file->f_inode instead so as not to be affected by any tricks
that file_inode() might grow.
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/file_table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/file_table.c b/fs/file_table.c index 485dc0eddd67..08e719b884ca 100644 --- a/fs/file_table.c +++ b/fs/file_table.c @@ -227,7 +227,7 @@ static void __fput(struct file *file) { struct dentry *dentry = file->f_path.dentry; struct vfsmount *mnt = file->f_path.mnt; - struct inode *inode = dentry->d_inode; + struct inode *inode = file->f_inode; might_sleep(); |