svn commit: r209282 - stable/8/sys/dev/mpt

Matt Jacob mjacob at FreeBSD.org
Fri Jun 18 04:51:18 UTC 2010


Author: mjacob
Date: Fri Jun 18 04:51:17 2010
New Revision: 209282
URL: http://svn.freebsd.org/changeset/base/209282

Log:
  This is an MFC of 207543
  
  Print IR_RESYNC updates informatively.
  
  Obtained from:	pluknet

Modified:
  stable/8/sys/dev/mpt/mpt_cam.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)
  stable/8/sys/geom/sched/   (props changed)

Modified: stable/8/sys/dev/mpt/mpt_cam.c
==============================================================================
--- stable/8/sys/dev/mpt/mpt_cam.c	Fri Jun 18 04:45:06 2010	(r209281)
+++ stable/8/sys/dev/mpt/mpt_cam.c	Fri Jun 18 04:51:17 2010	(r209282)
@@ -2575,6 +2575,10 @@ mpt_cam_event(struct mpt_softc *mpt, 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:


More information about the svn-src-all mailing list