]> git.baikalelectronics.ru Git - kernel.git/commit
btrfs: change btrfs_free_reserved_bytes to return void
authorzhong jiang <zhongjiang@huawei.com>
Thu, 16 Aug 2018 16:37:14 +0000 (00:37 +0800)
committerDavid Sterba <dsterba@suse.com>
Mon, 15 Oct 2018 15:23:27 +0000 (17:23 +0200)
commit0240491fe7305b91ad1294d6c0efc788f031663b
treeab683c9b200d613db6a925ab8204637411d9c35b
parent01f921d39a5f805a47bbafe6adb27daf3ccf7db0
btrfs: change btrfs_free_reserved_bytes to return void

btrfs_free_reserved_bytes uses the variable "ret" for return value,
but it is not modified after initialzation. Further, I find that any of
the callers do not handle the return value, so it is safe to drop the
unneeded "ret" and return void. There are no callees that would need the
function to handle or pass the value either.

Signed-off-by: zhong jiang <zhongjiang@huawei.com>
Reviewed-by: David Sterba <dsterba@suse.com>
[ update changelog ]
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/extent-tree.c