aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorJeff Layton <jlayton@redhat.com>2012-10-10 15:25:20 -0400
committerAl Viro <viro@zeniv.linux.org.uk>2012-10-12 00:31:59 -0400
commitf78570dd6ad9563fffd24cc5e1808e1a1242f16e (patch)
treef7f7101c35a019e860233cbb0db2d2ef40bc23e0 /fs
parent79360ddd73dfe9a26f49ef4e27b8c26612929b0e (diff)
audit: remove unnecessary NULL ptr checks from do_path_lookup
As best I can tell, whenever retval == 0, nd->path.dentry and nd->inode are also non-NULL. Eliminate those checks and the superfluous audit_context check. Signed-off-by: Eric Paris <eparis@redhat.com> Signed-off-by: Jeff Layton <jlayton@redhat.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs')
-rw-r--r--fs/namei.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/fs/namei.c b/fs/namei.c
index c1f18e4f034c..f04ce1142297 100644
--- a/fs/namei.c
+++ b/fs/namei.c
@@ -1972,12 +1972,8 @@ static int do_path_lookup(int dfd, const char *name,
1972 if (unlikely(retval == -ESTALE)) 1972 if (unlikely(retval == -ESTALE))
1973 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd); 1973 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
1974 1974
1975 if (likely(!retval)) { 1975 if (likely(!retval))
1976 if (unlikely(!audit_dummy_context())) { 1976 audit_inode(name, nd->path.dentry);
1977 if (nd->path.dentry && nd->inode)
1978 audit_inode(name, nd->path.dentry);
1979 }
1980 }
1981 return retval; 1977 return retval;
1982} 1978}
1983 1979