git: 3417c29851b6 - main - linux: Constify bsd_to_linux_regset()
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 23 Oct 2021 08:15:03 UTC
The branch main has been updated by trasz:
URL: https://cgit.FreeBSD.org/src/commit/?id=3417c29851b6fce32b4c459b4c0a197b2e33018b
commit 3417c29851b6fce32b4c459b4c0a197b2e33018b
Author: Edward Tomasz Napierala <trasz@FreeBSD.org>
AuthorDate: 2021-10-23 07:33:48 +0000
Commit: Edward Tomasz Napierala <trasz@FreeBSD.org>
CommitDate: 2021-10-23 07:33:58 +0000
linux: Constify bsd_to_linux_regset()
No functional changes.
Reviewed By: emaste
Sponsored By: EPSRC
Differential Revision: https://reviews.freebsd.org/D32599
---
sys/amd64/linux/linux.h | 2 +-
sys/amd64/linux/linux_machdep.c | 2 +-
sys/amd64/linux32/linux.h | 2 +-
sys/amd64/linux32/linux32_machdep.c | 3 ++-
sys/arm64/linux/linux.h | 2 +-
sys/arm64/linux/linux_machdep.c | 2 +-
6 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/sys/amd64/linux/linux.h b/sys/amd64/linux/linux.h
index 9080bcb36cbc..519b6bd200ac 100644
--- a/sys/amd64/linux/linux.h
+++ b/sys/amd64/linux/linux.h
@@ -459,7 +459,7 @@ struct linux_pt_regset {
struct reg;
-void bsd_to_linux_regset(struct reg *b_reg,
+void bsd_to_linux_regset(const struct reg *b_reg,
struct linux_pt_regset *l_regset);
#endif /* !_AMD64_LINUX_H_ */
diff --git a/sys/amd64/linux/linux_machdep.c b/sys/amd64/linux/linux_machdep.c
index dc6b6140f60c..c34d98e86d0b 100644
--- a/sys/amd64/linux/linux_machdep.c
+++ b/sys/amd64/linux/linux_machdep.c
@@ -299,7 +299,7 @@ DEFINE_IFUNC(, int, futex_xorl, (int, uint32_t *, int *))
}
void
-bsd_to_linux_regset(struct reg *b_reg, struct linux_pt_regset *l_regset)
+bsd_to_linux_regset(const struct reg *b_reg, struct linux_pt_regset *l_regset)
{
l_regset->r15 = b_reg->r_r15;
diff --git a/sys/amd64/linux32/linux.h b/sys/amd64/linux32/linux.h
index 8d7a36eedee9..f1f877181e47 100644
--- a/sys/amd64/linux32/linux.h
+++ b/sys/amd64/linux32/linux.h
@@ -634,7 +634,7 @@ struct linux_pt_regset32 {
struct reg32;
-void bsd_to_linux_regset32(struct reg32 *b_reg,
+void bsd_to_linux_regset32(const struct reg32 *b_reg,
struct linux_pt_regset32 *l_regset);
#endif /* !_AMD64_LINUX_H_ */
diff --git a/sys/amd64/linux32/linux32_machdep.c b/sys/amd64/linux32/linux32_machdep.c
index 5801fac7f126..86f7bdc918d8 100644
--- a/sys/amd64/linux32/linux32_machdep.c
+++ b/sys/amd64/linux32/linux32_machdep.c
@@ -678,7 +678,8 @@ linux_set_thread_area(struct thread *td,
}
void
-bsd_to_linux_regset32(struct reg32 *b_reg, struct linux_pt_regset32 *l_regset)
+bsd_to_linux_regset32(const struct reg32 *b_reg,
+ struct linux_pt_regset32 *l_regset)
{
l_regset->ebx = b_reg->r_ebx;
diff --git a/sys/arm64/linux/linux.h b/sys/arm64/linux/linux.h
index b5273498a5aa..5e4bf3ae0680 100644
--- a/sys/arm64/linux/linux.h
+++ b/sys/arm64/linux/linux.h
@@ -322,7 +322,7 @@ struct linux_pt_regset {
struct reg;
-void bsd_to_linux_regset(struct reg *b_reg,
+void bsd_to_linux_regset(const struct reg *b_reg,
struct linux_pt_regset *l_regset);
#endif /* _ARM64_LINUX_H_ */
diff --git a/sys/arm64/linux/linux_machdep.c b/sys/arm64/linux/linux_machdep.c
index fae5bd11653b..c874f86a5f0c 100644
--- a/sys/arm64/linux/linux_machdep.c
+++ b/sys/arm64/linux/linux_machdep.c
@@ -133,7 +133,7 @@ linux_set_cloned_tls(struct thread *td, void *desc)
}
void
-bsd_to_linux_regset(struct reg *b_reg, struct linux_pt_regset *l_regset)
+bsd_to_linux_regset(const struct reg *b_reg, struct linux_pt_regset *l_regset)
{
KASSERT(sizeof(l_regset->x) == sizeof(b_reg->x) + sizeof(l_ulong),