git: 526ad0a15765 - stable/14 - arm64: Add TF_LR, it will be used by bhyve asm
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 15 Jul 2024 12:37:58 UTC
The branch stable/14 has been updated by andrew: URL: https://cgit.FreeBSD.org/src/commit/?id=526ad0a15765ea860b9bbba63a0038434d5a395d commit 526ad0a15765ea860b9bbba63a0038434d5a395d Author: Andrew Turner <andrew@FreeBSD.org> AuthorDate: 2024-02-21 18:24:04 +0000 Commit: Andrew Turner <andrew@FreeBSD.org> CommitDate: 2024-07-15 12:22:17 +0000 arm64: Add TF_LR, it will be used by bhyve asm (cherry picked from commit 0f4071978e3dae6637d4988212661164115f6be8) --- sys/arm64/arm64/genassym.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/arm64/arm64/genassym.c b/sys/arm64/arm64/genassym.c index d4970177ab71..3ed3d5976d91 100644 --- a/sys/arm64/arm64/genassym.c +++ b/sys/arm64/arm64/genassym.c @@ -72,6 +72,7 @@ ASSYM(TD_MD_CANARY, offsetof(struct thread, td_md.md_canary)); ASSYM(TF_SIZE, sizeof(struct trapframe)); ASSYM(TF_SP, offsetof(struct trapframe, tf_sp)); +ASSYM(TF_LR, offsetof(struct trapframe, tf_lr)); ASSYM(TF_ELR, offsetof(struct trapframe, tf_elr)); ASSYM(TF_SPSR, offsetof(struct trapframe, tf_spsr)); ASSYM(TF_ESR, offsetof(struct trapframe, tf_esr));