svn commit: r279968 - head/usr.sbin/bhyve

Alexander Motin mav at FreeBSD.org
Fri Mar 13 21:01:26 UTC 2015


Author: mav
Date: Fri Mar 13 21:01:25 2015
New Revision: 279968
URL: https://svnweb.freebsd.org/changeset/base/279968

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

Modified:
  head/usr.sbin/bhyve/pci_ahci.c

Modified: head/usr.sbin/bhyve/pci_ahci.c
==============================================================================
--- head/usr.sbin/bhyve/pci_ahci.c	Fri Mar 13 20:56:17 2015	(r279967)
+++ head/usr.sbin/bhyve/pci_ahci.c	Fri Mar 13 21:01:25 2015	(r279968)
@@ -1682,8 +1682,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-head mailing list