Re: [Xen-devel] [PATCH] x86: correct bogus error indicator of cpu_add()

2019-09-27 Thread Jürgen Groß
On 27.09.19 16:43, Jan Beulich wrote: Commit 54ce2db8b8 ("x86/numa: adjust datatypes for node and pxm") changed this from the -1 (i.e. -EPERM, which was already bogus) that comes back from setup_node() to NUMA_NO_NODE (0xff). Use a proper error indicator instead. Signed-off-by: Jan Beulich

Re: [Xen-devel] [PATCH] x86: correct bogus error indicator of cpu_add()

2019-09-27 Thread Andrew Cooper
On 27/09/2019 15:43, Jan Beulich wrote: > Commit 54ce2db8b8 ("x86/numa: adjust datatypes for node and pxm") > changed this from the -1 (i.e. -EPERM, which was already bogus) that > comes back from setup_node() to NUMA_NO_NODE (0xff). Use a proper error > indicator instead. > > Signed-off-by: Jan

[Xen-devel] [PATCH] x86: correct bogus error indicator of cpu_add()

2019-09-27 Thread Jan Beulich
Commit 54ce2db8b8 ("x86/numa: adjust datatypes for node and pxm") changed this from the -1 (i.e. -EPERM, which was already bogus) that comes back from setup_node() to NUMA_NO_NODE (0xff). Use a proper error indicator instead. Signed-off-by: Jan Beulich --- a/xen/arch/x86/smpboot.c +++