diff options
author | smh <smh@FreeBSD.org> | 2014-07-30 18:21:06 +0000 |
---|---|---|
committer | smh <smh@FreeBSD.org> | 2014-07-30 18:21:06 +0000 |
commit | cbd981b419c23b29367c53ad9b75d3a2bb30c1e4 (patch) | |
tree | b06cf453ea9ba4be438aebdb7feb5a4466df51fb /sys/dev/mps/mps.c | |
parent | 9af66cbda234ef1061db94471badefecc48db86c (diff) | |
download | FreeBSD-src-cbd981b419c23b29367c53ad9b75d3a2bb30c1e4.zip FreeBSD-src-cbd981b419c23b29367c53ad9b75d3a2bb30c1e4.tar.gz |
Bring in LSI's phase19 changes
* Removed unused mpssas_discovery_timeout function.
* Don't alter mapping boundaries if not raid firmware.
* Check free_busaddr instead of post_busaddr (diff minimisation really)
MFC after: 2 weeks
Diffstat (limited to 'sys/dev/mps/mps.c')
-rw-r--r-- | sys/dev/mps/mps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/mps/mps.c b/sys/dev/mps/mps.c index 149e576..403a4d2 100644 --- a/sys/dev/mps/mps.c +++ b/sys/dev/mps/mps.c @@ -610,7 +610,7 @@ mps_iocfacts_free(struct mps_softc *sc) mps_dprint(sc, MPS_TRACE, "%s\n", __func__); - if (sc->post_busaddr != 0) + if (sc->free_busaddr != 0) bus_dmamap_unload(sc->queues_dmat, sc->queues_map); if (sc->free_queue != NULL) bus_dmamem_free(sc->queues_dmat, sc->free_queue, |