svn commit: r217349 - head/sys/dev/age

John Baldwin jhb at FreeBSD.org
Thu Jan 13 13:04:49 UTC 2011


Author: jhb
Date: Thu Jan 13 13:04:49 2011
New Revision: 217349
URL: http://svn.freebsd.org/changeset/base/217349

Log:
  Forgot to remove unlock of the driver lock from age_start_locked() when
  converting it to a locked variant.
  
  PR:		kern/153948

Modified:
  head/sys/dev/age/if_age.c

Modified: head/sys/dev/age/if_age.c
==============================================================================
--- head/sys/dev/age/if_age.c	Thu Jan 13 12:26:39 2011	(r217348)
+++ head/sys/dev/age/if_age.c	Thu Jan 13 13:04:49 2011	(r217349)
@@ -1760,8 +1760,6 @@ age_start_locked(struct ifnet *ifp)
 		/* Set a timeout in case the chip goes out to lunch. */
 		sc->age_watchdog_timer = AGE_TX_TIMEOUT;
 	}
-
-	AGE_UNLOCK(sc);
 }
 
 static void


More information about the svn-src-all mailing list