mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Add sysinit levels for DTrace.
This commit is contained in:
parent
f02642d79e
commit
69b2c659c1
1 changed files with 6 additions and 0 deletions
|
|
@ -113,6 +113,7 @@ enum sysinit_sub_id {
|
|||
SI_SUB_EVENTHANDLER = 0x1C00000, /* eventhandler init */
|
||||
SI_SUB_KLD = 0x2000000, /* KLD and module setup */
|
||||
SI_SUB_CPU = 0x2100000, /* CPU resource(s)*/
|
||||
SI_SUB_KDTRACE = 0x2140000, /* Kernel dtrace hooks */
|
||||
SI_SUB_MAC = 0x2180000, /* TrustedBSD MAC subsystem */
|
||||
SI_SUB_MAC_POLICY = 0x21C0000, /* TrustedBSD MAC policies */
|
||||
SI_SUB_MAC_LATE = 0x21D0000, /* TrustedBSD MAC subsystem */
|
||||
|
|
@ -121,6 +122,8 @@ enum sysinit_sub_id {
|
|||
SI_SUB_DDB_SERVICES = 0x2380000, /* capture, scripting, etc. */
|
||||
SI_SUB_RUN_QUEUE = 0x2400000, /* set up run queue*/
|
||||
SI_SUB_KTRACE = 0x2480000, /* ktrace */
|
||||
SI_SUB_OPENSOLARIS = 0x2490000, /* OpenSolaris compatibility */
|
||||
SI_SUB_CYCLIC = 0x24A0000, /* Cyclic timers */
|
||||
SI_SUB_AUDIT = 0x24C0000, /* audit */
|
||||
SI_SUB_CREATE_INIT = 0x2500000, /* create init process*/
|
||||
SI_SUB_SCHED_IDLE = 0x2600000, /* required idle procs */
|
||||
|
|
@ -131,6 +134,9 @@ enum sysinit_sub_id {
|
|||
SI_SUB_DEVFS = 0x2F00000, /* devfs ready for devices */
|
||||
SI_SUB_INIT_IF = 0x3000000, /* prep for net interfaces */
|
||||
SI_SUB_NETGRAPH = 0x3010000, /* Let Netgraph initialize */
|
||||
SI_SUB_DTRACE = 0x3020000, /* DTrace subsystem */
|
||||
SI_SUB_DTRACE_PROVIDER = 0x3048000, /* DTrace providers */
|
||||
SI_SUB_DTRACE_ANON = 0x308C000, /* DTrace anon enabling */
|
||||
SI_SUB_DRIVERS = 0x3100000, /* Let Drivers initialize */
|
||||
SI_SUB_CONFIGURE = 0x3800000, /* Configure devices */
|
||||
SI_SUB_VFS = 0x4000000, /* virtual filesystem*/
|
||||
|
|
|
|||
Loading…
Reference in a new issue