]> git.baikalelectronics.ru Git - kernel.git/commit
btrfs: extent-tree: Fix a bug that btrfs is unable to add pinned bytes
authorQu Wenruo <wqu@suse.com>
Fri, 10 May 2019 04:45:05 +0000 (12:45 +0800)
committerDavid Sterba <dsterba@suse.com>
Thu, 16 May 2019 12:31:13 +0000 (14:31 +0200)
commit16bd270e2859da552c074195f97f8539e79e0cad
treeb003ed219dcbbe322a3ce6f5bf4817364b392bb8
parent69b7946d1cc48ccd8d39f26e468ce1d0fd2539ea
btrfs: extent-tree: Fix a bug that btrfs is unable to add pinned bytes

Commit 4003987b62fe ("btrfs: extent-tree: Use btrfs_ref to refactor
add_pinned_bytes()") refactored add_pinned_bytes(), but during that
refactor, there are two callers which add the pinned bytes instead
of subtracting.

That refactor misses those two caller, causing incorrect pinned bytes
calculation and resulting unexpected ENOSPC error.

Fix it by adding a new parameter @sign to restore the original behavior.

Reported-by: kernel test robot <rong.a.chen@intel.com>
Fixes: 4003987b62fe ("btrfs: extent-tree: Use btrfs_ref to refactor add_pinned_bytes()")
Signed-off-by: Qu Wenruo <wqu@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/extent-tree.c