Re: [Qemu-devel] [PATCH v2 1/3] numa: move numa global variable nb_numa_nodes into MachineState

2019-04-18 Thread Tao Xu
On 4/18/2019 10:26 PM, Eduardo Habkost wrote: On Thu, Apr 18, 2019 at 02:46:00PM +0800, Tao Xu wrote: The aim of this patch is to add struct NumaState in MachineState and move existing numa global nb_numa_nodes into NumaState. And add variable numa_support into MachineClass to decide which subma

Re: [Qemu-devel] [PATCH v2 1/3] numa: move numa global variable nb_numa_nodes into MachineState

2019-04-18 Thread Eduardo Habkost
On Thu, Apr 18, 2019 at 02:46:00PM +0800, Tao Xu wrote: > The aim of this patch is to add struct NumaState in MachineState > and move existing numa global nb_numa_nodes into NumaState. > And add variable numa_support into MachineClass to decide which > submachines support NUMA. > > Suggested-by: I

[Qemu-devel] [PATCH v2 1/3] numa: move numa global variable nb_numa_nodes into MachineState

2019-04-17 Thread Tao Xu
The aim of this patch is to add struct NumaState in MachineState and move existing numa global nb_numa_nodes into NumaState. And add variable numa_support into MachineClass to decide which submachines support NUMA. Suggested-by: Igor Mammedov Suggested-by: Eduardo Habkost Signed-off-by: Tao Xu