View | Details | Raw Unified | Return to bug 220948
Collapse All | Expand All

(-)b/sys/cam/ata/ata_da.c (-2 / +1 lines)
Lines 1288-1294 adaasync(void *callback_arg, u_int32_t code, Link Here
1288
		xpt_action((union ccb *)&cgd);
1288
		xpt_action((union ccb *)&cgd);
1289
		if (ADA_RA >= 0 && softc->flags & ADA_FLAG_CAN_RAHEAD)
1289
		if (ADA_RA >= 0 && softc->flags & ADA_FLAG_CAN_RAHEAD)
1290
			softc->state = ADA_STATE_RAHEAD;
1290
			softc->state = ADA_STATE_RAHEAD;
1291
		else if (ADA_WC >= 0 && softc->flags & ADA_FLAG_CAN_RAHEAD)
1291
		else if (ADA_WC >= 0 && softc->flags & ADA_FLAG_CAN_WCACHE)
1292
			softc->state = ADA_STATE_WCACHE;
1292
			softc->state = ADA_STATE_WCACHE;
1293
		else if ((softc->flags & ADA_FLAG_CAN_LOG)
1293
		else if ((softc->flags & ADA_FLAG_CAN_LOG)
1294
		      && (softc->zone_mode != ADA_ZONE_NONE))
1294
		      && (softc->zone_mode != ADA_ZONE_NONE))
1295
- 

Return to bug 220948