]> Git Repo - linux.git/blame - include/linux/frame.h
Merge tag 'xfs-4.12-fixes-3' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux
[linux.git] / include / linux / frame.h
CommitLineData
9a99417a
JP
1#ifndef _LINUX_FRAME_H
2#define _LINUX_FRAME_H
3
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) \
e390f9a9 14 static void __used __section(.discard.func_stack_frame_non_standard) \
9a99417a
JP
15 *__func_stack_frame_non_standard_##func = func
16
17#else /* !CONFIG_STACK_VALIDATION */
18
19#define STACK_FRAME_NON_STANDARD(func)
20
21#endif /* CONFIG_STACK_VALIDATION */
22
23#endif /* _LINUX_FRAME_H */
This page took 0.23352 seconds and 4 git commands to generate.