diff options
author | David Howells <dhowells@redhat.com> | 2015-03-17 18:25:59 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2015-04-15 15:06:57 -0400 |
commit | 2b0143b5c986be1ce8408b3aadc4709e0a94429d (patch) | |
tree | 98b1dee70f3d5d9ac9309f4638e41864ddcd0952 /fs/btrfs/super.c | |
parent | ce0b16ddf18df35026164fda4a642ef10c01f442 (diff) |
VFS: normal filesystems (and lustre): d_inode() annotations
that's the bulk of filesystem drivers dealing with inodes of their own
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/btrfs/super.c')
-rw-r--r-- | fs/btrfs/super.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c index 05fef198ff94..68ee619fff45 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c | |||
@@ -916,7 +916,7 @@ setup_root: | |||
916 | * a reference to the dentry. We will have already gotten a reference | 916 | * a reference to the dentry. We will have already gotten a reference |
917 | * to the inode in btrfs_fill_super so we're good to go. | 917 | * to the inode in btrfs_fill_super so we're good to go. |
918 | */ | 918 | */ |
919 | if (!new && sb->s_root->d_inode == inode) { | 919 | if (!new && d_inode(sb->s_root) == inode) { |
920 | iput(inode); | 920 | iput(inode); |
921 | return dget(sb->s_root); | 921 | return dget(sb->s_root); |
922 | } | 922 | } |
@@ -1221,7 +1221,7 @@ static struct dentry *mount_subvol(const char *subvol_name, int flags, | |||
1221 | 1221 | ||
1222 | root = mount_subtree(mnt, subvol_name); | 1222 | root = mount_subtree(mnt, subvol_name); |
1223 | 1223 | ||
1224 | if (!IS_ERR(root) && !is_subvolume_inode(root->d_inode)) { | 1224 | if (!IS_ERR(root) && !is_subvolume_inode(d_inode(root))) { |
1225 | struct super_block *s = root->d_sb; | 1225 | struct super_block *s = root->d_sb; |
1226 | dput(root); | 1226 | dput(root); |
1227 | root = ERR_PTR(-EINVAL); | 1227 | root = ERR_PTR(-EINVAL); |
@@ -1886,8 +1886,8 @@ static int btrfs_statfs(struct dentry *dentry, struct kstatfs *buf) | |||
1886 | buf->f_fsid.val[0] = be32_to_cpu(fsid[0]) ^ be32_to_cpu(fsid[2]); | 1886 | buf->f_fsid.val[0] = be32_to_cpu(fsid[0]) ^ be32_to_cpu(fsid[2]); |
1887 | buf->f_fsid.val[1] = be32_to_cpu(fsid[1]) ^ be32_to_cpu(fsid[3]); | 1887 | buf->f_fsid.val[1] = be32_to_cpu(fsid[1]) ^ be32_to_cpu(fsid[3]); |
1888 | /* Mask in the root object ID too, to disambiguate subvols */ | 1888 | /* Mask in the root object ID too, to disambiguate subvols */ |
1889 | buf->f_fsid.val[0] ^= BTRFS_I(dentry->d_inode)->root->objectid >> 32; | 1889 | buf->f_fsid.val[0] ^= BTRFS_I(d_inode(dentry))->root->objectid >> 32; |
1890 | buf->f_fsid.val[1] ^= BTRFS_I(dentry->d_inode)->root->objectid; | 1890 | buf->f_fsid.val[1] ^= BTRFS_I(d_inode(dentry))->root->objectid; |
1891 | 1891 | ||
1892 | return 0; | 1892 | return 0; |
1893 | } | 1893 | } |