git: d253217f7198 - stable/13 - 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:38:04 UTC
The branch stable/13 has been updated by andrew:
URL: https://cgit.FreeBSD.org/src/commit/?id=d253217f719872ee82125b51ee3d64f9413affbb
commit d253217f719872ee82125b51ee3d64f9413affbb
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:34:28 +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 e423a000eed4..c8cda4c88aea 100644
--- a/sys/arm64/arm64/genassym.c
+++ b/sys/arm64/arm64/genassym.c
@@ -76,6 +76,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_X, offsetof(struct trapframe, tf_x));