git: 6f4bb8ecc2ba - main - arm64, riscv: remove reference to fsu_intr_fault

Mitchell Horne mhorne at FreeBSD.org
Tue May 25 15:27:42 UTC 2021


The branch main has been updated by mhorne:

URL: https://cgit.FreeBSD.org/src/commit/?id=6f4bb8ecc2ba2383c9c160eeb826724a2644f810

commit 6f4bb8ecc2ba2383c9c160eeb826724a2644f810
Author:     Mitchell Horne <mhorne at FreeBSD.org>
AuthorDate: 2021-05-25 15:22:49 +0000
Commit:     Mitchell Horne <mhorne at FreeBSD.org>
CommitDate: 2021-05-25 15:26:52 +0000

    arm64, riscv: remove reference to fsu_intr_fault
    
    This variable no longer exists.
    
    MFC after:      3 days
---
 sys/arm64/arm64/trap.c | 2 --
 sys/riscv/riscv/trap.c | 2 --
 2 files changed, 4 deletions(-)

diff --git a/sys/arm64/arm64/trap.c b/sys/arm64/arm64/trap.c
index 8688f8679267..744b646b31c8 100644
--- a/sys/arm64/arm64/trap.c
+++ b/sys/arm64/arm64/trap.c
@@ -71,8 +71,6 @@ __FBSDID("$FreeBSD$");
 #include <ddb/db_output.h>
 #endif
 
-extern register_t fsu_intr_fault;
-
 /* Called from exception.S */
 void do_el1h_sync(struct thread *, struct trapframe *);
 void do_el0_sync(struct thread *, struct trapframe *);
diff --git a/sys/riscv/riscv/trap.c b/sys/riscv/riscv/trap.c
index 0aaaf46eb629..8297d4072a5c 100644
--- a/sys/riscv/riscv/trap.c
+++ b/sys/riscv/riscv/trap.c
@@ -73,8 +73,6 @@ __FBSDID("$FreeBSD$");
 
 int (*dtrace_invop_jump_addr)(struct trapframe *);
 
-extern register_t fsu_intr_fault;
-
 /* Called from exception.S */
 void do_trap_supervisor(struct trapframe *);
 void do_trap_user(struct trapframe *);


More information about the dev-commits-src-all mailing list