svn commit: r195408 - projects/mesh11s/sys/net80211

Rui Paulo rpaulo at FreeBSD.org
Mon Jul 6 14:15:17 UTC 2009


Author: rpaulo
Date: Mon Jul  6 14:15:12 2009
New Revision: 195408
URL: http://svn.freebsd.org/changeset/base/195408

Log:
  Make sure we run the init function after the init function for mesh.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  projects/mesh11s/sys/net80211/ieee80211_hwmp.c

Modified: projects/mesh11s/sys/net80211/ieee80211_hwmp.c
==============================================================================
--- projects/mesh11s/sys/net80211/ieee80211_hwmp.c	Mon Jul  6 14:02:27 2009	(r195407)
+++ projects/mesh11s/sys/net80211/ieee80211_hwmp.c	Mon Jul  6 14:15:12 2009	(r195408)
@@ -202,7 +202,7 @@ ieee80211_hwmp_init(void)
 	 */
 	ieee80211_mesh_register_proto_path(&mesh_proto_hwmp);
 }
-SYSINIT(wlan_hwmp, SI_SUB_DRIVERS, SI_ORDER_FIRST, ieee80211_hwmp_init, NULL);
+SYSINIT(wlan_hwmp, SI_SUB_DRIVERS, SI_ORDER_SECOND, ieee80211_hwmp_init, NULL);
 
 void
 hwmp_vattach(struct ieee80211vap *vap)


More information about the svn-src-projects mailing list