From: Dan Carpenter Date: Wed, 11 Aug 2010 01:02:04 +0000 (-0700) Subject: autofs4: remove unneeded null check in try_to_fill_dentry() X-Git-Tag: upstream/snapshot3+hdmi~13434 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5fc79d85d2ab7ce144bc75e06cab58126249afbb;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git autofs4: remove unneeded null check in try_to_fill_dentry() After 97e7449a7ad: "autofs4: fix indirect mount pending expire race" we no longer assumed that "ino" can be null. The other null checks got removed but this was one was missed. Signed-off-by: Dan Carpenter Cc: Ian Kent Cc: Al Viro Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/autofs4/root.c b/fs/autofs4/root.c index 48e056e..cb1bd38 100644 --- a/fs/autofs4/root.c +++ b/fs/autofs4/root.c @@ -204,8 +204,7 @@ static int try_to_fill_dentry(struct dentry *dentry, int flags) } /* Initialize expiry counter after successful mount */ - if (ino) - ino->last_used = jiffies; + ino->last_used = jiffies; spin_lock(&sbi->fs_lock); ino->flags &= ~AUTOFS_INF_PENDING;