From nobody Mon Dec 29 00:36:16 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id F11EBC4167B for ; Mon, 4 Dec 2023 11:58:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235371AbjLDL5x (ORCPT ); Mon, 4 Dec 2023 06:57:53 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39818 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231348AbjLDL50 (ORCPT ); Mon, 4 Dec 2023 06:57:26 -0500 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 077BE10CC for ; Mon, 4 Dec 2023 03:57:25 -0800 (PST) Received: by smtp.kernel.org (Postfix) with ESMTPSA id D0AC6C433C8; Mon, 4 Dec 2023 11:57:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1701691045; bh=GVPJo8uO9T+V60ClpxXsIQariQDInjL+tl05cbLyqws=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=J5WjEPhOrZxIpNezsV3u/mxLcK7Hlo3/HZCu5+pDjyw6ptaF74uL9RVDwGkDMVor0 IBgGfGNu43qo+2Nz5Nwe6S3pJ6eGqcEp6wfpH2lQPcnfl7dWDkNEmFh5sMQo8LdBe4 /cNu7OXGtEXqtM5WTAQSy8Ae45cUF+QVK3dKvuA8d5nOL1zx3r6dJRowDoXqMJnIV/ aHUWTkM7i+MBIrm/vc4oxH7L0qg33oNbbRXYlgtLRh7be7tAAsEa42v95fyTk8R/Gl f8RXvSy68dKBpvArRPQbhCllvCazfanqRt1cELSmlpKwd5/8fw4iksMGd4lt50xo5i QiFCJ8zOsQUfQ== From: Arnd Bergmann To: linux-mips@vger.kernel.org Cc: Arnd Bergmann , "Andrew Morton" , "Stephen Rothwell" , "Linux Kernel Mailing List" , "Thomas Bogendoerfer" Subject: [PATCH 03/20] mips: add missing declarations for trap handlers Date: Mon, 4 Dec 2023 12:56:53 +0100 Message-Id: <20231204115710.2247097-4-arnd@kernel.org> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20231204115710.2247097-1-arnd@kernel.org> References: <20231204115710.2247097-1-arnd@kernel.org> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" From: Arnd Bergmann These exception handlers are all called from assembly code, so they don't normally need a declaration, but without one we now get warnings: arch/mips/mm/fault.c:323:17: error: no previous prototype for 'do_page_faul= t' [-Werror=3Dmissing-prototypes] arch/mips/kernel/traps.c:447:17: error: no previous prototype for 'do_be' [= -Werror=3Dmissing-prototypes] arch/mips/kernel/traps.c:752:17: error: no previous prototype for 'do_ov' [= -Werror=3Dmissing-prototypes] arch/mips/kernel/traps.c:874:17: error: no previous prototype for 'do_fpe' = [-Werror=3Dmissing-prototypes] arch/mips/kernel/traps.c:1027:17: error: no previous prototype for 'do_bp' = [-Werror=3Dmissing-prototypes] arch/mips/kernel/traps.c:1114:17: error: no previous prototype for 'do_tr' = [-Werror=3Dmissing-prototypes] arch/mips/kernel/traps.c:1151:17: error: no previous prototype for 'do_ri' = [-Werror=3Dmissing-prototypes] arch/mips/kernel/traps.c:1402:17: error: no previous prototype for 'do_cpu'= [-Werror=3Dmissing-prototypes] arch/mips/kernel/traps.c:1507:17: error: no previous prototype for 'do_msa_= fpe' [-Werror=3Dmissing-prototypes] arch/mips/kernel/traps.c:1527:17: error: no previous prototype for 'do_msa'= [-Werror=3Dmissing-prototypes] arch/mips/kernel/traps.c:1548:17: error: no previous prototype for 'do_mdmx= ' [-Werror=3Dmissing-prototypes] arch/mips/kernel/traps.c:1560:17: error: no previous prototype for 'do_watc= h' [-Werror=3Dmissing-prototypes] arch/mips/kernel/traps.c:1587:17: error: no previous prototype for 'do_mche= ck' [-Werror=3Dmissing-prototypes] arch/mips/kernel/traps.c:1612:17: error: no previous prototype for 'do_mt' = [-Werror=3Dmissing-prototypes] arch/mips/kernel/traps.c:1648:17: error: no previous prototype for 'do_dsp'= [-Werror=3Dmissing-prototypes] arch/mips/kernel/traps.c:1656:17: error: no previous prototype for 'do_rese= rved' [-Werror=3Dmissing-prototypes] arch/mips/kernel/traps.c:1832:17: error: no previous prototype for 'cache_p= arity_error' [-Werror=3Dmissing-prototypes] arch/mips/kernel/traps.c:1880:17: error: no previous prototype for 'do_ftlb= ' [-Werror=3Dmissing-prototypes] arch/mips/kernel/traps.c:1909:17: error: no previous prototype for 'do_gsex= c' [-Werror=3Dmissing-prototypes] arch/mips/kernel/traps.c:1944:6: error: no previous prototype for 'ejtag_ex= ception_handler' [-Werror=3Dmissing-prototypes] arch/mips/kernel/traps.c:1989:17: error: no previous prototype for 'nmi_exc= eption_handler' [-Werror=3Dmissing-prototypes] arch/mips/kernel/unaligned.c:1516:17: error: no previous prototype for 'do_= ade' [-Werror=3Dmissing-prototypes] Signed-off-by: Arnd Bergmann --- arch/mips/include/asm/traps.h | 23 +++++++++++++++++++++++ arch/mips/kernel/r4k-bugs64.c | 1 + arch/mips/kernel/unaligned.c | 1 + arch/mips/mm/fault.c | 1 + 4 files changed, 26 insertions(+) diff --git a/arch/mips/include/asm/traps.h b/arch/mips/include/asm/traps.h index d4d9f8a8fdea..1e63d7d04404 100644 --- a/arch/mips/include/asm/traps.h +++ b/arch/mips/include/asm/traps.h @@ -41,5 +41,28 @@ extern char except_vec_nmi[]; =20 asmlinkage void do_page_fault(struct pt_regs *regs, unsigned long write, unsigned long address); +asmlinkage void do_ade(struct pt_regs *regs); +asmlinkage void do_be(struct pt_regs *regs); +asmlinkage void do_ov(struct pt_regs *regs); +asmlinkage void do_fpe(struct pt_regs *regs, unsigned long fcr31); +asmlinkage void do_bp(struct pt_regs *regs); +asmlinkage void do_tr(struct pt_regs *regs); +asmlinkage void do_ri(struct pt_regs *regs); +asmlinkage void do_cpu(struct pt_regs *regs); +asmlinkage void do_msa_fpe(struct pt_regs *regs, unsigned int msacsr); +asmlinkage void do_msa(struct pt_regs *regs); +asmlinkage void do_mdmx(struct pt_regs *regs); +asmlinkage void do_watch(struct pt_regs *regs); +asmlinkage void do_mcheck(struct pt_regs *regs); +asmlinkage void do_mt(struct pt_regs *regs); +asmlinkage void do_dsp(struct pt_regs *regs); +asmlinkage void do_reserved(struct pt_regs *regs); +asmlinkage void do_ftlb(void); +asmlinkage void do_gsexc(struct pt_regs *regs, u32 diag1); +asmlinkage void do_daddi_ov(struct pt_regs *regs); + +asmlinkage void cache_parity_error(void); +asmlinkage void ejtag_exception_handler(struct pt_regs *regs); +asmlinkage void __noreturn nmi_exception_handler(struct pt_regs *regs); =20 #endif /* _ASM_TRAPS_H */ diff --git a/arch/mips/kernel/r4k-bugs64.c b/arch/mips/kernel/r4k-bugs64.c index 6ffefb2c6971..1e300330078d 100644 --- a/arch/mips/kernel/r4k-bugs64.c +++ b/arch/mips/kernel/r4k-bugs64.c @@ -14,6 +14,7 @@ #include #include #include +#include =20 static char bug64hit[] __initdata =3D "reliable operation impossible!\n%s"; diff --git a/arch/mips/kernel/unaligned.c b/arch/mips/kernel/unaligned.c index f4cf94e92ec3..db652c99b72e 100644 --- a/arch/mips/kernel/unaligned.c +++ b/arch/mips/kernel/unaligned.c @@ -91,6 +91,7 @@ #include #include #include +#include #include =20 #include "access-helper.h" diff --git a/arch/mips/mm/fault.c b/arch/mips/mm/fault.c index d7878208bd3f..aaa9a242ebba 100644 --- a/arch/mips/mm/fault.c +++ b/arch/mips/mm/fault.c @@ -26,6 +26,7 @@ #include #include #include /* For VMALLOC_END */ +#include #include =20 int show_unhandled_signals =3D 1; --=20 2.39.2