PERFORCE change 100024 for review

John Birrell jb at FreeBSD.org
Mon Jun 26 05:34:21 UTC 2006


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

Change 100024 by jb at jb_freebsd2 on 2006/06/26 05:33:28

	Give the cyclic subsystem it's own system initialisation level.
	SI_SUB_CLOCKS is too late.
	
	Also fix a copy-n-paste oops.

Affected files ...

.. //depot/projects/dtrace/src/sys/cddl/kern/kern_cyclic.c#4 edit

Differences ...

==== //depot/projects/dtrace/src/sys/cddl/kern/kern_cyclic.c#4 (text+ko) ====

@@ -45,7 +45,7 @@
 	cyclic_machdep_init();
 }
 
-SYSINIT(cyclic_register, SI_SUB_CLOCKS, SI_ORDER_SECOND, cyclic_load, NULL)
+SYSINIT(cyclic_register, SI_SUB_CYCLIC, SI_ORDER_SECOND, cyclic_load, NULL)
 
 static void
 cyclic_unload(void)
@@ -54,7 +54,7 @@
 	cyclic_machdep_uninit();
 }
 
-SYSUNINIT(ata_unregister, SI_SUB_CLOCKS, SI_ORDER_SECOND, cyclic_unload, NULL);
+SYSUNINIT(cyclic_unregister, SI_SUB_CYCLIC, SI_ORDER_SECOND, cyclic_unload, NULL);
 
 /*
  * This function is the one registered by the machine dependent


More information about the p4-projects mailing list