svn commit: r280735 - stable/10/usr.sbin/bhyve

Alexander Motin mav at FreeBSD.org
Fri Mar 27 08:46:13 UTC 2015


Author: mav
Date: Fri Mar 27 08:46:12 2015
New Revision: 280735
URL: https://svnweb.freebsd.org/changeset/base/280735

Log:
  MFC r279968: Remove incorrect SERR register setting.
  
  At this point we have nothing to report through that register.

Modified:
  stable/10/usr.sbin/bhyve/pci_ahci.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/usr.sbin/bhyve/pci_ahci.c
==============================================================================
--- stable/10/usr.sbin/bhyve/pci_ahci.c	Fri Mar 27 08:44:58 2015	(r280734)
+++ stable/10/usr.sbin/bhyve/pci_ahci.c	Fri Mar 27 08:46:12 2015	(r280735)
@@ -1683,8 +1683,6 @@ ata_ioreq_cb(struct blockif_req *br, int
 		tfd = ATA_S_READY | ATA_S_DSC;
 	} else {
 		tfd = (ATA_E_ABORT << 8) | ATA_S_READY | ATA_S_ERROR;
-		if (ncq)
-			p->serr |= (1 << slot);
 	}
 
 	if (ncq) {


More information about the svn-src-all mailing list