xref: /linux/security/selinux/include/initcalls.h (revision 121cc35cfb55ab0bcf04c8ba6b364a0990eb2449)
1*3156bc81SPaul Moore // SPDX-License-Identifier: GPL-2.0-only
2*3156bc81SPaul Moore /*
3*3156bc81SPaul Moore  * SELinux initcalls
4*3156bc81SPaul Moore  */
5*3156bc81SPaul Moore 
6*3156bc81SPaul Moore #ifndef _SELINUX_INITCALLS_H
7*3156bc81SPaul Moore #define _SELINUX_INITCALLS_H
8*3156bc81SPaul Moore 
9*3156bc81SPaul Moore int init_sel_fs(void);
10*3156bc81SPaul Moore int sel_netport_init(void);
11*3156bc81SPaul Moore int sel_netnode_init(void);
12*3156bc81SPaul Moore int sel_netif_init(void);
13*3156bc81SPaul Moore int sel_netlink_init(void);
14*3156bc81SPaul Moore int sel_ib_pkey_init(void);
15*3156bc81SPaul Moore int selinux_nf_ip_init(void);
16*3156bc81SPaul Moore 
17*3156bc81SPaul Moore int selinux_initcall(void);
18*3156bc81SPaul Moore 
19*3156bc81SPaul Moore #endif
20