mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] x86/platform/uv/BAU: disable BAU on single hub configurations
@ 2017-07-18 21:51 Andrew Banman
  2017-07-20 11:47 ` Ingo Molnar
  2017-07-20 22:05 ` [PATCH v2] " Andrew Banman
  0 siblings, 2 replies; 5+ messages in thread
From: Andrew Banman @ 2017-07-18 21:51 UTC (permalink / raw)
  To: mingo; +Cc: tglx, x86, linux-kernel, rja, mike.travis, Andrew Banman

The BAU confers no benefit to a UV system running with only one hub/socket.
Permanently disable the BAU driver if there are less than two hubs online
to avoid BAU overhead. We have observed failed boots on single-socket UV4
systems caused by BAU that are avoided with this patch.

Signed-off-by: Andrew Banman <abanman@hpe.com>
Acked-by: Russ Anderson <rja@hpe.com>
Acked-by: Mike Travis <mike.travis@hpe.com>
---
 arch/x86/platform/uv/tlb_uv.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/arch/x86/platform/uv/tlb_uv.c b/arch/x86/platform/uv/tlb_uv.c
index 2511a28..88216cc 100644
--- a/arch/x86/platform/uv/tlb_uv.c
+++ b/arch/x86/platform/uv/tlb_uv.c
@@ -2251,6 +2251,12 @@ static int __init uv_bau_init(void)
 	}
 
 	nuvhubs = uv_num_possible_blades();
+	if (nuvhubs < 2) {
+		pr_crit("UV: BAU disabled - insufficient hub count\n");
+		set_bau_off();
+		nobau_perm = 1;
+		return 0;
+	}
 
 	uv_base_pnode = 0x7fffffff;
 	for (uvhub = 0; uvhub < nuvhubs; uvhub++) {
-- 
1.8.2.1

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

* Re: [PATCH] x86/platform/uv/BAU: disable BAU on single hub configurations
  2017-07-18 21:51 [PATCH] x86/platform/uv/BAU: disable BAU on single hub configurations Andrew Banman
@ 2017-07-20 11:47 ` Ingo Molnar
  2017-07-20 18:50   ` Andrew Banman
  2017-07-20 22:05 ` [PATCH v2] " Andrew Banman
  1 sibling, 1 reply; 5+ messages in thread
From: Ingo Molnar @ 2017-07-20 11:47 UTC (permalink / raw)
  To: Andrew Banman; +Cc: mingo, tglx, x86, linux-kernel, rja, mike.travis


* Andrew Banman <abanman@hpe.com> wrote:

> The BAU confers no benefit to a UV system running with only one hub/socket.
> Permanently disable the BAU driver if there are less than two hubs online
> to avoid BAU overhead. We have observed failed boots on single-socket UV4
> systems caused by BAU that are avoided with this patch.
> 
> Signed-off-by: Andrew Banman <abanman@hpe.com>
> Acked-by: Russ Anderson <rja@hpe.com>
> Acked-by: Mike Travis <mike.travis@hpe.com>
> ---
>  arch/x86/platform/uv/tlb_uv.c | 6 ++++++
>  1 file changed, 6 insertions(+)
> 
> diff --git a/arch/x86/platform/uv/tlb_uv.c b/arch/x86/platform/uv/tlb_uv.c
> index 2511a28..88216cc 100644
> --- a/arch/x86/platform/uv/tlb_uv.c
> +++ b/arch/x86/platform/uv/tlb_uv.c
> @@ -2251,6 +2251,12 @@ static int __init uv_bau_init(void)
>  	}
>  
>  	nuvhubs = uv_num_possible_blades();
> +	if (nuvhubs < 2) {
> +		pr_crit("UV: BAU disabled - insufficient hub count\n");
> +		set_bau_off();
> +		nobau_perm = 1;
> +		return 0;
> +	}

Yeah, could you structure the error paths in this function in a bit more organized 
fashion? It has two similar error handling blocks:


                pr_crit("UV: BAU disabled - insufficient hub count\n");
                set_bau_off();
                nobau_perm = 1;
                return 0;

...

                set_bau_off();
                nobau_perm = 1;
                return 0;

which could be consolidated via the usual goto exception construct:

	if (nuvhubs < 2) {
		pr_crit("UV: BAU disabled - insufficient hub count\n");
		goto err_disable_bau;
	}
	...

        if (init_per_cpu(nuvhubs, uv_base_pnode))
		pr_crit("UV: BAU disabled - per CPU init failed\n");
		goto err_disable_bau;
	}

	...
	return 0;

err_disable_bau:

	set_bau_off();
	nobau_perm = 1;
	return 0;

Note that I added an error message to the second case as well.

Plus, in the error case you might want to use a 'return -EINVAL;' instead of 
return 0, or so?

Plus plus, there's probably a (mild) memory leak in the error paths, can the 
cpumasks be free_cpumask_var() freed - or are they still required even if BAU is 
disabled?

Thanks,

	Ingo

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

* Re: [PATCH] x86/platform/uv/BAU: disable BAU on single hub configurations
  2017-07-20 11:47 ` Ingo Molnar
@ 2017-07-20 18:50   ` Andrew Banman
  0 siblings, 0 replies; 5+ messages in thread
From: Andrew Banman @ 2017-07-20 18:50 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: Andrew Banman, mingo, tglx, x86, linux-kernel, rja, mike.travis

On Thu, Jul 20, 2017 at 01:47:50PM +0200, Ingo Molnar wrote:
> 
> * Andrew Banman <abanman@hpe.com> wrote:
> 
> > The BAU confers no benefit to a UV system running with only one hub/socket.
> > Permanently disable the BAU driver if there are less than two hubs online
> > to avoid BAU overhead. We have observed failed boots on single-socket UV4
> > systems caused by BAU that are avoided with this patch.
> > 
> > Signed-off-by: Andrew Banman <abanman@hpe.com>
> > Acked-by: Russ Anderson <rja@hpe.com>
> > Acked-by: Mike Travis <mike.travis@hpe.com>
> > ---
> >  arch/x86/platform/uv/tlb_uv.c | 6 ++++++
> >  1 file changed, 6 insertions(+)
> > 
> > diff --git a/arch/x86/platform/uv/tlb_uv.c b/arch/x86/platform/uv/tlb_uv.c
> > index 2511a28..88216cc 100644
> > --- a/arch/x86/platform/uv/tlb_uv.c
> > +++ b/arch/x86/platform/uv/tlb_uv.c
> > @@ -2251,6 +2251,12 @@ static int __init uv_bau_init(void)
> >  	}
> >  
> >  	nuvhubs = uv_num_possible_blades();
> > +	if (nuvhubs < 2) {
> > +		pr_crit("UV: BAU disabled - insufficient hub count\n");
> > +		set_bau_off();
> > +		nobau_perm = 1;
> > +		return 0;
> > +	}
> 
> Yeah, could you structure the error paths in this function in a bit more organized 
> fashion? It has two similar error handling blocks:
> 
> 
>                 pr_crit("UV: BAU disabled - insufficient hub count\n");
>                 set_bau_off();
>                 nobau_perm = 1;
>                 return 0;
> 
> ...
> 
>                 set_bau_off();
>                 nobau_perm = 1;
>                 return 0;
> 
> which could be consolidated via the usual goto exception construct:
> 
> 	if (nuvhubs < 2) {
> 		pr_crit("UV: BAU disabled - insufficient hub count\n");
> 		goto err_disable_bau;
> 	}
> 	...
> 
>         if (init_per_cpu(nuvhubs, uv_base_pnode))
> 		pr_crit("UV: BAU disabled - per CPU init failed\n");
> 		goto err_disable_bau;
> 	}
> 
> 	...
> 	return 0;
> 
> err_disable_bau:
> 
> 	set_bau_off();
> 	nobau_perm = 1;
> 	return 0;
> 
> Note that I added an error message to the second case as well.
> 
> Plus, in the error case you might want to use a 'return -EINVAL;' instead of 
> return 0, or so?

I agree with your suggestions, and I'm happy to make the changes.

> 
> Plus plus, there's probably a (mild) memory leak in the error paths, can the 
> cpumasks be free_cpumask_var() freed - or are they still required even if BAU is 
> disabled?

In the case of nobau_perm=1 they can be freed. I will include that in the next
version.

> 
> Thanks,
> 
> 	Ingo

Thank you! I'll have the next version out shortly.

Andrew

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

* [PATCH v2] x86/platform/uv/BAU: disable BAU on single hub configurations
  2017-07-18 21:51 [PATCH] x86/platform/uv/BAU: disable BAU on single hub configurations Andrew Banman
  2017-07-20 11:47 ` Ingo Molnar
@ 2017-07-20 22:05 ` Andrew Banman
  2017-07-21  9:37   ` [tip:x86/urgent] x86/platform/uv/BAU: Disable " tip-bot for Andrew Banman
  1 sibling, 1 reply; 5+ messages in thread
From: Andrew Banman @ 2017-07-20 22:05 UTC (permalink / raw)
  To: mingo
  Cc: Andrew Banman, tglx, x86, linux-kernel, rja, mike.travis, tony.ernst

The BAU confers no benefit to a UV system running with only one hub/socket.
Permanently disable the BAU driver if there are less than two hubs online
to avoid BAU overhead. We have observed failed boots on single-socket UV4
systems caused by BAU that are avoided with this patch.

Version 2: Consolidate initialization error blocks with goto err_bau_disable
and free the per_cpu cpumasks to fix a memory leak.

Signed-off-by: Andrew Banman <abanman@hpe.com>
Acked-by: Russ Anderson <rja@hpe.com>
Acked-by: Mike Travis <mike.travis@hpe.com>
---
 arch/x86/platform/uv/tlb_uv.c | 21 ++++++++++++++++-----
 1 file changed, 16 insertions(+), 5 deletions(-)

diff --git a/arch/x86/platform/uv/tlb_uv.c b/arch/x86/platform/uv/tlb_uv.c
index 2511a28..e4a51a6 100644
--- a/arch/x86/platform/uv/tlb_uv.c
+++ b/arch/x86/platform/uv/tlb_uv.c
@@ -2245,13 +2245,17 @@ static int __init uv_bau_init(void)
 	else if (is_uv1_hub())
 		ops = uv1_bau_ops;
 
+	nuvhubs = uv_num_possible_blades();
+	if (nuvhubs < 2) {
+		pr_crit("UV: BAU disabled - insufficient hub count\n");
+		goto err_bau_disable;
+	}
+
 	for_each_possible_cpu(cur_cpu) {
 		mask = &per_cpu(uv_flush_tlb_mask, cur_cpu);
 		zalloc_cpumask_var_node(mask, GFP_KERNEL, cpu_to_node(cur_cpu));
 	}
 
-	nuvhubs = uv_num_possible_blades();
-
 	uv_base_pnode = 0x7fffffff;
 	for (uvhub = 0; uvhub < nuvhubs; uvhub++) {
 		cpus = uv_blade_nr_possible_cpus(uvhub);
@@ -2264,9 +2268,8 @@ static int __init uv_bau_init(void)
 		enable_timeouts();
 
 	if (init_per_cpu(nuvhubs, uv_base_pnode)) {
-		set_bau_off();
-		nobau_perm = 1;
-		return 0;
+		pr_crit("UV: BAU disabled - per CPU init failed\n");
+		goto err_bau_disable;
 	}
 
 	vector = UV_BAU_MESSAGE;
@@ -2292,6 +2295,14 @@ static int __init uv_bau_init(void)
 	}
 
 	return 0;
+
+err_bau_disable:
+	for_each_possible_cpu(cur_cpu) {
+		free_cpumask_var(per_cpu(uv_flush_tlb_mask, cur_cpu));
+	}
+	set_bau_off();
+	nobau_perm = 1;
+	return -EINVAL;
 }
 core_initcall(uv_bau_init);
 fs_initcall(uv_ptc_init);
-- 
1.8.2.1

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

* [tip:x86/urgent] x86/platform/uv/BAU: Disable BAU on single hub configurations
  2017-07-20 22:05 ` [PATCH v2] " Andrew Banman
@ 2017-07-21  9:37   ` tip-bot for Andrew Banman
  0 siblings, 0 replies; 5+ messages in thread
From: tip-bot for Andrew Banman @ 2017-07-21  9:37 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: peterz, tglx, linux-kernel, torvalds, mingo, hpa, mike.travis,
	rja, abanman

Commit-ID:  2fe9a5c6ade4dfb53ff1c137cca3828d9d1d0948
Gitweb:     http://git.kernel.org/tip/2fe9a5c6ade4dfb53ff1c137cca3828d9d1d0948
Author:     Andrew Banman <abanman@hpe.com>
AuthorDate: Thu, 20 Jul 2017 17:05:51 -0500
Committer:  Ingo Molnar <mingo@kernel.org>
CommitDate: Fri, 21 Jul 2017 09:56:25 +0200

x86/platform/uv/BAU: Disable BAU on single hub configurations

The BAU confers no benefit to a UV system running with only one hub/socket.
Permanently disable the BAU driver if there are less than two hubs online
to avoid BAU overhead. We have observed failed boots on single-socket UV4
systems caused by BAU that are avoided with this patch.

Also, while at it, consolidate initialization error blocks and fix a
memory leak.

Signed-off-by: Andrew Banman <abanman@hpe.com>
Acked-by: Russ Anderson <rja@hpe.com>
Acked-by: Mike Travis <mike.travis@hpe.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: tony.ernst@hpe.com
Link: http://lkml.kernel.org/r/1500588351-78016-1-git-send-email-abanman@hpe.com
[ Minor cleanups. ]
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
 arch/x86/platform/uv/tlb_uv.c | 23 ++++++++++++++++++-----
 1 file changed, 18 insertions(+), 5 deletions(-)

diff --git a/arch/x86/platform/uv/tlb_uv.c b/arch/x86/platform/uv/tlb_uv.c
index fd87591..3e4bdb4 100644
--- a/arch/x86/platform/uv/tlb_uv.c
+++ b/arch/x86/platform/uv/tlb_uv.c
@@ -2221,13 +2221,17 @@ static int __init uv_bau_init(void)
 	else if (is_uv1_hub())
 		ops = uv1_bau_ops;
 
+	nuvhubs = uv_num_possible_blades();
+	if (nuvhubs < 2) {
+		pr_crit("UV: BAU disabled - insufficient hub count\n");
+		goto err_bau_disable;
+	}
+
 	for_each_possible_cpu(cur_cpu) {
 		mask = &per_cpu(uv_flush_tlb_mask, cur_cpu);
 		zalloc_cpumask_var_node(mask, GFP_KERNEL, cpu_to_node(cur_cpu));
 	}
 
-	nuvhubs = uv_num_possible_blades();
-
 	uv_base_pnode = 0x7fffffff;
 	for (uvhub = 0; uvhub < nuvhubs; uvhub++) {
 		cpus = uv_blade_nr_possible_cpus(uvhub);
@@ -2240,9 +2244,8 @@ static int __init uv_bau_init(void)
 		enable_timeouts();
 
 	if (init_per_cpu(nuvhubs, uv_base_pnode)) {
-		set_bau_off();
-		nobau_perm = 1;
-		return 0;
+		pr_crit("UV: BAU disabled - per CPU init failed\n");
+		goto err_bau_disable;
 	}
 
 	vector = UV_BAU_MESSAGE;
@@ -2268,6 +2271,16 @@ static int __init uv_bau_init(void)
 	}
 
 	return 0;
+
+err_bau_disable:
+
+	for_each_possible_cpu(cur_cpu)
+		free_cpumask_var(per_cpu(uv_flush_tlb_mask, cur_cpu));
+
+	set_bau_off();
+	nobau_perm = 1;
+
+	return -EINVAL;
 }
 core_initcall(uv_bau_init);
 fs_initcall(uv_ptc_init);

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

end of thread, other threads:[~2017-07-21  9:42 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-18 21:51 [PATCH] x86/platform/uv/BAU: disable BAU on single hub configurations Andrew Banman
2017-07-20 11:47 ` Ingo Molnar
2017-07-20 18:50   ` Andrew Banman
2017-07-20 22:05 ` [PATCH v2] " Andrew Banman
2017-07-21  9:37   ` [tip:x86/urgent] x86/platform/uv/BAU: Disable " tip-bot for Andrew Banman

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

Powered by JetHome