]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
btrfs: make add_extent_changeset() only return errors or success
authorFilipe Manana <fdmanana@suse.com>
Wed, 11 Mar 2026 12:17:03 +0000 (12:17 +0000)
committerDavid Sterba <dsterba@suse.com>
Tue, 7 Apr 2026 16:56:03 +0000 (18:56 +0200)
commitf5405ffce78d6e79babc8246df6566b7e001dadb
treed1743632f6f56fe5328b13bef0a0d90675f402e9
parent0f7c10d662ac4fcd749543568d15cd65325feef9
btrfs: make add_extent_changeset() only return errors or success

Currently add_extent_changeset() always returns the return value from its
call to ulist_add(), which can return an error, 0 or 1. There are no
callers that care about the difference between 0 and 1 and all except one
of them, check for negative values and ignore other values, but there is
another caller (btrfs_clear_extent_bit_changeset()) that must set its
'ret' variable to 0 after calling add_extent_changeset(), so that it
does not return an unexpected value of 1 to its caller.

So change add_extent_changeset() to only return errors or 0, avoiding
that caller (and any future callers) from having to deal with a return
value of 1.

Signed-off-by: Filipe Manana <fdmanana@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/extent-io-tree.c