Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 13 Dec 2021 00:29:12 GMT
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 419120bb522e - stable/12 - arm64: implement COMPAT_FREEBSD32 fill/set dbregs/fpregs
Message-ID:  <202112130029.1BD0TCxw060176@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/12 has been updated by emaste:

URL: https://cgit.FreeBSD.org/src/commit/?id=419120bb522e852eb2c81249cd8d9004ad2dcca5

commit 419120bb522e852eb2c81249cd8d9004ad2dcca5
Author:     Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2021-03-17 14:10:41 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2021-12-12 22:43:58 +0000

    arm64: implement COMPAT_FREEBSD32 fill/set dbregs/fpregs
    
    On FreeBSD/arm fill_fpregs, fill_dbregs are stubs that zero the reg
    struct and return success. set_fpregs and set_dbregs do nothing and
    return success.
    
    Provide the same implementation for arm64 COMPAT_FREEBSD32.
    
    Reviewed by:    andrew
    MFC after:      3 days
    Sponsored by:   The FreeBSD Foundation
    Differential Revision: https://reviews.freebsd.org/D29314
    
    (cherry picked from commit 5be27cbf16c85ce95d21db57349f61494f851821)
---
 sys/arm64/arm64/machdep.c | 15 +++++++--------
 1 file changed, 7 insertions(+), 8 deletions(-)

diff --git a/sys/arm64/arm64/machdep.c b/sys/arm64/arm64/machdep.c
index c0df74bd1f6f..d0c72d3fdf15 100644
--- a/sys/arm64/arm64/machdep.c
+++ b/sys/arm64/arm64/machdep.c
@@ -315,36 +315,35 @@ set_regs32(struct thread *td, struct reg32 *regs)
 	return (EDOOFUS);
 }
 
+/* XXX fill/set dbregs/fpregs are stubbed on 32-bit arm. */
 int
 fill_fpregs32(struct thread *td, struct fpreg32 *regs)
 {
 
-	printf("ARM64TODO: fill_fpregs32");
-	return (EDOOFUS);
+	memset(regs, 0, sizeof(*regs));
+	return (0);
 }
 
 int
 set_fpregs32(struct thread *td, struct fpreg32 *regs)
 {
 
-	printf("ARM64TODO: set_fpregs32");
-	return (EDOOFUS);
+	return (0);
 }
 
 int
 fill_dbregs32(struct thread *td, struct dbreg32 *regs)
 {
 
-	printf("ARM64TODO: fill_dbregs32");
-	return (EDOOFUS);
+	memset(regs, 0, sizeof(*regs));
+	return (0);
 }
 
 int
 set_dbregs32(struct thread *td, struct dbreg32 *regs)
 {
 
-	printf("ARM64TODO: set_dbregs32");
-	return (EDOOFUS);
+	return (0);
 }
 #endif
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202112130029.1BD0TCxw060176>