Re: [Qemu-devel] [PATCH v4 04/16] pc: forbid BSP removal

2016-07-15 Thread Igor Mammedov
On Thu, 14 Jul 2016 14:54:53 -0300 Eduardo Habkost wrote: > On Thu, Jul 14, 2016 at 06:54:33PM +0200, Igor Mammedov wrote: > > BSP is assumed to always present in QEMU code, so > > untile that assumptions are gone, deny removal request. > > In another words QEMU won't support BSP hot-unplug. > >

Re: [Qemu-devel] [PATCH v4 04/16] pc: forbid BSP removal

2016-07-14 Thread Bandan Das
Eduardo Habkost writes: ... >> >> DeviceState *dev, Error **errp) >> >> { >> >> +int idx; >> >> HotplugHandlerClass *hhc; >> >> Error *local_err = NULL; >> >> PCMachineState *pcms = PC_MACHINE(hotplug_dev); >> >> >> >> +pc_find_cpu_sl

Re: [Qemu-devel] [PATCH v4 04/16] pc: forbid BSP removal

2016-07-14 Thread Eduardo Habkost
On Thu, Jul 14, 2016 at 02:16:39PM -0400, Bandan Das wrote: > Eduardo Habkost writes: > > > On Thu, Jul 14, 2016 at 06:54:33PM +0200, Igor Mammedov wrote: > >> BSP is assumed to always present in QEMU code, so > >> untile that assumptions are gone, deny removal request. > >> In another words QEMU

Re: [Qemu-devel] [PATCH v4 04/16] pc: forbid BSP removal

2016-07-14 Thread Bandan Das
Eduardo Habkost writes: > On Thu, Jul 14, 2016 at 06:54:33PM +0200, Igor Mammedov wrote: >> BSP is assumed to always present in QEMU code, so >> untile that assumptions are gone, deny removal request. >> In another words QEMU won't support BSP hot-unplug. >> >> Signed-off-by: Igor Mammedov >> -

Re: [Qemu-devel] [PATCH v4 04/16] pc: forbid BSP removal

2016-07-14 Thread Eduardo Habkost
On Thu, Jul 14, 2016 at 06:54:33PM +0200, Igor Mammedov wrote: > BSP is assumed to always present in QEMU code, so > untile that assumptions are gone, deny removal request. > In another words QEMU won't support BSP hot-unplug. > > Signed-off-by: Igor Mammedov > --- > hw/i386/pc.c | 7 +++ >

Re: [Qemu-devel] [PATCH v4 04/16] pc: forbid BSP removal

2016-07-14 Thread Bandan Das
Igor Mammedov writes: > BSP is assumed to always present in QEMU code, so > untile that assumptions are gone, deny removal request. > In another words QEMU won't support BSP hot-unplug. > > Signed-off-by: Igor Mammedov > --- > hw/i386/pc.c | 7 +++ > 1 file changed, 7 insertions(+) > > diff

[Qemu-devel] [PATCH v4 04/16] pc: forbid BSP removal

2016-07-14 Thread Igor Mammedov
BSP is assumed to always present in QEMU code, so untile that assumptions are gone, deny removal request. In another words QEMU won't support BSP hot-unplug. Signed-off-by: Igor Mammedov --- hw/i386/pc.c | 7 +++ 1 file changed, 7 insertions(+) diff --git a/hw/i386/pc.c b/hw/i386/pc.c index