diff options
author | David Howells <dhowells@redhat.com> | 2015-02-19 13:47:02 +0300 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2015-04-15 22:06:57 +0300 |
commit | ce0b16ddf18df35026164fda4a642ef10c01f442 (patch) | |
tree | f1253eacda202bd3dfae647cc5d646af02d4d10a /security/smack | |
parent | c6f493d631c4d40cea5c36055f9148f547b200af (diff) | |
download | linux-ce0b16ddf18df35026164fda4a642ef10c01f442.tar.xz |
VFS: security/: d_inode() annotations
... except where that code acts as a filesystem driver, rather than
working with dentries given to it.
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'security/smack')
-rw-r--r-- | security/smack/smackfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/smack/smackfs.c b/security/smack/smackfs.c index bce4e8f1b267..2611a651c344 100644 --- a/security/smack/smackfs.c +++ b/security/smack/smackfs.c @@ -2395,7 +2395,7 @@ static int smk_fill_super(struct super_block *sb, void *data, int silent) return rc; } - root_inode = sb->s_root->d_inode; + root_inode = d_inode(sb->s_root); return 0; } |