Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 Feb 2023 12:30:16 GMT
From:      Andrew Turner <andrew@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 24abb6b82102 - main - When saving a context on arm call the vfp handler
Message-ID:  <202302201230.31KCUGjZ028862@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by andrew:

URL: https://cgit.FreeBSD.org/src/commit/?id=24abb6b82102eec577eff9bd8dd7726e8cab89f4

commit 24abb6b82102eec577eff9bd8dd7726e8cab89f4
Author:     Andrew Turner <andrew@FreeBSD.org>
AuthorDate: 2023-02-20 12:22:11 +0000
Commit:     Andrew Turner <andrew@FreeBSD.org>
CommitDate: 2023-02-20 12:29:56 +0000

    When saving a context on arm call the vfp handler
    
    When adding kernel VFP support on arm a comparison instruction was
    removed, however the branch to vfp_save_state was still conditional.
    Remove the conditional check and always call into vfp_save_state as
    it could cause unexpected results otherwise.
    
    Sponsored by:   Arm Ltd
---
 sys/arm/arm/swtch-v6.S | 2 +-
 sys/arm/arm/swtch.S    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/arm/arm/swtch-v6.S b/sys/arm/arm/swtch-v6.S
index bff1bc8f3d35..b23fb2f7686f 100644
--- a/sys/arm/arm/swtch-v6.S
+++ b/sys/arm/arm/swtch-v6.S
@@ -325,7 +325,7 @@ ENTRY(cpu_switch)
 	ldr	r3, [r10, #(TD_PCB)]
 	mov	r1, r3
 	mov	r0, r10
-	blne	_C_LABEL(vfp_save_state)
+	bl	_C_LABEL(vfp_save_state)
 #endif
 
 	/*
diff --git a/sys/arm/arm/swtch.S b/sys/arm/arm/swtch.S
index f7c2beaf4f3e..1856f8b1e97c 100644
--- a/sys/arm/arm/swtch.S
+++ b/sys/arm/arm/swtch.S
@@ -101,7 +101,7 @@ ENTRY(savectx)
 #ifdef VFP
 	mov	r1, r0
 	mov	r0, #0
-	blne	_C_LABEL(vfp_save_state)
+	bl	_C_LABEL(vfp_save_state)
 #endif
 	add	sp, sp, #4;
 	ldmfd	sp!, {pc}



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