C_NCQ
if (!ISSET(xfer->c_flags, C_NCQ) ||
!ISSET(axfer->c_flags, C_NCQ) ||
const uint8_t drv_openings = ISSET(xfer->c_flags, C_NCQ)
if (ISSET(xfer->c_flags, C_NCQ))
if ((xfer->c_flags & C_NCQ) == 0) {
if (xfer && ISSET(xfer->c_flags, C_NCQ)) {
xfer->c_flags |= C_NCQ;
if ((xfer->c_flags & C_NCQ) == 0)
if (xfer->c_flags & C_NCQ)
if ((xfer->c_flags & C_NCQ) != 0) {
dmamode = (xfer->c_flags & C_NCQ) ? ncq : dma;
if ((xfer->c_flags & C_NCQ) != 0 && ata_bio->flags & ATA_READ)