svn commit: r358936 - stable/11/sys/sys

Hans Petter Selasky hselasky at FreeBSD.org
Fri Mar 13 08:53:27 UTC 2020


Author: hselasky
Date: Fri Mar 13 08:53:26 2020
New Revision: 358936
URL: https://svnweb.freebsd.org/changeset/base/358936

Log:
  MFC r358695:
  Define more subsystem orders.
  Intended for use with module_init_order() in the LinuxKPI.
  
  Sponsored by:	Mellanox Technologies

Modified:
  stable/11/sys/sys/kernel.h
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/sys/kernel.h
==============================================================================
--- stable/11/sys/sys/kernel.h	Fri Mar 13 08:52:50 2020	(r358935)
+++ stable/11/sys/sys/kernel.h	Fri Mar 13 08:53:26 2020	(r358936)
@@ -177,6 +177,10 @@ enum sysinit_elem_order {
 	SI_ORDER_SECOND		= 0x0000001,	/* second*/
 	SI_ORDER_THIRD		= 0x0000002,	/* third*/
 	SI_ORDER_FOURTH		= 0x0000003,	/* fourth*/
+	SI_ORDER_FIFTH		= 0x0000004,	/* fifth*/
+	SI_ORDER_SIXTH		= 0x0000005,	/* sixth*/
+	SI_ORDER_SEVENTH	= 0x0000006,	/* seventh*/
+	SI_ORDER_EIGHTH		= 0x0000007,	/* eighth*/
 	SI_ORDER_MIDDLE		= 0x1000000,	/* somewhere in the middle */
 	SI_ORDER_ANY		= 0xfffffff	/* last*/
 };


More information about the svn-src-all mailing list