]> git.baikalelectronics.ru Git - kernel.git/commit
btrfs: replace unnecessary goto with direct return at cow_file_range()
authorNaohiro Aota <naohiro.aota@wdc.com>
Tue, 21 Jun 2022 06:41:02 +0000 (15:41 +0900)
committerDavid Sterba <dsterba@suse.com>
Mon, 25 Jul 2022 15:45:38 +0000 (17:45 +0200)
commit922c5afac2c3b6bd922810cf6b2ba05e36efd14f
tree3dec6c555b91d5c1a8aacb1ed1fa5f0abc8ec117
parent3d786657df54801ca96a4d4e17110ef6cf03e7d3
btrfs: replace unnecessary goto with direct return at cow_file_range()

The 'goto out' in cow_file_range() in the exit block are not necessary
and jump back. Replace them with return, while still keeping 'goto out'
in the main code.

Reviewed-by: Filipe Manana <fdmanana@suse.com>
Signed-off-by: Naohiro Aota <naohiro.aota@wdc.com>
Reviewed-by: David Sterba <dsterba@suse.com>
[ keep goto in the main code, update changelog ]
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/inode.c