[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-stable] [PATCH v6 8/8] iotests: Use event_wait in wait_ready
From: |
Paolo Bonzini |
Subject: |
Re: [Qemu-stable] [PATCH v6 8/8] iotests: Use event_wait in wait_ready |
Date: |
Thu, 28 May 2015 10:30:12 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 |
On 28/05/2015 07:29, Fam Zheng wrote:
> Only poll the specific type of event we are interested in, to avoid
> stealing events that should be consumed by someone else.
>
> Suggested-by: John Snow <address@hidden>
> Signed-off-by: Fam Zheng <address@hidden>
> Reviewed-by: John Snow <address@hidden>
> ---
> tests/qemu-iotests/iotests.py | 9 ++-------
> 1 file changed, 2 insertions(+), 7 deletions(-)
>
> diff --git a/tests/qemu-iotests/iotests.py b/tests/qemu-iotests/iotests.py
> index 63de726..8615b10 100644
> --- a/tests/qemu-iotests/iotests.py
> +++ b/tests/qemu-iotests/iotests.py
> @@ -328,13 +328,8 @@ class QMPTestCase(unittest.TestCase):
>
> def wait_ready(self, drive='drive0'):
> '''Wait until a block job BLOCK_JOB_READY event'''
> - ready = False
> - while not ready:
> - for event in self.vm.get_qmp_events(wait=True):
> - if event['event'] == 'BLOCK_JOB_READY':
> - self.assert_qmp(event, 'data/type', 'mirror')
> - self.assert_qmp(event, 'data/device', drive)
> - ready = True
> + f = {'data': {'type': 'mirror', 'device': drive } }
> + event = self.vm.event_wait(name='BLOCK_JOB_READY', match=f)
>
> def wait_ready_and_cancel(self, drive='drive0'):
> self.wait_ready(drive=drive)
>
Reviewed-by: Paolo Bonzini <address@hidden>
- [Qemu-stable] [PATCH v6 2/8] qmp: Add optional bool "unmap" to drive-mirror, (continued)
- [Qemu-stable] [PATCH v6 2/8] qmp: Add optional bool "unmap" to drive-mirror, Fam Zheng, 2015/05/28
- [Qemu-stable] [PATCH v6 3/8] mirror: Do zero write on target if sectors not allocated, Fam Zheng, 2015/05/28
- [Qemu-stable] [PATCH v6 4/8] block: Fix dirty bitmap in bdrv_co_discard, Fam Zheng, 2015/05/28
- [Qemu-stable] [PATCH v6 5/8] block: Remove bdrv_reset_dirty, Fam Zheng, 2015/05/28
- [Qemu-stable] [PATCH v6 7/8] qemu-iotests: Add test case for mirror with unmap, Fam Zheng, 2015/05/28
- [Qemu-stable] [PATCH v6 6/8] qemu-iotests: Make block job methods common, Fam Zheng, 2015/05/28
- [Qemu-stable] [PATCH v6 8/8] iotests: Use event_wait in wait_ready, Fam Zheng, 2015/05/28
- Re: [Qemu-stable] [PATCH v6 8/8] iotests: Use event_wait in wait_ready,
Paolo Bonzini <=