[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH 14/16] ahci: Do not map cmd_fis to generate resp
From: |
Stefan Hajnoczi |
Subject: |
Re: [Qemu-devel] [PATCH 14/16] ahci: Do not map cmd_fis to generate response |
Date: |
Fri, 26 Jun 2015 16:59:49 +0100 |
User-agent: |
Mutt/1.5.23 (2014-03-12) |
On Mon, Jun 22, 2015 at 08:21:13PM -0400, John Snow wrote:
> @@ -744,8 +722,8 @@ static void ahci_write_fis_pio(AHCIDevice *ad, uint16_t
> len)
> pio_fis[9] = s->hob_lcyl;
> pio_fis[10] = s->hob_hcyl;
> pio_fis[11] = 0;
> - pio_fis[12] = cmd_fis[12];
> - pio_fis[13] = cmd_fis[13];
> + pio_fis[12] = s->nsector & 0xFF;
> + pio_fis[13] = (s->nsector >> 8) & 0xFF;
hw/ide/core.c decreases s->nsector until it reaches 0 and the request
ends.
Will the values reported back to the guest be correct if we use
s->nsector?
pgpP9KbO_UJs4.pgp
Description: PGP signature
[Qemu-devel] [PATCH 16/16] ahci: fix sdb fis semantics, John Snow, 2015/06/22
Re: [Qemu-devel] [PATCH 00/16] ahci: ncq cleanup, part 2, Stefan Hajnoczi, 2015/06/26