Date: Sat, 2 May 2015 14:43:38 +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: r282344 - head/usr.sbin/bhyve Message-ID: <201505021443.t42EhcOx004777@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mav Date: Sat May 2 14:43:37 2015 New Revision: 282344 URL: https://svnweb.freebsd.org/changeset/base/282344 Log: Handle ATA_SEND_FPDMA_QUEUED as NCQ in ahci_port_stop(). MFC after: 1 week Modified: head/usr.sbin/bhyve/pci_ahci.c Modified: head/usr.sbin/bhyve/pci_ahci.c ============================================================================== --- head/usr.sbin/bhyve/pci_ahci.c Sat May 2 12:58:04 2015 (r282343) +++ head/usr.sbin/bhyve/pci_ahci.c Sat May 2 14:43:37 2015 (r282344) @@ -418,7 +418,8 @@ ahci_port_stop(struct ahci_port *p) slot = aior->slot; cfis = aior->cfis; if (cfis[2] == ATA_WRITE_FPDMA_QUEUED || - cfis[2] == ATA_READ_FPDMA_QUEUED) + cfis[2] == ATA_READ_FPDMA_QUEUED || + cfis[2] == ATA_SEND_FPDMA_QUEUED) ncq = 1; if (ncq)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505021443.t42EhcOx004777>