]> git.baikalelectronics.ru Git - kernel.git/commit
x86/mm: Avoid duplicated pxm_to_node() calls
authorYinghai Lu <yinghai@kernel.org>
Sun, 26 Jan 2014 21:01:42 +0000 (13:01 -0800)
committerIngo Molnar <mingo@kernel.org>
Sun, 9 Feb 2014 14:32:31 +0000 (15:32 +0100)
commit7d9d439fc6fc482dd00b3e068497ba3552897a6f
treec881a44f413b591ada817e44b1d6374adbd8e643
parentdf09b5a2d28e9ea6e7adc6c1518f94e7438defdb
x86/mm: Avoid duplicated pxm_to_node() calls

In slit init code, too many pxm_to_node() function calls are done.

We can store from_node/to_node instead of keep calling
pxm_to_node().

  - Before this patch: pxm_to_node() is called n*(1+n*3) times.
  - After  this patch: pxm_to_node() is called n*(1+n) times.

for  8 sockets, it will be   72 instead of  200.
for 32 sockets, it will be 1056 instead of 3104.

Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Cc: Toshi Kani <toshi.kani@hp.com>
Cc: David Rientjes <rientjes@google.com>
Link: http://lkml.kernel.org/r/1390770102-4007-1-git-send-email-yinghai@kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
arch/x86/mm/srat.c