]> git.baikalelectronics.ru Git - kernel.git/commit
btrfs: remove redundant inode null check
authorColin Ian King <colin.king@canonical.com>
Tue, 20 Dec 2016 16:18:37 +0000 (16:18 +0000)
committerDavid Sterba <dsterba@suse.com>
Tue, 14 Feb 2017 14:50:50 +0000 (15:50 +0100)
commitc048ffac2bfba4060e4905aab6106b67c6acdac5
treec324a380c6fd48d535c53d3cce61926c37291437
parent5e121d969247a089731606f87c79eb6e56529156
btrfs: remove redundant inode null check

The check for a null inode is redundant since the function
is a callback for exportfs, which will itself crash if
dentry->d_inode or parent->d_inode is NULL.  Removing the
null check makes this consistent with other file systems.

Also remove the redundant null dir check too.

Found with static analysis by CoverityScan, CID 1389472

Kudos to Jeff Mahoney for reviewing and explaining the error in
my original patch (most of this explanation went into the above
commit message) and David Sterba for pointing out that the dir
check is also redundant.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/export.c