frame.h 813 B

12345678910111213141516171819202122232425
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _LINUX_FRAME_H
  3. #define _LINUX_FRAME_H
  4. #ifdef CONFIG_STACK_VALIDATION
  5. /*
  6. * This macro marks the given function's stack frame as "non-standard", which
  7. * tells objtool to ignore the function when doing stack metadata validation.
  8. * It should only be used in special cases where you're 100% sure it won't
  9. * affect the reliability of frame pointers and kernel stack traces.
  10. *
  11. * For more information, see tools/objtool/Documentation/stack-validation.txt.
  12. */
  13. #define STACK_FRAME_NON_STANDARD(func) \
  14. static void __used __section(.discard.func_stack_frame_non_standard) \
  15. *__func_stack_frame_non_standard_##func = func
  16. #else /* !CONFIG_STACK_VALIDATION */
  17. #define STACK_FRAME_NON_STANDARD(func)
  18. #endif /* CONFIG_STACK_VALIDATION */
  19. #endif /* _LINUX_FRAME_H */