Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 13 Mar 2015 21:01:25 +0000 (UTC)
From:      Alexander Motin <mav@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r279968 - head/usr.sbin/bhyve
Message-ID:  <201503132101.t2DL1Ptv007621@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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) {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201503132101.t2DL1Ptv007621>