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 for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Mon, 25 Oct 2021 13:30:02 +0000
From:   SeongJae Park <sj@...nel.org>
To:     Yang Yingliang <yangyingliang@...wei.com>
Cc:     linux-kernel@...r.kernel.org, linux-mm@...ck.org,
        akpm@...ux-foundation.org, sj@...nel.org
Subject: Re: [PATCH -next] mm/damon: fix error return code in damon_reclaim_turn()

On Mon, 25 Oct 2021 20:45:00 +0800 Yang Yingliang <yangyingliang@...wei.com> wrote:

> If damon_reclaim_new_scheme() fails, it should return
> error code in damon_reclaim_turn()
> 
> Reported-by: Hulk Robot <hulkci@...wei.com>
> Signed-off-by: Yang Yingliang <yangyingliang@...wei.com>

Thank you for this fix!

Reviewed-by: SeongJae Park <sj@...nel.org>


Thanks,
SJ

> ---
>  mm/damon/reclaim.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/mm/damon/reclaim.c b/mm/damon/reclaim.c
> index f5ae4c422555..dc1485044eaf 100644
> --- a/mm/damon/reclaim.c
> +++ b/mm/damon/reclaim.c
> @@ -292,8 +292,10 @@ static int damon_reclaim_turn(bool on)
>  
>  	/* Will be freed by 'damon_set_schemes()' below */
>  	scheme = damon_reclaim_new_scheme();
> -	if (!scheme)
> +	if (!scheme) {
> +		err = -ENOMEM;
>  		goto free_region_out;
> +	}
>  	err = damon_set_schemes(ctx, &scheme, 1);
>  	if (err)
>  		goto free_scheme_out;
> -- 
> 2.25.1
> 

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ