qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 15/28] ide: stop PIO transfer on errors


From: Stefan Hajnoczi
Subject: Re: [Qemu-devel] [PATCH 15/28] ide: stop PIO transfer on errors
Date: Thu, 31 Jul 2014 13:23:36 +0100
User-agent: Mutt/1.5.23 (2014-03-12)

On Mon, Jul 07, 2014 at 02:17:56PM -0400, John Snow wrote:
> From: Paolo Bonzini <address@hidden>
> 
> This will provide a hook for sending the result of the command via the
> FIS receive area.
> 
> Signed-off-by: Paolo Bonzini <address@hidden>
> Signed-off-by: John Snow <address@hidden>
> ---
>  hw/ide/core.c | 7 ++++---
>  1 file changed, 4 insertions(+), 3 deletions(-)
> 
> diff --git a/hw/ide/core.c b/hw/ide/core.c
> index bd3bd34..d900ba0 100644
> --- a/hw/ide/core.c
> +++ b/hw/ide/core.c
> @@ -422,6 +422,9 @@ static inline void ide_abort_command(IDEState *s)
>  {
>      s->status = READY_STAT | ERR_STAT;
>      s->error = ABRT_ERR;
> +    if (s->end_transfer_func != ide_transfer_stop) {
> +        ide_transfer_stop(s);
> +    }
>  }

I don't understand this.

ide_transfer_stop() sets s->send_transfer_func = ide_transfer_stop.
This has the side-effect of making ide_is_pio_out() return true (not
sure if that poses a problem).

Why can't we call ide_transfer_stop() when s->end_transfer_func ==
ide_transfer_stop?

Stefan

Attachment: pgp7Sc6xBrjPT.pgp
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]