]> git.baikalelectronics.ru Git - kernel.git/commit
btrfs: make btrfs_buffered_write nowait compatible
authorStefan Roesch <shr@fb.com>
Mon, 12 Sep 2022 19:27:50 +0000 (12:27 -0700)
committerDavid Sterba <dsterba@suse.com>
Thu, 29 Sep 2022 15:08:28 +0000 (17:08 +0200)
commit2c139ff2ffd8eed601ebc9d0af55eeb62c4f7654
tree9a86743b7f142632875610b246f38b3440ca9a80
parentf4f1cde6f3f68bdf423effe4a6708b5559dc0a36
btrfs: make btrfs_buffered_write nowait compatible

We need to avoid unconditionally calling balance_dirty_pages_ratelimited
as it could wait for some reason. Use balance_dirty_pages_ratelimited_flags
with the BDP_ASYNC in case the buffered write is nowait, returning
EAGAIN eventually.

It also moves the function after the again label. This can cause the
function to be called a bit later, but this should have no impact in the
real world.

Reviewed-by: Filipe Manana <fdmanana@suse.com>
Signed-off-by: Stefan Roesch <shr@fb.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/file.c