]> git.baikalelectronics.ru Git - kernel.git/commit
btrfs: remove err variable from btrfs_get_extent
authorNikolay Borisov <nborisov@suse.com>
Mon, 3 Aug 2020 09:58:46 +0000 (12:58 +0300)
committerDavid Sterba <dsterba@suse.com>
Wed, 7 Oct 2020 10:06:57 +0000 (12:06 +0200)
commit09da35ad3bf9d0f16d8cae1ba1ad22a59985cc28
treea06a537dde32ffd33d70507ab0d1922405311109
parent9618a9af558d16ceb298fca078343084b8ec3ef9
btrfs: remove err variable from btrfs_get_extent

There's no practical reason too use 'err' as a variable to convey
errors. In fact it's value is either set explicitly in the beginning of
the function or it simply takes the value of 'ret'. Not conforming to
the usual pattern of having ret be the only variable used to convey
errors makes the code more error prone to bugs. In fact one such bug
was introduced by 5f3fd456e1de ("btrfs: inode: Verify inode mode toi
avoid NULL pointer dereference") by assigning the error value to 'ret'
and not 'err'.

Let's fix that issue and make the function less tricky by leaving only
ret to convey error values.

Signed-off-by: Nikolay Borisov <nborisov@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/inode.c