From owner-dev-commits-src-main@freebsd.org Tue May 25 15:27:42 2021 Return-Path: Delivered-To: dev-commits-src-main@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 4A0E464EFBB; Tue, 25 May 2021 15:27:42 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FqHyQ1d05z3KZ4; Tue, 25 May 2021 15:27:42 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1FD1D20081; Tue, 25 May 2021 15:27:42 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 14PFRgoX013878; Tue, 25 May 2021 15:27:42 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 14PFRg8Y013877; Tue, 25 May 2021 15:27:42 GMT (envelope-from git) Date: Tue, 25 May 2021 15:27:42 GMT Message-Id: <202105251527.14PFRg8Y013877@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org From: Mitchell Horne Subject: git: 6f4bb8ecc2ba - main - arm64, riscv: remove reference to fsu_intr_fault MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: mhorne X-Git-Repository: src X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 6f4bb8ecc2ba2383c9c160eeb826724a2644f810 Auto-Submitted: auto-generated X-BeenThere: dev-commits-src-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for the main branch of the src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 May 2021 15:27:42 -0000 The branch main has been updated by mhorne: URL: https://cgit.FreeBSD.org/src/commit/?id=6f4bb8ecc2ba2383c9c160eeb826724a2644f810 commit 6f4bb8ecc2ba2383c9c160eeb826724a2644f810 Author: Mitchell Horne AuthorDate: 2021-05-25 15:22:49 +0000 Commit: Mitchell Horne 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 #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 *);