Re: [PATCH 32/39] convert vfs_dedupe_file_range().
From: Christian Brauner <brauner@kernel.org>
Date: 2024-08-07 10:42:12
Also in:
bpf, cgroups, kvm, linux-fsdevel
From: Christian Brauner <brauner@kernel.org>
Date: 2024-08-07 10:42:12
Also in:
bpf, cgroups, kvm, linux-fsdevel
On Tue, Jul 30, 2024 at 01:16:18AM GMT, viro@kernel.org wrote:
From: Al Viro <viro@zeniv.linux.org.uk> fdput() is followed by checking fatal_signal_pending() (and aborting the loop in such case). fdput() is transposable with that check. Yes, it'll probably end up with slightly fatter code (call after the check has returned false + call on the almost never taken out-of-line path instead of one call before the check), but it's not worth bothering with explicit extra scope there (or dragging the check into the loop condition, for that matter). Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> ---
Reviewed-by: Christian Brauner <brauner@kernel.org>