adaasync(): Set ADA_STATE_WCACHE based on ADA_FLAG_CAN_WCACHE
The attached patch lets adaasync() set ADA_STATE_WCACHE based on ADA_FLAG_CAN_WCACHE instead of ADA_FLAG_CAN_RAHEAD. This fixes a regression introduced in r300207 which changed the flag names. PR: 220948 Submitted by: Fabian Keil <fk@fabiankeil.de> Obtained from: ElectroBSD MFC after: 1 week
This commit is contained in:
parent
223428af47
commit
1d9aaa862b
@ -1320,7 +1320,7 @@ adaasync(void *callback_arg, u_int32_t code,
|
||||
xpt_action((union ccb *)&cgd);
|
||||
if (ADA_RA >= 0 && softc->flags & ADA_FLAG_CAN_RAHEAD)
|
||||
softc->state = ADA_STATE_RAHEAD;
|
||||
else if (ADA_WC >= 0 && softc->flags & ADA_FLAG_CAN_RAHEAD)
|
||||
else if (ADA_WC >= 0 && softc->flags & ADA_FLAG_CAN_WCACHE)
|
||||
softc->state = ADA_STATE_WCACHE;
|
||||
else if ((softc->flags & ADA_FLAG_CAN_LOG)
|
||||
&& (softc->zone_mode != ADA_ZONE_NONE))
|
||||
|
Loading…
x
Reference in New Issue
Block a user