lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAL3q7H7kLUGtqnc7bBSrTZ70Gx1z-ijeWQfPx=TiN+2PCoe_ug@mail.gmail.com>
Date: Fri, 3 Oct 2025 16:11:08 +0100
From: Filipe Manana <fdmanana@...nel.org>
To: rtapadia730@...il.com
Cc: dsterba@...e.com, clm@...com, linux-btrfs@...r.kernel.org, 
	linux-kernel@...r.kernel.org, skhan@...uxfoundation.org, khalid@...nel.org, 
	david.hunter.linux@...il.com
Subject: Re: [PATCH v2] btrfs: fix comment in alloc_bitmap() and drop stale TODO

On Fri, Oct 3, 2025 at 2:31 PM <rtapadia730@...il.com> wrote:
>
> From: Rajeev Tapadia <rtapadia730@...il.com>
>
> All callers of alloc_bitmap() hold a transaction handle, so GFP_NOFS is
> needed to avoid deadlocks on recursion. Update the comment and drop the
> stale TODO.
>
> Signed-off-by: Rajeev Tapadia <rtapadia730@...il.com>

Reviewed-by: Filipe Manana <fdmanana@...e.com>

Thanks.
I pushed it to the for-next branch:

https://github.com/btrfs/linux/commits/for-next/

> ---
> Change log:
> As per previous review the change is not required. So just removing the
> stale TODO.
>
>  fs/btrfs/free-space-tree.c | 8 +++-----
>  1 file changed, 3 insertions(+), 5 deletions(-)
>
> diff --git a/fs/btrfs/free-space-tree.c b/fs/btrfs/free-space-tree.c
> index dad0b492a663..bb8ca7b679be 100644
> --- a/fs/btrfs/free-space-tree.c
> +++ b/fs/btrfs/free-space-tree.c
> @@ -165,11 +165,9 @@ static unsigned long *alloc_bitmap(u32 bitmap_size)
>
>         /*
>          * GFP_NOFS doesn't work with kvmalloc(), but we really can't recurse
> -        * into the filesystem as the free space bitmap can be modified in the
> -        * critical section of a transaction commit.
> -        *
> -        * TODO: push the memalloc_nofs_{save,restore}() to the caller where we
> -        * know that recursion is unsafe.
> +        * into the filesystem here. All callers hold a transaction handle
> +        * open, so if a GFP_KERNEL allocation recurses into the filesystem
> +        * and triggers a transaction commit, we would deadlock.
>          */
>         nofs_flag = memalloc_nofs_save();
>         ret = kvzalloc(bitmap_rounded_size, GFP_KERNEL);
> --
> 2.51.0
>

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ