All of lore.kernel.org
 help / color / mirror / Atom feed
From: Vlastimil Babka <vbabka@suse.cz>
To: js1304@gmail.com, Andrew Morton <akpm@linux-foundation.org>
Cc: Rik van Riel <riel@redhat.com>,
	Johannes Weiner <hannes@cmpxchg.org>,
	mgorman@techsingularity.net, Laura Abbott <lauraa@codeaurora.org>,
	Minchan Kim <minchan@kernel.org>,
	Marek Szyprowski <m.szyprowski@samsung.com>,
	Michal Nazarewicz <mina86@mina86.com>,
	"Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>,
	Rui Teng <rui.teng@linux.vnet.ibm.com>,
	linux-mm@kvack.org, linux-kernel@vger.kernel.org,
	Joonsoo Kim <iamjoonsoo.kim@lge.com>
Subject: Re: [PATCH v3 4/6] mm/cma: remove ALLOC_CMA
Date: Mon, 27 Jun 2016 11:30:52 +0200	[thread overview]
Message-ID: <5848e9f2-fd49-059e-fe57-aee6cd70c371@suse.cz> (raw)
In-Reply-To: <1464243748-16367-5-git-send-email-iamjoonsoo.kim@lge.com>

On 05/26/2016 08:22 AM, js1304@gmail.com wrote:
> From: Joonsoo Kim <iamjoonsoo.kim@lge.com>
>
> Now, all reserved pages for CMA region are belong to the ZONE_CMA
> and it only serves for GFP_HIGHUSER_MOVABLE. Therefore, we don't need to
> consider ALLOC_CMA at all.
>
> Signed-off-by: Joonsoo Kim <iamjoonsoo.kim@lge.com>
> ---
>  mm/internal.h   |  3 +--
>  mm/page_alloc.c | 27 +++------------------------
>  2 files changed, 4 insertions(+), 26 deletions(-)
>

[...]

> @@ -2833,10 +2827,8 @@ bool __zone_watermark_ok(struct zone *z, unsigned int order, unsigned long mark,
>  		}
>
>  #ifdef CONFIG_CMA
> -		if ((alloc_flags & ALLOC_CMA) &&
> -		    !list_empty(&area->free_list[MIGRATE_CMA])) {
> +		if (!list_empty(&area->free_list[MIGRATE_CMA]))
>  			return true;
> -		}
>  #endif

Nitpick: it would be more logical to remove the whole block in this 
patch, as removing ALLOC_CMA means it's effectively false? Also less churn.

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

WARNING: multiple messages have this Message-ID (diff)
From: Vlastimil Babka <vbabka@suse.cz>
To: js1304@gmail.com, Andrew Morton <akpm@linux-foundation.org>
Cc: Rik van Riel <riel@redhat.com>,
	Johannes Weiner <hannes@cmpxchg.org>,
	mgorman@techsingularity.net, Laura Abbott <lauraa@codeaurora.org>,
	Minchan Kim <minchan@kernel.org>,
	Marek Szyprowski <m.szyprowski@samsung.com>,
	Michal Nazarewicz <mina86@mina86.com>,
	"Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>,
	Rui Teng <rui.teng@linux.vnet.ibm.com>,
	linux-mm@kvack.org, linux-kernel@vger.kernel.org,
	Joonsoo Kim <iamjoonsoo.kim@lge.com>
Subject: Re: [PATCH v3 4/6] mm/cma: remove ALLOC_CMA
Date: Mon, 27 Jun 2016 11:30:52 +0200	[thread overview]
Message-ID: <5848e9f2-fd49-059e-fe57-aee6cd70c371@suse.cz> (raw)
In-Reply-To: <1464243748-16367-5-git-send-email-iamjoonsoo.kim@lge.com>

On 05/26/2016 08:22 AM, js1304@gmail.com wrote:
> From: Joonsoo Kim <iamjoonsoo.kim@lge.com>
>
> Now, all reserved pages for CMA region are belong to the ZONE_CMA
> and it only serves for GFP_HIGHUSER_MOVABLE. Therefore, we don't need to
> consider ALLOC_CMA at all.
>
> Signed-off-by: Joonsoo Kim <iamjoonsoo.kim@lge.com>
> ---
>  mm/internal.h   |  3 +--
>  mm/page_alloc.c | 27 +++------------------------
>  2 files changed, 4 insertions(+), 26 deletions(-)
>

[...]

> @@ -2833,10 +2827,8 @@ bool __zone_watermark_ok(struct zone *z, unsigned int order, unsigned long mark,
>  		}
>
>  #ifdef CONFIG_CMA
> -		if ((alloc_flags & ALLOC_CMA) &&
> -		    !list_empty(&area->free_list[MIGRATE_CMA])) {
> +		if (!list_empty(&area->free_list[MIGRATE_CMA]))
>  			return true;
> -		}
>  #endif

Nitpick: it would be more logical to remove the whole block in this 
patch, as removing ALLOC_CMA means it's effectively false? Also less churn.

  reply	other threads:[~2016-06-27  9:30 UTC|newest]

Thread overview: 68+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-26  6:22 [PATCH v3 0/6] Introduce ZONE_CMA js1304
2016-05-26  6:22 ` js1304
2016-05-26  6:22 ` [PATCH v3 1/6] mm/page_alloc: recalculate some of zone threshold when on/offline memory js1304
2016-05-26  6:22   ` js1304
2016-06-24 13:20   ` Vlastimil Babka
2016-06-24 13:20     ` Vlastimil Babka
2016-06-28  8:12     ` Joonsoo Kim
2016-06-28  8:12       ` Joonsoo Kim
2016-05-26  6:22 ` [PATCH v3 2/6] mm/cma: introduce new zone, ZONE_CMA js1304
2016-05-26  6:22   ` js1304
2016-05-26  6:22 ` [PATCH v3 3/6] mm/cma: populate ZONE_CMA js1304
2016-05-26  6:22   ` js1304
2016-06-22  9:23   ` Chen Feng
2016-06-22  9:23     ` Chen Feng
2016-06-23  2:52     ` Joonsoo Kim
2016-06-23  2:52       ` Joonsoo Kim
2016-06-28 11:23       ` Chen Feng
2016-06-28 11:23         ` Chen Feng
2016-06-29  8:00         ` Joonsoo Kim
2016-06-29  8:00           ` Joonsoo Kim
2016-06-27  8:24   ` Vlastimil Babka
2016-06-27  8:24     ` Vlastimil Babka
2016-06-28  8:31     ` Joonsoo Kim
2016-06-28  8:31       ` Joonsoo Kim
2016-05-26  6:22 ` [PATCH v3 4/6] mm/cma: remove ALLOC_CMA js1304
2016-05-26  6:22   ` js1304
2016-06-27  9:30   ` Vlastimil Babka [this message]
2016-06-27  9:30     ` Vlastimil Babka
2016-06-28  8:16     ` Joonsoo Kim
2016-06-28  8:16       ` Joonsoo Kim
2016-05-26  6:22 ` [PATCH v3 5/6] mm/cma: remove MIGRATE_CMA js1304
2016-05-26  6:22   ` js1304
2016-05-27  1:42   ` Chen Feng
2016-05-27  1:42     ` Chen Feng
2016-05-27  5:32     ` Joonsoo Kim
2016-05-27  5:32       ` Joonsoo Kim
2016-06-27  9:46   ` Vlastimil Babka
2016-06-27  9:46     ` Vlastimil Babka
2016-06-28  8:17     ` Joonsoo Kim
2016-06-28  8:17       ` Joonsoo Kim
2016-05-26  6:22 ` [PATCH v3 6/6] mm/cma: remove per zone CMA stat js1304
2016-05-26  6:22   ` js1304
2016-06-27  9:54   ` Vlastimil Babka
2016-06-27  9:54     ` Vlastimil Babka
2016-05-26  8:04 ` [PATCH v3 0/6] Introduce ZONE_CMA Feng Tang
2016-05-26  8:04   ` Feng Tang
2016-05-27  5:28   ` Joonsoo Kim
2016-05-27  5:28     ` Joonsoo Kim
2016-05-27  6:25     ` Feng Tang
2016-05-27  6:25       ` Feng Tang
2016-05-27  6:42       ` Joonsoo Kim
2016-05-27  6:42         ` Joonsoo Kim
2016-05-27  7:27         ` Feng Tang
2016-05-27  7:27           ` Feng Tang
2016-05-30  5:45           ` Joonsoo Kim
2016-05-30  5:45             ` Joonsoo Kim
2016-06-17  7:38           ` Chen Feng
2016-06-17  7:38             ` Chen Feng
2016-06-20  6:48             ` Joonsoo Kim
2016-06-20  6:48               ` Joonsoo Kim
2016-06-21  2:08               ` Chen Feng
2016-06-21  2:08                 ` Chen Feng
2016-06-21  6:56                 ` Joonsoo Kim
2016-06-21  6:56                   ` Joonsoo Kim
2016-06-27 11:25 ` Balbir Singh
2016-06-27 11:25   ` Balbir Singh
2016-06-29  7:57   ` Joonsoo Kim
2016-06-29  7:57     ` Joonsoo Kim

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5848e9f2-fd49-059e-fe57-aee6cd70c371@suse.cz \
    --to=vbabka@suse.cz \
    --cc=akpm@linux-foundation.org \
    --cc=aneesh.kumar@linux.vnet.ibm.com \
    --cc=hannes@cmpxchg.org \
    --cc=iamjoonsoo.kim@lge.com \
    --cc=js1304@gmail.com \
    --cc=lauraa@codeaurora.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=m.szyprowski@samsung.com \
    --cc=mgorman@techsingularity.net \
    --cc=mina86@mina86.com \
    --cc=minchan@kernel.org \
    --cc=riel@redhat.com \
    --cc=rui.teng@linux.vnet.ibm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.