[PATCH 0/2] fuse: two tiny fixes for fuse_resend()

Hou Tao posted 2 patches 1 year, 7 months ago
fs/fuse/dev.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
[PATCH 0/2] fuse: two tiny fixes for fuse_resend()
Posted by Hou Tao 1 year, 7 months ago
From: Hou Tao <houtao1@huawei.com>

Hi,

The patch set just includes two tiny fixes for fuse_resend(). Patch #1
replaces __set_bit() by set_bit() to set FR_PENDING atomically. Patch #2
clears FR_SENT when moving requests from processing lists to pending
list.

Please check the individual patches for more details. And comments are
always welcome.

Hou Tao (2):
  fuse: set FR_PENDING atomically in fuse_resend()
  fuse: clear FR_SENT when re-adding requests into pending list

 fs/fuse/dev.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

-- 
2.29.2
Re: [PATCH 0/2] fuse: two tiny fixes for fuse_resend()
Posted by Miklos Szeredi 1 year, 7 months ago
On Thu, 9 May 2024 at 14:21, Hou Tao <houtao@huaweicloud.com> wrote:
>
> From: Hou Tao <houtao1@huawei.com>
>
> Hi,
>
> The patch set just includes two tiny fixes for fuse_resend(). Patch #1
> replaces __set_bit() by set_bit() to set FR_PENDING atomically. Patch #2
> clears FR_SENT when moving requests from processing lists to pending
> list.
>
> Please check the individual patches for more details. And comments are
> always welcome.

Applied, thanks.

Miklos