linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mm, numa: Really disable NUMA balancing by default on single node machines
@ 2015-05-13  8:10 Mel Gorman
  2015-05-13 13:07 ` Rik van Riel
  0 siblings, 1 reply; 2+ messages in thread
From: Mel Gorman @ 2015-05-13  8:10 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Rik van Riel, linux-mm, linux-kernel

NUMA balancing is meant to be disabled by default on UMA machines but
the check is using nr_node_ids (highest node) instead of num_online_nodes
(online nodes). The consequences are that a UMA machine with a node ID of 1
or higher will enable NUMA balancing. This will incur useless overhead due
to minor faults with the impact depending on the workload. These are the
impact on the stats when running a kernel build on a single node machine
whose node ID happened to be 1;

			       vanilla     patched
NUMA base PTE updates          5113158           0
NUMA huge PMD updates              643           0
NUMA page range updates        5442374           0
NUMA hint faults               2109622           0
NUMA hint local faults         2109622           0
NUMA hint local percent            100         100
NUMA pages migrated                  0           0

Signed-off-by: Mel Gorman <mgorman@suse.de>
Cc: <stable@vger.kernel.org> #v3.8+
---
 mm/mempolicy.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mm/mempolicy.c b/mm/mempolicy.c
index ede26291d4aa..747743237d9f 100644
--- a/mm/mempolicy.c
+++ b/mm/mempolicy.c
@@ -2518,7 +2518,7 @@ static void __init check_numabalancing_enable(void)
 	if (numabalancing_override)
 		set_numabalancing_state(numabalancing_override == 1);
 
-	if (nr_node_ids > 1 && !numabalancing_override) {
+	if (num_online_nodes() > 1 && !numabalancing_override) {
 		pr_info("%s automatic NUMA balancing. "
 			"Configure with numa_balancing= or the "
 			"kernel.numa_balancing sysctl",

--
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/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

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

* Re: [PATCH] mm, numa: Really disable NUMA balancing by default on single node machines
  2015-05-13  8:10 [PATCH] mm, numa: Really disable NUMA balancing by default on single node machines Mel Gorman
@ 2015-05-13 13:07 ` Rik van Riel
  0 siblings, 0 replies; 2+ messages in thread
From: Rik van Riel @ 2015-05-13 13:07 UTC (permalink / raw)
  To: Mel Gorman, Andrew Morton; +Cc: linux-mm, linux-kernel

On 05/13/2015 04:10 AM, Mel Gorman wrote:
> NUMA balancing is meant to be disabled by default on UMA machines but
> the check is using nr_node_ids (highest node) instead of num_online_nodes
> (online nodes). The consequences are that a UMA machine with a node ID of 1
> or higher will enable NUMA balancing. This will incur useless overhead due
> to minor faults with the impact depending on the workload. These are the
> impact on the stats when running a kernel build on a single node machine
> whose node ID happened to be 1;
> 
> 			       vanilla     patched
> NUMA base PTE updates          5113158           0
> NUMA huge PMD updates              643           0
> NUMA page range updates        5442374           0
> NUMA hint faults               2109622           0
> NUMA hint local faults         2109622           0
> NUMA hint local percent            100         100
> NUMA pages migrated                  0           0
> 
> Signed-off-by: Mel Gorman <mgorman@suse.de>
> Cc: <stable@vger.kernel.org> #v3.8+

Reviewed-by: Rik van Riel <riel@redhat.com>

-- 
All rights reversed

--
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/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

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

end of thread, other threads:[~2015-05-13 13:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-13  8:10 [PATCH] mm, numa: Really disable NUMA balancing by default on single node machines Mel Gorman
2015-05-13 13:07 ` Rik van Riel

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).