initcalls.h 357 B

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