qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Stefan Hajnoczi <stefanha@redhat.com>
To: John Snow <jsnow@redhat.com>
Cc: kwolf@redhat.com, mst@redhat.com, armbru@redhat.com,
	qemu-devel@nongnu.org, mreitz@redhat.com, pbonzini@redhat.com
Subject: Re: [Qemu-devel] [PATCH v3 16/17] ahci: Recompute cur_cmd on migrate post load
Date: Mon, 23 Feb 2015 14:56:10 +0000	[thread overview]
Message-ID: <20150223145610.GM27533@stefanha-thinkpad.redhat.com> (raw)
In-Reply-To: <1423592369-20197-17-git-send-email-jsnow@redhat.com>

[-- Attachment #1: Type: text/plain, Size: 853 bytes --]

On Tue, Feb 10, 2015 at 01:19:28PM -0500, John Snow wrote:
> diff --git a/hw/ide/ahci.c b/hw/ide/ahci.c
> index 56a4867..5a1973f 100644
> --- a/hw/ide/ahci.c
> +++ b/hw/ide/ahci.c
> @@ -1376,6 +1376,11 @@ static int ahci_state_post_load(void *opaque, int version_id)
>           */
>          if (ad->busy_slot == -1) {
>              check_cmd(s, i);
> +        } else {
> +            /* We are in the middle of a command, and may need to access
> +             * the command header in guest memory again. */
> +            assert(ad->busy_slot >= 0 && ad->busy_slot < AHCI_MAX_CMDS);
> +            ad->cur_cmd = &((AHCICmdHdr *)ad->lst)[ad->busy_slot];
>          }

Assertion failures call abort(3) and therefore cause core dumps, which
is not a suitable way of rejecting invalid inputs.

post_load() functions should return -1 on failure.

Stefan

[-- Attachment #2: Type: application/pgp-signature, Size: 473 bytes --]

  reply	other threads:[~2015-02-23 14:56 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-02-10 18:19 [Qemu-devel] [PATCH v3 00/17] ide: rerror/werror migration fixes for IDE/ISA and AHCI John Snow
2015-02-10 18:19 ` [Qemu-devel] [PATCH v3 01/17] ide: start extracting ide_restart_dma out of bmdma_restart_dma John Snow
2015-02-10 18:19 ` [Qemu-devel] [PATCH v3 02/17] ide: prepare to move restart to common code John Snow
2015-02-10 18:19 ` [Qemu-devel] [PATCH v3 03/17] ide: introduce ide_register_restart_cb John Snow
2015-02-10 18:19 ` [Qemu-devel] [PATCH v3 04/17] ide: do not use BMDMA in restart callback John Snow
2015-02-10 18:19 ` [Qemu-devel] [PATCH v3 05/17] ide: pass IDEBus to the restart_cb John Snow
2015-02-10 18:19 ` [Qemu-devel] [PATCH v3 06/17] ide: move restart callback to common code John Snow
2015-02-10 18:19 ` [Qemu-devel] [PATCH v3 07/17] ide: remove restart_cb callback John Snow
2015-02-10 18:19 ` [Qemu-devel] [PATCH v3 08/17] ide: replace set_unit callback with more IDEBus state John Snow
2015-02-10 18:19 ` [Qemu-devel] [PATCH v3 09/17] ide: place initial state of the current request to IDEBus John Snow
2015-02-10 18:19 ` [Qemu-devel] [PATCH v3 10/17] ide: migrate initial request state via IDEBus John Snow
2015-02-10 18:19 ` [Qemu-devel] [PATCH v3 11/17] ide: commonize io_buffer_index initialization John Snow
2015-02-10 18:19 ` [Qemu-devel] [PATCH v3 12/17] ide: make more functions static John Snow
2015-02-10 18:19 ` [Qemu-devel] [PATCH v3 13/17] ide: support PIO restart for the ISA controller John Snow
2015-02-10 18:19 ` [Qemu-devel] [PATCH v3 14/17] ahci: Migrate IDEStatus John Snow
2015-02-10 18:19 ` [Qemu-devel] [PATCH v3 15/17] ahci: add support for restarting non-queued commands John Snow
2015-02-10 18:19 ` [Qemu-devel] [PATCH v3 16/17] ahci: Recompute cur_cmd on migrate post load John Snow
2015-02-23 14:56   ` Stefan Hajnoczi [this message]
2015-02-10 18:19 ` [Qemu-devel] [PATCH v3 17/17] qtest/ide: Test flush / retry for ISA and PCI John Snow

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=20150223145610.GM27533@stefanha-thinkpad.redhat.com \
    --to=stefanha@redhat.com \
    --cc=armbru@redhat.com \
    --cc=jsnow@redhat.com \
    --cc=kwolf@redhat.com \
    --cc=mreitz@redhat.com \
    --cc=mst@redhat.com \
    --cc=pbonzini@redhat.com \
    --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).