diff options
author | mjacob <mjacob@FreeBSD.org> | 2010-05-02 22:48:27 +0000 |
---|---|---|
committer | mjacob <mjacob@FreeBSD.org> | 2010-05-02 22:48:27 +0000 |
commit | 5bdbfdef5238d07cbc7c88c8cd59830932c96624 (patch) | |
tree | d0ebabdd4d1076a2ca2d3f69a864fddd234577df | |
parent | 205f9143e605ffd0bbeb8faccad2186ea32a245d (diff) | |
download | FreeBSD-src-5bdbfdef5238d07cbc7c88c8cd59830932c96624.zip FreeBSD-src-5bdbfdef5238d07cbc7c88c8cd59830932c96624.tar.gz |
Print IR_RESYNC updates informatively.
Obtained from: pluknet
MFC after: 1 week
-rw-r--r-- | sys/dev/mpt/mpt_cam.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/dev/mpt/mpt_cam.c b/sys/dev/mpt/mpt_cam.c index 56ea3e0..39b57de 100644 --- a/sys/dev/mpt/mpt_cam.c +++ b/sys/dev/mpt/mpt_cam.c @@ -2575,6 +2575,10 @@ mpt_cam_event(struct mpt_softc *mpt, request_t *req, CAMLOCK_2_MPTLOCK(mpt); break; } + case MPI_EVENT_IR_RESYNC_UPDATE: + mpt_prt(mpt, "IR resync update %d completed\n", + (data0 >> 16) & 0xff); + break; case MPI_EVENT_EVENT_CHANGE: case MPI_EVENT_INTEGRATED_RAID: case MPI_EVENT_SAS_DEVICE_STATUS_CHANGE: |