Re: [Qemu-devel] [RFC 00/13] numa: add '-numa cpu' option

2017-01-20 Thread Igor Mammedov
On Wed, 18 Jan 2017 18:13:16 +0100 Igor Mammedov wrote: [...] > pc: cleanup: move smbios_set_cpuid() into pc_build_smbios() > pc: don't return cpu pointer from pc_new_cpu() as it's not needed > anymore > make possible_cpu_arch_ids() return const pointer Eduardo,

Re: [Qemu-devel] [RFC 00/13] numa: add '-numa cpu' option

2017-01-19 Thread Igor Mammedov
On Thu, 19 Jan 2017 09:45:11 + "Daniel P. Berrange" wrote: > On Wed, Jan 18, 2017 at 06:13:16PM +0100, Igor Mammedov wrote: > > > > Series introduces a new CLI option to allow mapping cpus to numa > > nodes using public properties [socket|core|thread]-ids instead of > >

Re: [Qemu-devel] [RFC 00/13] numa: add '-numa cpu' option

2017-01-19 Thread Eduardo Habkost
On Thu, Jan 19, 2017 at 09:45:11AM +, Daniel P. Berrange wrote: > On Wed, Jan 18, 2017 at 06:13:16PM +0100, Igor Mammedov wrote: > > > > Series introduces a new CLI option to allow mapping cpus to numa > > nodes using public properties [socket|core|thread]-ids instead of > > internal

Re: [Qemu-devel] [RFC 00/13] numa: add '-numa cpu' option

2017-01-19 Thread Daniel P. Berrange
On Wed, Jan 18, 2017 at 06:13:16PM +0100, Igor Mammedov wrote: > > Series introduces a new CLI option to allow mapping cpus to numa > nodes using public properties [socket|core|thread]-ids instead of > internal cpu-index and moving cpu<->node mapping from global bitmaps > to PCMachineState

[Qemu-devel] [RFC 00/13] numa: add '-numa cpu' option

2017-01-18 Thread Igor Mammedov
Series introduces a new CLI option to allow mapping cpus to numa nodes using public properties [socket|core|thread]-ids instead of internal cpu-index and moving cpu<->node mapping from global bitmaps to PCMachineState struct. It focuses on PC in RFC version to see if approach is suitable in