Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
49 lines
1.1 KiB
C
49 lines
1.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
#ifndef __ASM_STACKTRACE_FRAME_H
|
|
#define __ASM_STACKTRACE_FRAME_H
|
|
|
|
/*
|
|
* - FRAME_META_TYPE_NONE
|
|
*
|
|
* This value is reserved.
|
|
*
|
|
* - FRAME_META_TYPE_FINAL
|
|
*
|
|
* The record is the last entry on the stack.
|
|
* Unwinding should terminate successfully.
|
|
*
|
|
* - FRAME_META_TYPE_PT_REGS
|
|
*
|
|
* The record is embedded within a struct pt_regs, recording the registers at
|
|
* an arbitrary point in time.
|
|
* Unwinding should consume pt_regs::pc, followed by pt_regs::lr.
|
|
*
|
|
* Note: all other values are reserved and should result in unwinding
|
|
* terminating with an error.
|
|
*/
|
|
#define FRAME_META_TYPE_NONE 0
|
|
#define FRAME_META_TYPE_FINAL 1
|
|
#define FRAME_META_TYPE_PT_REGS 2
|
|
|
|
#ifndef __ASSEMBLER__
|
|
/*
|
|
* A standard AAPCS64 frame record.
|
|
*/
|
|
struct frame_record {
|
|
u64 fp;
|
|
u64 lr;
|
|
};
|
|
|
|
/*
|
|
* A metadata frame record indicating a special unwind.
|
|
* The record::{fp,lr} fields must be zero to indicate the presence of
|
|
* metadata.
|
|
*/
|
|
struct frame_record_meta {
|
|
struct frame_record record;
|
|
u64 type;
|
|
};
|
|
#endif /* __ASSEMBLER__ */
|
|
|
|
#endif /* __ASM_STACKTRACE_FRAME_H */
|