Re: [PATCH] ntfs: use fatal_signal_pending() for fallocate interruption checks
From: Namjae Jeon
Date: Tue Sep 08 2026 - 06:11:31 EST
On Mon, Sep 7, 2026 at 12:57 PM Hongling Zeng <zenghongling@xxxxxxxxxx> wrote:
>
> The fallocate implementation uses signal checks to let a long allocation
> loop abort early. However, signal_pending() also returns true for
> TIF_NOTIFY_SIGNAL, which io_uring uses to deliver task_work completions
> to the submitting task.
>
> generic/616 is an io_uring fsx soak test that issues fsx-style
> read/write requests through io_uring and calls fallocate() directly in
> between. A pending io_uring task_work notification can therefore make
> signal_pending() true inside ntfs_attr_fallocate() even though no real
> signal was delivered.
>
> That caused the previous signal-interruption patch to return -EINTR for
> an io_uring notification, which fsx treats as a fatal failure. Switch
> both checks to fatal_signal_pending() so only fatal signals interrupt
> the allocation loop. A real fatal signal still returns -EINTR, and any
> other error still takes precedence.
>
> Fixes: 4dc8f4ee2d46 ("ntfs: handle signal interruption in fallocate")
> Cc: stable@xxxxxxxxxxxxxxx
> Signed-off-by: Hongling Zeng <zenghongling@xxxxxxxxxx>
Applied it to #ntfs-next.
Thanks!