MFC r207303 (originally by kmacy):

need to initialize the lock before it is used

  Reported on:  stable@ (MFC missing)

Approved by:	re (kensmith)
This commit is contained in:
Bjoern A. Zeeb 2010-07-07 17:52:13 +00:00
parent f60b3c828b
commit a602ad9076

View File

@ -1626,7 +1626,7 @@ flowtable_init(const void *unused __unused)
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);