From: Kevin Wolf <kwolf@redhat.com>
To: Markus Armbruster <armbru@redhat.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>,
qemu-devel@nongnu.org, qemu-block@nongnu.org, mreitz@redhat.com
Subject: Re: [Qemu-devel] [PATCH] cpus: Fix event order on resume of stopped guest
Date: Mon, 23 Apr 2018 18:24:24 +0200 [thread overview]
Message-ID: <20180423162424.GF6630@localhost.localdomain> (raw)
In-Reply-To: <87604ilybv.fsf@dusky.pond.sub.org>
Am 23.04.2018 um 17:47 hat Markus Armbruster geschrieben:
> Kevin Wolf <kwolf@redhat.com> writes:
>
> > Am 23.04.2018 um 10:45 hat Markus Armbruster geschrieben:
> >> When resume of a stopped guest immediately runs into block device
> >> errors, the BLOCK_IO_ERROR event is sent before the RESUME event.
> >>
> >> Reproducer:
> >>
> >> 1. Create a scratch image
> >> $ dd if=/dev/zero of=scratch.img bs=1M count=100
> >>
> >> Size doesn't actually matter.
> >>
> >> 2. Prepare blkdebug configuration:
> >>
> >> $ cat >blkdebug.conf <<EOF
> >> [inject-error]
> >> event = "write_aio"
> >> errno = "5"
> >> EOF
> >>
> >> Note that errno 5 is EIO.
> >>
> >> 3. Run a guest with an additional scratch disk, i.e. with additional
> >> arguments
> >> -drive if=none,id=scratch-drive,format=raw,werror=stop,file=blkdebug:blkdebug.conf:scratch.img
> >> -device virtio-blk-pci,id=scratch,drive=scratch-drive
> >>
> >> The blkdebug part makes all writes to the scratch drive fail with
> >> EIO. The werror=stop pauses the guest on write errors.
> >>
> >> 4. Connect to the QMP socket e.g. like this:
> >> $ socat UNIX:/your/qmp/socket READLINE,history=$HOME/.qmp_history,prompt='QMP> '
> >>
> >> Issue QMP command 'qmp_capabilities':
> >> QMP> { "execute": "qmp_capabilities" }
> >>
> >> 5. Boot the guest.
> >>
> >> 6. In the guest, write to the scratch disk, e.g. like this:
> >>
> >> # dd if=/dev/zero of=/dev/vdb count=1
> >>
> >> Do double-check the device specified with of= is actually the
> >> scratch device!
> >>
> >> 7. Issue QMP command 'cont':
> >> QMP> { "execute": "cont" }
> >>
> >> After step 6, I get a BLOCK_IO_ERROR event followed by a STOP event. Good.
> >>
> >> After step 7, I get BLOCK_IO_ERROR, then RESUME, then STOP. Not so
> >> good; I'd expect RESUME, then BLOCK_IO_ERROR, then STOP.
> >
> > Do you want to rephrase this in the form of a script for qemu-iotests?
> >
> > I suppose the 'dd' line can be replaced by a 'qemu-io' monitor command.
>
> Makes sense, but I'm quite pretty much a noob there. Perhaps I can copy
> an existing test and hack it up. Which one would you recommend?
Depends on how much control you actually need for this test. At first
sight, it might be enough to copy one of the tests implementing a
run_qemu() function. These are tests that do essentially this:
qemu-system-x86_64 -qmp stdio <<EOF
...commands here....
EOF
This is all you need if you don't have a reason to wait for or even
parse QMP results. (The results end up in stdout, so they are validated
with the usual diffing.)
If you need a bit more, copy one of the tests that use ./common.qemu.
This is a bit more complex but allows you to wait for expected QMP
results before you continue with the next action. Probably you don't
need this here.
(And if even that is not powerful enough, Python test cases with
iotests.py are what you want. Almost certainly overkill for this one.)
Kevin
next prev parent reply other threads:[~2018-04-23 16:24 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-04-23 8:45 [Qemu-devel] [PATCH] cpus: Fix event order on resume of stopped guest Markus Armbruster
2018-04-23 12:13 ` Paolo Bonzini
2018-04-23 13:02 ` Kevin Wolf
2018-04-23 15:47 ` Markus Armbruster
2018-04-23 16:24 ` Kevin Wolf [this message]
2018-05-03 12:17 ` Markus Armbruster
2018-05-03 12:26 ` Kevin Wolf
2018-05-03 12:50 ` Markus Armbruster
2018-05-03 12:47 ` Paolo Bonzini
2018-05-03 14:38 ` Markus Armbruster
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180423162424.GF6630@localhost.localdomain \
--to=kwolf@redhat.com \
--cc=armbru@redhat.com \
--cc=mreitz@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).