mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 01:33:56 -06:00
ahci: correct ncq sector count
uint16_t isn't enough to hold the real sector count, since a value of zero implies a full 64K sectors, so we need a uint32_t here. We *could* cheat and pretend that this value is 0-based and fit it in a uint16_t, but I'd rather waste 2 bytes instead of a future dev's 10 minutes when they forget to +1/-1 accordingly somewhere. See SATA 3.2, section 13.6.4.1 "READ FPDMA QUEUED". Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Message-id: 1435767578-32743-9-git-send-email-jsnow@redhat.com
This commit is contained in:
parent
9364384de0
commit
e08a98357b
2 changed files with 6 additions and 3 deletions
|
@ -256,7 +256,7 @@ typedef struct NCQTransferState {
|
|||
BlockAIOCB *aiocb;
|
||||
QEMUSGList sglist;
|
||||
BlockAcctCookie acct;
|
||||
uint16_t sector_count;
|
||||
uint32_t sector_count;
|
||||
uint64_t lba;
|
||||
uint8_t tag;
|
||||
uint8_t cmd;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue