linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] kthread: ensure locality of task_struct allocations
@ 2014-01-28 18:38 Nishanth Aravamudan
  2014-01-29  8:13 ` David Rientjes
  2014-01-29 15:57 ` Christoph Lameter
  0 siblings, 2 replies; 10+ messages in thread
From: Nishanth Aravamudan @ 2014-01-28 18:38 UTC (permalink / raw)
  To: LKML
  Cc: Anton Blanchard, Christoph Lameter, Andrew Morton, Tejun Heo,
	Oleg Nesterov, Jan Kara, David Rientjes, Thomas Gleixner,
	Tetsuo Handa, linux-kernel, linux-mm, Wanpeng Li, Joonsoo Kim,
	Ben Herrenschmidt

In the presence of memoryless nodes, numa_node_id()/cpu_to_node() will
return the current CPU's NUMA node, but that may not be where we expect
to allocate from memory from. Instead, we should use
numa_mem_id()/cpu_to_mem(). On one ppc64 system with a memoryless Node
0, this ends up saving nearly 500M of slab due to less fragmentation.

Signed-off-by: Nishanth Aravamudan <nacc@linux.vnet.ibm.com>

diff --git a/kernel/kthread.c b/kernel/kthread.c
index b5ae3ee..8573e4e 100644
--- a/kernel/kthread.c
+++ b/kernel/kthread.c
@@ -217,7 +217,7 @@ int tsk_fork_get_node(struct task_struct *tsk)
 	if (tsk == kthreadd_task)
 		return tsk->pref_node_fork;
 #endif
-	return numa_node_id();
+	return numa_mem_id();
 }
 
 static void create_kthread(struct kthread_create_info *create)
@@ -369,7 +369,7 @@ struct task_struct *kthread_create_on_cpu(int (*threadfn)(void *data),
 {
 	struct task_struct *p;
 
-	p = kthread_create_on_node(threadfn, data, cpu_to_node(cpu), namefmt,
+	p = kthread_create_on_node(threadfn, data, cpu_to_mem(cpu), namefmt,
 				   cpu);
 	if (IS_ERR(p))
 		return p;


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2014-01-31 15:14 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-01-28 18:38 [PATCH] kthread: ensure locality of task_struct allocations Nishanth Aravamudan
2014-01-29  8:13 ` David Rientjes
2014-01-29 15:58   ` Christoph Lameter
2014-01-30  0:27     ` David Rientjes
2014-01-30  6:14       ` Eric Dumazet
2014-01-30 22:47         ` David Rientjes
2014-01-30 23:08           ` Nishanth Aravamudan
2014-01-30 23:31             ` David Rientjes
2014-01-31 15:14             ` Christoph Lameter
2014-01-29 15:57 ` Christoph Lameter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).