mirror of
https://github.com/opnsense/src.git
synced 2026-05-04 17:05:14 -04:00
Fix a mistake made in the MPSAFE commit that caused CAM to serialize requests
to the controller.
This commit is contained in:
parent
42f31cf9d0
commit
45650f529d
1 changed files with 2 additions and 1 deletions
|
|
@ -2491,7 +2491,8 @@ ciss_cam_init(struct ciss_softc *sc)
|
|||
if ((sc->ciss_cam_sim[i] = cam_sim_alloc(ciss_cam_action, ciss_cam_poll,
|
||||
"ciss", sc,
|
||||
device_get_unit(sc->ciss_dev),
|
||||
&sc->ciss_mtx, 1,
|
||||
&sc->ciss_mtx,
|
||||
sc->ciss_max_requests - 2,
|
||||
sc->ciss_max_requests - 2,
|
||||
sc->ciss_cam_devq)) == NULL) {
|
||||
ciss_printf(sc, "can't allocate CAM SIM for controller %d\n", i);
|
||||
|
|
|
|||
Loading…
Reference in a new issue