1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * SELinux initcalls 4 */ 5 6 #ifndef _SELINUX_INITCALLS_H 7 #define _SELINUX_INITCALLS_H 8 9 int init_sel_fs(void); 10 int sel_netport_init(void); 11 int sel_netnode_init(void); 12 int sel_netif_init(void); 13 int sel_netlink_init(void); 14 int sel_ib_pkey_init(void); 15 int selinux_nf_ip_init(void); 16 17 int selinux_initcall(void); 18 19 #endif 20