All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mel Gorman <mgorman@suse.de>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Minchan Kim <minchan.kim@gmail.com>,
	KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>,
	Christoph Lameter <cl@linux.com>,
	linux-mm@kvack.org, linux-kernel@vger.kernel.org
Subject: [PATCH] mm: page allocator: Reconsider zones for allocation after direct reclaim fix
Date: Tue, 19 Jul 2011 12:46:19 +0100	[thread overview]
Message-ID: <20110719114619.GG5349@suse.de> (raw)
In-Reply-To: <1310742540-22780-3-git-send-email-mgorman@suse.de>


mm/page_alloc.c: In function ‘__alloc_pages_direct_reclaim’:
mm/page_alloc.c:1983:3: error: implicit declaration of function ‘zlc_clear_zones_full’

This patch is a build fix for !CONFIG_NUMA that should be merged with
mm-page-allocator-reconsider-zones-for-allocation-after-direct-reclaim.patch .

Signed-off-by: Mel Gorman <mgorman@suse.de>
---
 mm/page_alloc.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 149409c..0f50cdb 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -1647,6 +1647,10 @@ static int zlc_zone_worth_trying(struct zonelist *zonelist, struct zoneref *z,
 static void zlc_mark_zone_full(struct zonelist *zonelist, struct zoneref *z)
 {
 }
+
+static void zlc_clear_zones_full(struct zonelist *zonelist)
+{
+}
 #endif	/* CONFIG_NUMA */
 
 /*

WARNING: multiple messages have this Message-ID (diff)
From: Mel Gorman <mgorman@suse.de>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Minchan Kim <minchan.kim@gmail.com>,
	KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>,
	Christoph Lameter <cl@linux.com>,
	linux-mm@kvack.org, linux-kernel@vger.kernel.org
Subject: [PATCH] mm: page allocator: Reconsider zones for allocation after direct reclaim fix
Date: Tue, 19 Jul 2011 12:46:19 +0100	[thread overview]
Message-ID: <20110719114619.GG5349@suse.de> (raw)
In-Reply-To: <1310742540-22780-3-git-send-email-mgorman@suse.de>


mm/page_alloc.c: In function a??__alloc_pages_direct_reclaima??:
mm/page_alloc.c:1983:3: error: implicit declaration of function a??zlc_clear_zones_fulla??

This patch is a build fix for !CONFIG_NUMA that should be merged with
mm-page-allocator-reconsider-zones-for-allocation-after-direct-reclaim.patch .

Signed-off-by: Mel Gorman <mgorman@suse.de>
---
 mm/page_alloc.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 149409c..0f50cdb 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -1647,6 +1647,10 @@ static int zlc_zone_worth_trying(struct zonelist *zonelist, struct zoneref *z,
 static void zlc_mark_zone_full(struct zonelist *zonelist, struct zoneref *z)
 {
 }
+
+static void zlc_clear_zones_full(struct zonelist *zonelist)
+{
+}
 #endif	/* CONFIG_NUMA */
 
 /*

--
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/ .
Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

  reply	other threads:[~2011-07-19 11:46 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-15 15:08 [PATCH 0/2] Reduce frequency of stalls due to zone_reclaim() on NUMA v2r1 Mel Gorman
2011-07-15 15:08 ` Mel Gorman
2011-07-15 15:08 ` [PATCH 1/2] mm: page allocator: Initialise ZLC for first zone eligible for zone_reclaim Mel Gorman
2011-07-15 15:08   ` Mel Gorman
2011-07-18 14:56   ` Christoph Lameter
2011-07-18 14:56     ` Christoph Lameter
2011-07-18 16:05     ` Mel Gorman
2011-07-18 16:05       ` Mel Gorman
2011-07-18 17:20       ` Christoph Lameter
2011-07-18 17:20         ` Christoph Lameter
2011-07-18 21:13         ` Mel Gorman
2011-07-18 21:13           ` Mel Gorman
2011-07-18 21:54           ` Christoph Lameter
2011-07-18 21:54             ` Christoph Lameter
2011-07-19 14:01             ` Christoph Lameter
2011-07-19 14:01               ` Christoph Lameter
2011-07-20 18:08               ` Christoph Lameter
2011-07-20 18:08                 ` Christoph Lameter
2011-07-20 19:18                 ` Mel Gorman
2011-07-20 19:18                   ` Mel Gorman
2011-07-20 19:28                   ` Christoph Lameter
2011-07-20 19:28                     ` Christoph Lameter
2011-07-20 19:52                     ` Christoph Lameter
2011-07-20 19:52                       ` Christoph Lameter
2011-07-20 21:17                       ` Christoph Lameter
2011-07-20 21:17                         ` Christoph Lameter
2011-07-20 22:48                         ` Mel Gorman
2011-07-20 22:48                           ` Mel Gorman
2011-07-21 15:24                           ` Christoph Lameter
2011-07-21 15:24                             ` Christoph Lameter
2011-07-15 15:09 ` [PATCH 2/2] mm: page allocator: Reconsider zones for allocation after direct reclaim Mel Gorman
2011-07-15 15:09   ` Mel Gorman
2011-07-19 11:46   ` Mel Gorman [this message]
2011-07-19 11:46     ` [PATCH] mm: page allocator: Reconsider zones for allocation after direct reclaim fix Mel Gorman

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=20110719114619.GG5349@suse.de \
    --to=mgorman@suse.de \
    --cc=akpm@linux-foundation.org \
    --cc=cl@linux.com \
    --cc=kosaki.motohiro@jp.fujitsu.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=minchan.kim@gmail.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.