PERFORCE change 104432 for review

John Baldwin jhb at FreeBSD.org
Thu Aug 17 19:48:13 UTC 2006


http://perforce.freebsd.org/chv.cgi?CH=104432

Change 104432 by jhb at jhb_mutex on 2006/08/17 19:47:48

	During a LK_DRAIN, lockmgr() sleeps on &lkp->lk_flags rather than lkp,
	so add a check for that case.

Affected files ...

.. //depot/projects/smpng/sys/kern/kern_lock.c#55 edit

Differences ...

==== //depot/projects/smpng/sys/kern/kern_lock.c#55 (text+ko) ====

@@ -602,9 +602,22 @@
 	lkp = td->td_wchan;
 
 	/* Simple test to see if wchan points to a lockmgr lock. */
-	if (lkp->lk_wmesg != td->td_wmesg)
-		return (0);
+	if (lkp->lk_wmesg == td->td_wmesg)
+		goto ok;
+
+	/*
+	 * If this thread is doing a DRAIN, then it would be asleep on
+	 * &lkp->lk_flags rather than lkp.
+	 */
+	lkp = (struct lock *)((char *)td->td_wchan -
+	    offsetof(struct lock, lk_flags));
+	if (lkp->lk_wmesg == td->td_wmesg && (lkp->lk_flags & LK_WAITDRAIN))
+		goto ok;
+
+	/* Doen't seem to be a lockmgr lock. */
+	return (0);
 
+ok:
 	/* Ok, we think we have a lockmgr lock, so output some details. */
 	db_printf("blocked on lk \"%s\" ", lkp->lk_wmesg);
 	if (lkp->lk_sharecount) {


More information about the p4-projects mailing list