xref: /linux/security/selinux/include/initcalls.h (revision 6dfafbd0299a60bfb5d5e277fdf100037c7ded07)
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