Date: Mon, 26 Jun 2006 05:34:19 GMT From: John Birrell <jb@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 100024 for review Message-ID: <200606260534.k5Q5YJ2E019882@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=100024 Change 100024 by jb@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200606260534.k5Q5YJ2E019882>