public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* idle task's task_t allocation on NUMA machines
@ 2005-08-18 14:08 Samuel Thibault
  2005-08-18 15:18 ` Eric Dumazet
  2005-08-18 18:27 ` Robin Holt
  0 siblings, 2 replies; 9+ messages in thread
From: Samuel Thibault @ 2005-08-18 14:08 UTC (permalink / raw)
  To: linux-kernel, lse-tech

Hi,

Currently, the task_t structure of the idle task is always allocated
on CPU0, hence on node 0: while booting, for each CPU, CPU 0 calls
fork_idle(), hence copy_process(), hence dup_task_struct(), hence
alloc_task_struct(), hence kmem_cache_alloc(), which picks up memory
from the allocation cache of the current CPU, i.e. on node 0.

This is a bad idea: every write needs be written back to node 0 at some
time, so that node 0 can get a small bit busy especially when other
nodes are idle.

A solution would be to add to copy_process(), dup_task_struct(),
alloc_task_struct() and kmem_cache_alloc() the node number on which
allocation should be performed. This might also be useful if performing
node load balancing at fork(): one could then allocate task_t directly
on the new node. It might also be useful when allocating data for
another node.

Regards,
Samuel

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

end of thread, other threads:[~2005-08-18 21:32 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-08-18 14:08 idle task's task_t allocation on NUMA machines Samuel Thibault
2005-08-18 15:18 ` Eric Dumazet
2005-08-18 15:39   ` Samuel Thibault
2005-08-18 17:20     ` Christoph Lameter
2005-08-18 19:49   ` Samuel Thibault
2005-08-18 20:02     ` Samuel Thibault
2005-08-18 21:28       ` [Lse-tech] " Martin J. Bligh
2005-08-18 21:32       ` Andi Kleen
2005-08-18 18:27 ` Robin Holt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox