Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1660739 > unrolled thread

Re: [PATCH] mm: correct the comment when reclaimed pages exceed the scanned pages

Started byzhong jiang <zhongjiang@huawei.com>
First post2017-06-08 07:00 +0200
Last post2017-06-08 07:00 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: [PATCH] mm: correct the comment when reclaimed pages exceed the  scanned pages zhong jiang <zhongjiang@huawei.com> - 2017-06-08 07:00 +0200

#1660739 — Re: [PATCH] mm: correct the comment when reclaimed pages exceed the scanned pages

Fromzhong jiang <zhongjiang@huawei.com>
Date2017-06-08 07:00 +0200
SubjectRe: [PATCH] mm: correct the comment when reclaimed pages exceed the scanned pages
Message-ID<tPXI5-83V-5@gated-at.bofh.it>
On 2017/6/7 16:31, zhongjiang wrote:
> The commit e1587a494540 ("mm: vmpressure: fix sending wrong events on
> underflow") declare that reclaimed pages exceed the scanned pages due
> to the thp reclaim. it is incorrect because THP will be spilt to normal
> page and loop again. which will result in the scanned pages increment.
>
> Signed-off-by: zhongjiang <zhongjiang@huawei.com>
> ---
>  mm/vmpressure.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/mm/vmpressure.c b/mm/vmpressure.c
> index 6063581..0e91ba3 100644
> --- a/mm/vmpressure.c
> +++ b/mm/vmpressure.c
> @@ -116,8 +116,9 @@ static enum vmpressure_levels vmpressure_calc_level(unsigned long scanned,
>  
>  	/*
>  	 * reclaimed can be greater than scanned in cases
> -	 * like THP, where the scanned is 1 and reclaimed
> -	 * could be 512
> +	 * like reclaimed slab pages, shrink_node just add
> +	 * reclaimed page without a related increment to
> +	 * scanned pages.
>  	 */
>  	if (reclaimed >= scanned)
>  		goto out;
Hi, minchan

what  suggstion about  the patch

Thanks
zhongjiang

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web