Re: [PATCH v2 3/4] x86/traps: split code to dump execution state to a separate helper

2025-05-22 Thread Jan Beulich
On 22.05.2025 09:54, Roger Pau Monne wrote: > --- a/xen/arch/x86/traps.c > +++ b/xen/arch/x86/traps.c > @@ -714,13 +714,15 @@ static cpumask_t show_state_mask; > static bool opt_show_all; > boolean_param("async-show-all", opt_show_all); > > +static bool force_show_all; > + > static int cf_chec

[PATCH v2 3/4] x86/traps: split code to dump execution state to a separate helper

2025-05-22 Thread Roger Pau Monne
Split the code that triggers remote CPUs to dump stacks into a separate function. Also introduce a parameter that can be set by the caller of the newly introduced function to force CPUs to dump the full stack, rather than just dumping the current function name. No functional change intended. Sig