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

2015-06-25 Thread Ting Wang
On 2015-6-23 19:57, Markus Armbruster wrote: > Ting Wang writes: > >> Hi Luiz and Markus, >> >> Would you like to pick up this patch, which has >> been reviewed by Stefan and Fam? > > Looks like this fell through the cracks back in March. You should've > asked for merge much earlier. Pinging

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

2015-06-23 Thread Stefan Hajnoczi
On Tue, Jun 23, 2015 at 02:19:07PM +0200, Christian Borntraeger wrote: > Am 23.06.2015 um 13:57 schrieb Markus Armbruster: > > Ting Wang writes: > > > >> Hi Luiz and Markus, > >> > >> Would you like to pick up this patch, which has > >> been reviewed by Stefan and Fam? > > > > Looks like this fe

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

2015-06-23 Thread Luiz Capitulino
On Tue, 23 Jun 2015 13:57:08 +0200 Markus Armbruster wrote: > Ting Wang writes: > > > Hi Luiz and Markus, > > > > Would you like to pick up this patch, which has > > been reviewed by Stefan and Fam? > > Looks like this fell through the cracks back in March. You should've > asked for merge muc

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

2015-06-23 Thread Christian Borntraeger
Am 23.06.2015 um 14:19 schrieb Christian Borntraeger: > Am 23.06.2015 um 13:57 schrieb Markus Armbruster: >> Ting Wang writes: >> >>> Hi Luiz and Markus, >>> >>> Would you like to pick up this patch, which has >>> been reviewed by Stefan and Fam? >> >> Looks like this fell through the cracks back

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

2015-06-23 Thread Christian Borntraeger
Am 23.06.2015 um 13:57 schrieb Markus Armbruster: > Ting Wang writes: > >> Hi Luiz and Markus, >> >> Would you like to pick up this patch, which has >> been reviewed by Stefan and Fam? > > Looks like this fell through the cracks back in March. You should've > asked for merge much earlier. Ping

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

2015-06-23 Thread Markus Armbruster
Ting Wang writes: > Hi Luiz and Markus, > > Would you like to pick up this patch, which has > been reviewed by Stefan and Fam? Looks like this fell through the cracks back in March. You should've asked for merge much earlier. Pinging the maintainer after two weeks is fair. I just did a monito

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

2015-06-22 Thread Ting Wang
Hi Luiz and Markus, Would you like to pick up this patch, which has been reviewed by Stefan and Fam? Thanks. Ting On 2015-3-13 16:58, Ting Wang wrote: > Make "info iothreads" available on the HMP monitor. > > The results are as follows: > id1: thread_id=thread_id1 > id2: thread_id=thread_id2 >

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

2015-03-17 Thread Stefan Hajnoczi
On Fri, Mar 13, 2015 at 04:58:39PM +0800, Ting Wang wrote: > Make "info iothreads" available on the HMP monitor. > > The results are as follows: > id1: thread_id=thread_id1 > id2: thread_id=thread_id2 > > Signed-off-by: Ting Wang > --- > v4: use the PRId64 format specifier macro for the int64_t

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

2015-03-13 Thread Markus Armbruster
Fam Zheng writes: > On Fri, 03/13 02:16, Patchew Tool wrote: >> socket_accept failed: Resource temporarily unavailable >> ** >> ERROR:/var/tmp/patchew-test/git/tests/libqtest.c:192:qtest_init: >> assertion failed: (s->fd >= 0 && s->qmp_fd >= 0) >> GTester: last random seed: R02Sa6e2a5d48f79c1916f

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

2015-03-13 Thread Fam Zheng
On Fri, 03/13 02:16, Patchew Tool wrote: > socket_accept failed: Resource temporarily unavailable > ** > ERROR:/var/tmp/patchew-test/git/tests/libqtest.c:192:qtest_init: assertion > failed: (s->fd >= 0 && s->qmp_fd >= 0) > GTester: last random seed: R02Sa6e2a5d48f79c1916f52824e1b74ecc5 > socket_ac

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

2015-03-13 Thread Patchew Tool
This series failed Patchew automatic testing. Find the log fragments below (grepped lines around keywords "error" and "warning"), or open the following URL to see the full log: http://qemu.patchew.org/testing/log/<1426237119-110112-1-git-send-email-kathy.wangt...@huawei.com> --8<---

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

2015-03-13 Thread Fam Zheng
On Fri, 03/13 16:58, Ting Wang wrote: > Make "info iothreads" available on the HMP monitor. > > The results are as follows: > id1: thread_id=thread_id1 > id2: thread_id=thread_id2 > > Signed-off-by: Ting Wang > --- > v4: use the PRId64 format specifier macro for the int64_t thread_id > v3: fix c

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

2015-03-13 Thread Ting Wang
Make "info iothreads" available on the HMP monitor. The results are as follows: id1: thread_id=thread_id1 id2: thread_id=thread_id2 Signed-off-by: Ting Wang --- v4: use the PRId64 format specifier macro for the int64_t thread_id v3: fix comment and the trailing whitespace v2: add braces for if -