svn commit: r209732 - stable/8/sys/net

Bjoern A. Zeeb bz at FreeBSD.org
Tue Jul 6 16:58:25 UTC 2010


Author: bz
Date: Tue Jul  6 16:58:24 2010
New Revision: 209732
URL: http://svn.freebsd.org/changeset/base/209732

Log:
  MFC r207303 (originally by kmacy):
  
    need to initialize the lock before it is used
  
  Reported on:	stable@ (MFC missing)

Modified:
  stable/8/sys/net/flowtable.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)

Modified: stable/8/sys/net/flowtable.c
==============================================================================
--- stable/8/sys/net/flowtable.c	Tue Jul  6 16:56:27 2010	(r209731)
+++ stable/8/sys/net/flowtable.c	Tue Jul  6 16:58:24 2010	(r209732)
@@ -1626,7 +1626,7 @@ flowtable_init(const void *unused __unus
 	    EVENTHANDLER_PRI_ANY);
 	flowclean_freq = 20*hz;
 }
-SYSINIT(flowtable_init, SI_SUB_SMP, SI_ORDER_MIDDLE,
+SYSINIT(flowtable_init, SI_SUB_KTHREAD_INIT, SI_ORDER_FIRST,
     flowtable_init, NULL);
 
 


More information about the svn-src-stable-8 mailing list