Re: [PATCH] Use QMP command object-add instead of object_add for memory hotplugin

2022-09-08 Thread Dr. David Alan Gilbert
* Markus Armbruster (arm...@redhat.com) wrote: > liuhaiwei9699 writes: > > > why the hmp using the object_add , qmp using the object-add command? > > can't we use the same command ? > > Command names differ between HMP and QMP for historical reasons. > > QMP is a stable interface, and changing

Re:Re: [PATCH] Use QMP command object-add instead of object_add for memory hotplugin

2022-09-08 Thread liuhaiwei9699
why the hmp using the object_add , qmp using the object-add command? can't we use the same command ? At 2022-09-08 19:41:33, "Markus Armbruster" wrote: >liuhaiwei writes: > >> From: liuhaiwei >> >> Signed-off-by: liuhaiwei >> --- >> docs/memory-hotplug.txt | 8 >> 1 f

[PATCH] Use QMP command object-add instead of object_add for memory hotplugin

2022-09-08 Thread liuhaiwei
From: liuhaiwei Signed-off-by: liuhaiwei --- docs/memory-hotplug.txt | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/memory-hotplug.txt b/docs/memory-hotplug.txt index 6aa5e17e26..85ed4d8f3d 100644 --- a/docs/memory-hotplug.txt +++ b/docs/memory-hotplug.txt @@ -

Re: [PATCH] Use QMP command object-add instead of object_add for memory hotplugin

2022-09-08 Thread Markus Armbruster
liuhaiwei9699 writes: > why the hmp using the object_add , qmp using the object-add command? > can't we use the same command ? Command names differ between HMP and QMP for historical reasons. QMP is a stable interface, and changing names there is no go. HMP is not a stable interface, but chan

Re: [PATCH] Use QMP command object-add instead of object_add for memory hotplugin

2022-09-08 Thread Markus Armbruster
liuhaiwei writes: > From: liuhaiwei > > Signed-off-by: liuhaiwei > --- > docs/memory-hotplug.txt | 8 > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/docs/memory-hotplug.txt b/docs/memory-hotplug.txt > index 6aa5e17e26..85ed4d8f3d 100644 > --- a/docs/memory-hotplug.