mirror of
https://github.com/opnsense/src.git
synced 2026-04-23 23:28:37 -04:00
Move init_clocks earlier in the system startup so that hardclock and clock
interrupts are started before the device probe. This allows interrupt threads to run during the device probe among other things.
This commit is contained in:
parent
c7e95d0abe
commit
cbbee1e4e6
1 changed files with 1 additions and 1 deletions
|
|
@ -123,10 +123,10 @@ enum sysinit_sub_id {
|
|||
SI_SUB_SCHED_IDLE = 0x2600000, /* required idle procs */
|
||||
SI_SUB_MBUF = 0x2700000, /* mbuf subsystem */
|
||||
SI_SUB_SOFTINTR = 0x2800000, /* start soft interrupt thread */
|
||||
SI_SUB_CLOCKS = 0x3000000, /* real time and stat clocks*/
|
||||
SI_SUB_DRIVERS = 0x3100000, /* Let Drivers initialize */
|
||||
SI_SUB_CONFIGURE = 0x3800000, /* Configure devices */
|
||||
SI_SUB_VFS = 0x4000000, /* virtual file system*/
|
||||
SI_SUB_CLOCKS = 0x4800000, /* real time and stat clocks*/
|
||||
SI_SUB_CLIST = 0x5800000, /* clists*/
|
||||
SI_SUB_SYSV_SHM = 0x6400000, /* System V shared memory*/
|
||||
SI_SUB_SYSV_SEM = 0x6800000, /* System V semaphores*/
|
||||
|
|
|
|||
Loading…
Reference in a new issue