common.h 464 B

12345678910111213141516171819202122
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Landlock LSM - Common constants and helpers
  4. *
  5. * Copyright © 2016-2020 Mickaël Salaün <mic@digikod.net>
  6. * Copyright © 2018-2020 ANSSI
  7. */
  8. #ifndef _SECURITY_LANDLOCK_COMMON_H
  9. #define _SECURITY_LANDLOCK_COMMON_H
  10. #define LANDLOCK_NAME "landlock"
  11. #ifdef pr_fmt
  12. #undef pr_fmt
  13. #endif
  14. #define pr_fmt(fmt) LANDLOCK_NAME ": " fmt
  15. #define BIT_INDEX(bit) HWEIGHT(bit - 1)
  16. #endif /* _SECURITY_LANDLOCK_COMMON_H */