diff options
author | David Howells <dhowells@redhat.com> | 2015-03-17 18:26:21 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2015-04-15 15:06:56 -0400 |
commit | a25b376bded1ba7fd1d455e140d723b7de2e343c (patch) | |
tree | 819f50a97d38ef190458a98be08f786e39e6984e /net/unix/diag.c | |
parent | 7682c918439d42291df0d76b3e06627f27fbcdef (diff) |
VFS: net/unix: d_backing_inode() annotations
places where we are dealing with S_ISSOCK file creation/lookups.
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'net/unix/diag.c')
-rw-r--r-- | net/unix/diag.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/unix/diag.c b/net/unix/diag.c index ef542fbca9fe..c512f64d5287 100644 --- a/net/unix/diag.c +++ b/net/unix/diag.c | |||
@@ -25,7 +25,7 @@ static int sk_diag_dump_vfs(struct sock *sk, struct sk_buff *nlskb) | |||
25 | 25 | ||
26 | if (dentry) { | 26 | if (dentry) { |
27 | struct unix_diag_vfs uv = { | 27 | struct unix_diag_vfs uv = { |
28 | .udiag_vfs_ino = dentry->d_inode->i_ino, | 28 | .udiag_vfs_ino = d_backing_inode(dentry)->i_ino, |
29 | .udiag_vfs_dev = dentry->d_sb->s_dev, | 29 | .udiag_vfs_dev = dentry->d_sb->s_dev, |
30 | }; | 30 | }; |
31 | 31 | ||