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]
Date:   Thu, 10 Nov 2022 15:46:09 -0600
From:   Dave Kleikamp <dave.kleikamp@...cle.com>
To:     Oleg Kanatov <okanatov@...il.com>
Cc:     Oleg Kanatov <okanatov@...ralinux.ru>,
        jfs-discussion@...ts.sourceforge.net, linux-kernel@...r.kernel.org,
        lvc-project@...uxtesting.org
Subject: Re: [PATCH] jfs: Fix a typo in function jfs_umount

Applied. Thanks.

On 10/28/22 7:16AM, Oleg Kanatov wrote:
> When closing the block allocation map, an incorrect pointer
> was NULL'ed. This commit fixes that.
> 
> Signed-off-by: Oleg Kanatov <okanatov@...il.com>
> ---
>   fs/jfs/jfs_umount.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/fs/jfs/jfs_umount.c b/fs/jfs/jfs_umount.c
> index 3e8b13e6aa01..673e132c1c26 100644
> --- a/fs/jfs/jfs_umount.c
> +++ b/fs/jfs/jfs_umount.c
> @@ -89,7 +89,7 @@ int jfs_umount(struct super_block *sb)
>   	dbUnmount(ipbmap, 0);
>   
>   	diFreeSpecial(ipbmap);
> -	sbi->ipimap = NULL;
> +	sbi->ipbmap = NULL;
>   
>   	/*
>   	 * Make sure all metadata makes it to disk before we mark

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ