diff options
author | David Howells <dhowells@redhat.com> | 2015-03-17 22:26:15 +0000 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2015-04-15 15:06:59 -0400 |
commit | df2b1afde178f01c6a1b2ec285ca8bcfd4c66640 (patch) | |
tree | 0e2fc2d4479fb53c157cedc302d7c0dbeaea62aa /fs | |
parent | 466b77bc954c23c5741ea7dd02f20212a72acdb2 (diff) | |
download | op-kernel-dev-df2b1afde178f01c6a1b2ec285ca8bcfd4c66640.zip op-kernel-dev-df2b1afde178f01c6a1b2ec285ca8bcfd4c66640.tar.gz |
VFS: fs/inode.c helpers: d_inode() annotations
these should be used on objects already in top layer
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/inode.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1587,7 +1587,7 @@ static int update_time(struct inode *inode, struct timespec *time, int flags) void touch_atime(const struct path *path) { struct vfsmount *mnt = path->mnt; - struct inode *inode = path->dentry->d_inode; + struct inode *inode = d_inode(path->dentry); struct timespec now; if (inode->i_flags & S_NOATIME) @@ -1639,7 +1639,7 @@ EXPORT_SYMBOL(touch_atime); */ int should_remove_suid(struct dentry *dentry) { - umode_t mode = dentry->d_inode->i_mode; + umode_t mode = d_inode(dentry)->i_mode; int kill = 0; /* suid always must be killed */ @@ -1675,7 +1675,7 @@ static int __remove_suid(struct dentry *dentry, int kill) int file_remove_suid(struct file *file) { struct dentry *dentry = file->f_path.dentry; - struct inode *inode = dentry->d_inode; + struct inode *inode = d_inode(dentry); int killsuid; int killpriv; int error = 0; |