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


Groups > linux.kernel > #1235942 > unrolled thread

[PATCH] mm: fix overflow in find_zone_movable_pfns_for_nodes()

Started byXishi Qiu <qiuxishi@huawei.com>
First post2015-09-30 11:40 +0200
Last post2015-10-01 22:10 +0200
Articles 4 — 4 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] mm: fix overflow in find_zone_movable_pfns_for_nodes() Xishi Qiu <qiuxishi@huawei.com> - 2015-09-30 11:40 +0200
    Re: [PATCH] mm: fix overflow in find_zone_movable_pfns_for_nodes() Tang Chen <tangchen@cn.fujitsu.com> - 2015-09-30 12:40 +0200
    Re: [PATCH] mm: fix overflow in find_zone_movable_pfns_for_nodes() David Rientjes <rientjes@google.com> - 2015-09-30 23:10 +0200
    Re: [PATCH] mm: fix overflow in find_zone_movable_pfns_for_nodes() Yasuaki Ishimatsu <yasu.isimatu@gmail.com> - 2015-10-01 22:10 +0200

#1235942 — [PATCH] mm: fix overflow in find_zone_movable_pfns_for_nodes()

FromXishi Qiu <qiuxishi@huawei.com>
Date2015-09-30 11:40 +0200
Subject[PATCH] mm: fix overflow in find_zone_movable_pfns_for_nodes()
Message-ID<qem1J-Zq-29@gated-at.bofh.it>
If user set "movablecore=xx" to a large number, corepages will overflow,
this patch fix the problem.

Signed-off-by: Xishi Qiu <qiuxishi@huawei.com>
---
 mm/page_alloc.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 48aaf7b..af3c9bd 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -5668,6 +5668,7 @@ static void __init find_zone_movable_pfns_for_nodes(void)
 		 */
 		required_movablecore =
 			roundup(required_movablecore, MAX_ORDER_NR_PAGES);
+		required_movablecore = min(totalpages, required_movablecore);
 		corepages = totalpages - required_movablecore;
 
 		required_kernelcore = max(required_kernelcore, corepages);
-- 
2.0.0


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [next] | [standalone]


#1236097

FromTang Chen <tangchen@cn.fujitsu.com>
Date2015-09-30 12:40 +0200
Message-ID<qemXN-2nj-37@gated-at.bofh.it>
In reply to#1235942
Seems OK to me.

Thanks.

On 09/30/2015 05:33 PM, Xishi Qiu wrote:
> If user set "movablecore=xx" to a large number, corepages will overflow,
> this patch fix the problem.
>
> Signed-off-by: Xishi Qiu <qiuxishi@huawei.com>
> ---
>   mm/page_alloc.c | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/mm/page_alloc.c b/mm/page_alloc.c
> index 48aaf7b..af3c9bd 100644
> --- a/mm/page_alloc.c
> +++ b/mm/page_alloc.c
> @@ -5668,6 +5668,7 @@ static void __init find_zone_movable_pfns_for_nodes(void)
>   		 */
>   		required_movablecore =
>   			roundup(required_movablecore, MAX_ORDER_NR_PAGES);
> +		required_movablecore = min(totalpages, required_movablecore);
>   		corepages = totalpages - required_movablecore;
>   
>   		required_kernelcore = max(required_kernelcore, corepages);

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1236763

FromDavid Rientjes <rientjes@google.com>
Date2015-09-30 23:10 +0200
Message-ID<qewNr-8fj-11@gated-at.bofh.it>
In reply to#1235942
On Wed, 30 Sep 2015, Xishi Qiu wrote:

> If user set "movablecore=xx" to a large number, corepages will overflow,
> this patch fix the problem.
> 
> Signed-off-by: Xishi Qiu <qiuxishi@huawei.com>

Acked-by: David Rientjes <rientjes@google.com>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [next] | [standalone]


#1237701

FromYasuaki Ishimatsu <yasu.isimatu@gmail.com>
Date2015-10-01 22:10 +0200
Message-ID<qeSkV-6rx-3@gated-at.bofh.it>
In reply to#1235942
On Wed, 30 Sep 2015 17:33:42 +0800
Xishi Qiu <qiuxishi@huawei.com> wrote:

> If user set "movablecore=xx" to a large number, corepages will overflow,
> this patch fix the problem.
> 
> Signed-off-by: Xishi Qiu <qiuxishi@huawei.com>
> ---

Looks good to me.

Reviewed-by: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>

Thanks,
Yasuaki Ishimatsu

>  mm/page_alloc.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/mm/page_alloc.c b/mm/page_alloc.c
> index 48aaf7b..af3c9bd 100644
> --- a/mm/page_alloc.c
> +++ b/mm/page_alloc.c
> @@ -5668,6 +5668,7 @@ static void __init find_zone_movable_pfns_for_nodes(void)
>  		 */
>  		required_movablecore =
>  			roundup(required_movablecore, MAX_ORDER_NR_PAGES);
> +		required_movablecore = min(totalpages, required_movablecore);
>  		corepages = totalpages - required_movablecore;
>  
>  		required_kernelcore = max(required_kernelcore, corepages);
> -- 
> 2.0.0
> 
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web