Re: [PATCH] fuse: fix GCC 8 build with CONFIG_PROFILE_ALL_BRANCHES

From: Karl Mehltretter

Date: Sat Sep 19 2026 - 01:21:10 EST


On Tue, Aug 11, 2026 at 09:57:33PM +0100, Karl Mehltretter wrote:
> diff --git a/fs/fuse/notify.c b/fs/fuse/notify.c
> index 29578104ae6cd..3370ae344f751 100644
> --- a/fs/fuse/notify.c
> +++ b/fs/fuse/notify.c
> @@ -153,7 +153,7 @@ static int fuse_notify_store(struct fuse_conn *fc, unsigned int size,
>
> nodeid = outarg.nodeid;
> pos = outarg.offset;
> - num = min(outarg.size, MAX_LFS_FILESIZE - pos);
> + num = umin(outarg.size, MAX_LFS_FILESIZE - pos);
>
> down_read(&fc->killsb);
>

Friendly ping on this build fix. Is anything else needed from my side?

Thanks,
Karl