Re: [Qemu-devel] [PATCH v3 1/3] Deprecate QMP `cpu-add`

2018-12-13 Thread Kashyap Chamarthy
On Thu, Dec 13, 2018 at 12:05:05PM +0100, Kashyap Chamarthy wrote: > On Thu, Dec 13, 2018 at 07:38:03AM +0100, Thomas Huth wrote: > > On 2018-10-30 13:35, Kashyap Chamarthy wrote: [...] > > > index 1b9c007f12..c86924ad9a 100644 > > > --- a/qemu-deprecated.texi > > > +++ b/qemu-deprecated.texi >

Re: [Qemu-devel] [PATCH v3 1/3] Deprecate QMP `cpu-add`

2018-12-13 Thread Kashyap Chamarthy
On Thu, Dec 13, 2018 at 07:38:03AM +0100, Thomas Huth wrote: > On 2018-10-30 13:35, Kashyap Chamarthy wrote: > > The intended functionality of QMP `cpu-add` is replaced with > > `device_add` (and `query-hotpluggable-cpus`). So let's deprecate > > `cpu-add`. > > > > A complete example of vCPU

Re: [Qemu-devel] [PATCH v3 1/3] Deprecate QMP `cpu-add`

2018-12-12 Thread Thomas Huth
On 2018-10-30 13:35, Kashyap Chamarthy wrote: > The intended functionality of QMP `cpu-add` is replaced with > `device_add` (and `query-hotpluggable-cpus`). So let's deprecate > `cpu-add`. > > A complete example of vCPU hotplug with the recommended way (using > `device_add`) is provided as part

Re: [Qemu-devel] [PATCH v3 1/3] Deprecate QMP `cpu-add`

2018-11-05 Thread Thomas Huth
On 2018-10-30 13:35, Kashyap Chamarthy wrote: > The intended functionality of QMP `cpu-add` is replaced with > `device_add` (and `query-hotpluggable-cpus`). So let's deprecate > `cpu-add`. > > A complete example of vCPU hotplug with the recommended way (using > `device_add`) is provided as part

[Qemu-devel] [PATCH v3 1/3] Deprecate QMP `cpu-add`

2018-10-30 Thread Kashyap Chamarthy
The intended functionality of QMP `cpu-add` is replaced with `device_add` (and `query-hotpluggable-cpus`). So let's deprecate `cpu-add`. A complete example of vCPU hotplug with the recommended way (using `device_add`) is provided as part of a seperate docs patch. Suggested-by: Eduardo Habkost