Date: Wed, 21 Jul 2021 16:09:16 GMT From: Mitchell Horne <mhorne@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 7d34f038f625 - stable/13 - arm64, riscv: remove reference to fsu_intr_fault Message-ID: <202107211609.16LG9G78067449@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by mhorne: URL: https://cgit.FreeBSD.org/src/commit/?id=7d34f038f62590471e79aef007922d4d26e85eeb commit 7d34f038f62590471e79aef007922d4d26e85eeb Author: Mitchell Horne <mhorne@FreeBSD.org> AuthorDate: 2021-05-25 15:22:49 +0000 Commit: Mitchell Horne <mhorne@FreeBSD.org> CommitDate: 2021-07-21 15:50:13 +0000 arm64, riscv: remove reference to fsu_intr_fault This variable no longer exists. MFC after: 3 days (cherry picked from commit 6f4bb8ecc2ba2383c9c160eeb826724a2644f810) --- 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 d793e34a6894..cdb7ae8fadae 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 88c6adf5623b..69b43f598efd 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 *);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202107211609.16LG9G78067449>