Lines Matching full:subsystem
49 * destructors to be run for each network stack subsystem as virtual
332 enum sysinit_sub_id subsystem; member
339 #define VNET_SYSINIT(ident, subsystem, order, func, arg) \ argument
340 CTASSERT((subsystem) > SI_SUB_VNET && \
341 (subsystem) <= SI_SUB_VNET_DONE); \
343 subsystem, \
348 SYSINIT(vnet_init_ ## ident, subsystem, order, \
350 SYSUNINIT(vnet_init_ ## ident, subsystem, order, \
353 #define VNET_SYSUNINIT(ident, subsystem, order, func, arg) \ argument
354 CTASSERT((subsystem) > SI_SUB_VNET && \
355 (subsystem) <= SI_SUB_VNET_DONE); \
357 subsystem, \
362 SYSINIT(vnet_uninit_ ## ident, subsystem, order, \
364 SYSUNINIT(vnet_uninit_ ## ident, subsystem, order, \
446 #define VNET_SYSINIT(ident, subsystem, order, func, arg) \ argument
447 SYSINIT(ident, subsystem, order, func, arg)
448 #define VNET_SYSUNINIT(ident, subsystem, order, func, arg) \ argument
449 SYSUNINIT(ident, subsystem, order, func, arg)