proc_fill_cache(): kill pointless check
we'd just checked that child->d_inode is non-NULL, for fuck sake! Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
@@ -1710,10 +1710,8 @@ bool proc_fill_cache(struct file *file, struct dir_context *ctx,
|
|||||||
if (!child || IS_ERR(child) || !child->d_inode)
|
if (!child || IS_ERR(child) || !child->d_inode)
|
||||||
goto end_instantiate;
|
goto end_instantiate;
|
||||||
inode = child->d_inode;
|
inode = child->d_inode;
|
||||||
if (inode) {
|
ino = inode->i_ino;
|
||||||
ino = inode->i_ino;
|
type = inode->i_mode >> 12;
|
||||||
type = inode->i_mode >> 12;
|
|
||||||
}
|
|
||||||
dput(child);
|
dput(child);
|
||||||
end_instantiate:
|
end_instantiate:
|
||||||
if (!ino)
|
if (!ino)
|
||||||
|
Reference in New Issue
Block a user