Re: [Qemu-devel] [PATCH v5] hmp: add info iothreads command

2015-08-05 Thread Markus Armbruster
Ting Wang writes: > Make "info iothreads" available on the HMP monitor. > > For example, the results are as follows when executing qemu > command with "-object iothread,id=iothread-1 -object > iothread,id=iothread-2". > (qemu) info iothreads > iothread-1: thread_id=123 > iothread-2: thread_id=45

Re: [Qemu-devel] [PATCH v5] hmp: add info iothreads command

2015-07-30 Thread Ting Wang
On 2015-7-31 0:05, Luiz Capitulino wrote: > On Fri, 26 Jun 2015 16:07:13 +0800 > Ting Wang wrote: > >> Make "info iothreads" available on the HMP monitor. >> >> For example, the results are as follows when executing qemu >> command with "-object iothread,id=iothread-1 -object >> iothread,id=ioth

Re: [Qemu-devel] [PATCH v5] hmp: add info iothreads command

2015-07-30 Thread Amos Jianjun Kong
On Fri, Jul 31, 2015 at 1:07 AM, Paolo Bonzini wrote: > > > On 30/07/2015 18:51, Amos Jianjun Kong wrote: >>> > +void hmp_info_iothreads(Monitor *mon, const QDict *qdict) >>> > +{ >>> > +IOThreadInfoList *info_list = qmp_query_iothreads(NULL); >>> > +IOThreadInfoList *info; >>> > + >>> > +

Re: [Qemu-devel] [PATCH v5] hmp: add info iothreads command

2015-07-30 Thread Paolo Bonzini
On 30/07/2015 18:51, Amos Jianjun Kong wrote: >> > +void hmp_info_iothreads(Monitor *mon, const QDict *qdict) >> > +{ >> > +IOThreadInfoList *info_list = qmp_query_iothreads(NULL); >> > +IOThreadInfoList *info; >> > + >> > +for (info = info_list; info; info = info->next) { >> > +

Re: [Qemu-devel] [PATCH v5] hmp: add info iothreads command

2015-07-30 Thread Amos Jianjun Kong
On Fri, Jun 26, 2015 at 4:07 PM, Ting Wang wrote: > Make "info iothreads" available on the HMP monitor. > > For example, the results are as follows when executing qemu > command with "-object iothread,id=iothread-1 -object > iothread,id=iothread-2". > (qemu) info iothreads > iothread-1: thread_id=

Re: [Qemu-devel] [PATCH v5] hmp: add info iothreads command

2015-07-30 Thread Luiz Capitulino
On Fri, 26 Jun 2015 16:07:13 +0800 Ting Wang wrote: > Make "info iothreads" available on the HMP monitor. > > For example, the results are as follows when executing qemu > command with "-object iothread,id=iothread-1 -object > iothread,id=iothread-2". > (qemu) info iothreads > iothread-1: threa

Re: [Qemu-devel] [PATCH v5] hmp: add info iothreads command

2015-07-05 Thread Ting Wang
On 2015-7-3 20:43, Markus Armbruster wrote: > Copying the HMP maintainer Luiz. You can feed your patch to > scripts/get_maintainer to find people to cc yourself. OK, thanks. Ting > > Ting Wang writes: > >> Make "info iothreads" available on the HMP monitor. >> >> For example, the results are as

Re: [Qemu-devel] [PATCH v5] hmp: add info iothreads command

2015-07-03 Thread Markus Armbruster
Copying the HMP maintainer Luiz. You can feed your patch to scripts/get_maintainer to find people to cc yourself. Ting Wang writes: > Make "info iothreads" available on the HMP monitor. > > For example, the results are as follows when executing qemu > command with "-object iothread,id=iothread-

[Qemu-devel] [PATCH v5] hmp: add info iothreads command

2015-06-26 Thread Ting Wang
Make "info iothreads" available on the HMP monitor. For example, the results are as follows when executing qemu command with "-object iothread,id=iothread-1 -object iothread,id=iothread-2". (qemu) info iothreads iothread-1: thread_id=123 iothread-2: thread_id=456 Signed-off-by: Ting Wang --- v5