From ebd7ffcddff44f189677b22fcd1a071ea9243429 Mon Sep 17 00:00:00 2001 From: Sascha Wildner Date: Sat, 5 Jan 2019 21:43:50 +0100 Subject: [PATCH] kernel: Remove two no longer used sysinit ids. * SI_BOOT2_BIOS was used for longrun and other i386 specific stuff only. The last usage was removed in c292f53669b4862993224dcf5c489355215be50d. * SI_SUB_CLIST was removed in the recent tty clist refactoring commit, see 4725869b060b0e647b6c64480a0ce50f64ff23bb. --- sys/sys/kernel.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/sys/sys/kernel.h b/sys/sys/kernel.h index eda67624b0..33150d1331 100644 --- a/sys/sys/kernel.h +++ b/sys/sys/kernel.h @@ -169,7 +169,6 @@ enum sysinit_sub_id { * Finish up core kernel initialization and set up the process * abstraction. */ - SI_BOOT2_BIOS = 0x1d00000, SI_BOOT2_MACHDEP = 0x1d80000, SI_BOOT2_KLD = 0x1e00000, SI_BOOT2_VMM = 0x1e40000, @@ -188,7 +187,6 @@ enum sysinit_sub_id { SI_SUB_ISWARM = 0x3c00000, /* No longer in cold boot */ SI_SUB_VFS = 0x4000000, /* virtual file system*/ SI_SUB_HELPER_THREADS = 0x5400000, /* misc helper threads */ - SI_SUB_CLIST = 0x5800000, /* clists*/ SI_SUB_SYSV_SHM = 0x6400000, /* System V shared memory*/ SI_SUB_SYSV_SEM = 0x6800000, /* System V semaphores*/ SI_SUB_SYSV_MSG = 0x6C00000, /* System V message queues*/ -- 2.41.0