summaryrefslogtreecommitdiffstats
path: root/usr.sbin
diff options
context:
space:
mode:
authormav <mav@FreeBSD.org>2015-03-27 08:44:58 +0000
committermav <mav@FreeBSD.org>2015-03-27 08:44:58 +0000
commit0bcdb239fd888fc3974d7920aaa015137b280cd7 (patch)
tree4c0b64aaed5e01f54387ce8f547bacd5437bd15d /usr.sbin
parentf96653efd877c4f04bc148934801b26221f2e365 (diff)
downloadFreeBSD-src-0bcdb239fd888fc3974d7920aaa015137b280cd7.zip
FreeBSD-src-0bcdb239fd888fc3974d7920aaa015137b280cd7.tar.gz
MFC r279967: Change prdbc value reporting.
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/bhyve/pci_ahci.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/usr.sbin/bhyve/pci_ahci.c b/usr.sbin/bhyve/pci_ahci.c
index c7a8fd5..8b65510 100644
--- a/usr.sbin/bhyve/pci_ahci.c
+++ b/usr.sbin/bhyve/pci_ahci.c
@@ -1663,6 +1663,9 @@ ata_ioreq_cb(struct blockif_req *br, int err)
*/
STAILQ_INSERT_TAIL(&p->iofhd, aior, io_flist);
+ if (!err)
+ hdr->prdbc = aior->done;
+
if (dsm) {
if (aior->done != aior->len && !err) {
ahci_handle_dsm_trim(p, slot, cfis, aior->done);
@@ -1678,13 +1681,8 @@ ata_ioreq_cb(struct blockif_req *br, int err)
if (!err && aior->done == aior->len) {
tfd = ATA_S_READY | ATA_S_DSC;
- if (ncq)
- hdr->prdbc = 0;
- else
- hdr->prdbc = aior->len;
} else {
tfd = (ATA_E_ABORT << 8) | ATA_S_READY | ATA_S_ERROR;
- hdr->prdbc = 0;
if (ncq)
p->serr |= (1 << slot);
}
@@ -1739,6 +1737,9 @@ atapi_ioreq_cb(struct blockif_req *br, int err)
*/
STAILQ_INSERT_TAIL(&p->iofhd, aior, io_flist);
+ if (!err)
+ hdr->prdbc = aior->done;
+
if (pending && !err) {
atapi_read(p, slot, cfis, aior->done, hdr->prdtl - pending);
goto out;
@@ -1746,12 +1747,10 @@ atapi_ioreq_cb(struct blockif_req *br, int err)
if (!err && aior->done == aior->len) {
tfd = ATA_S_READY | ATA_S_DSC;
- hdr->prdbc = aior->len;
} else {
p->sense_key = ATA_SENSE_ILLEGAL_REQUEST;
p->asc = 0x21;
tfd = (p->sense_key << 12) | ATA_S_READY | ATA_S_ERROR;
- hdr->prdbc = 0;
}
cfis[4] = (cfis[4] & ~7) | ATA_I_CMD | ATA_I_IN;
OpenPOWER on IntegriCloud