All of lore.kernel.org
 help / color / mirror / Atom feed
* [to-be-updated] kernel-profilec-replace-cpu_to_mem-with-cpu_to_node.patch removed from -mm tree
@ 2015-11-09 21:52 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2015-11-09 21:52 UTC (permalink / raw)
  To: jiang.liu, hpa, mgorman, mingo, peterz, rafael.j.wysocki,
	rientjes, tangchen, tglx, tj, tony.luck, umgwanakikbuti,
	mm-commits


The patch titled
     Subject: kernel/profile.c: replace cpu_to_mem() with cpu_to_node()
has been removed from the -mm tree.  Its filename was
     kernel-profilec-replace-cpu_to_mem-with-cpu_to_node.patch

This patch was dropped because an updated version will be merged

------------------------------------------------------
From: Jiang Liu <jiang.liu@linux.intel.com>
Subject: kernel/profile.c: replace cpu_to_mem() with cpu_to_node()

Function profile_cpu_callback() allocates memory without specifying
__GFP_THISNODE flag, so replace cpu_to_mem() with cpu_to_node() because
cpu_to_mem() may cause suboptimal memory allocation if there's no free
memory on the node returned by cpu_to_mem().

It's safe to use cpu_to_mem() because build_all_zonelists() also builds
suitable fallback zonelist for memoryless node.

Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com>
Cc: Mel Gorman <mgorman@suse.de>
Cc: David Rientjes <rientjes@google.com>
Cc: Mike Galbraith <umgwanakikbuti@gmail.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: "Rafael J . Wysocki" <rafael.j.wysocki@intel.com>
Cc: Tang Chen <tangchen@cn.fujitsu.com>
Cc: Tejun Heo <tj@kernel.org>
Cc: Tony Luck <tony.luck@intel.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 kernel/profile.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -puN kernel/profile.c~kernel-profilec-replace-cpu_to_mem-with-cpu_to_node kernel/profile.c
--- a/kernel/profile.c~kernel-profilec-replace-cpu_to_mem-with-cpu_to_node
+++ a/kernel/profile.c
@@ -336,7 +336,7 @@ static int profile_cpu_callback(struct n
 	switch (action) {
 	case CPU_UP_PREPARE:
 	case CPU_UP_PREPARE_FROZEN:
-		node = cpu_to_mem(cpu);
+		node = cpu_to_node(cpu);
 		per_cpu(cpu_profile_flip, cpu) = 0;
 		if (!per_cpu(cpu_profile_hits, cpu)[1]) {
 			page = __alloc_pages_node(node,
_

Patches currently in -mm which might be from jiang.liu@linux.intel.com are

sgi-xp-replace-cpu_to_node-with-cpu_to_mem-to-support-memoryless-node.patch
openvswitch-replace-cpu_to_node-with-cpu_to_mem-to-support-memoryless-node.patch
x86-numa-kill-useless-code-to-improve-code-readability.patch
mm-update-_mem_id_-for-every-possible-cpu-when-memory-configuration-changes.patch
mm-x86-enable-memoryless-node-support-to-better-support-cpu-memory-hotplug.patch


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-11-09 21:52 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-09 21:52 [to-be-updated] kernel-profilec-replace-cpu_to_mem-with-cpu_to_node.patch removed from -mm tree akpm

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.