From mboxrd@z Thu Jan 1 00:00:00 1970 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 E9F2BC001E0 for ; Tue, 25 Jul 2023 13:48:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231645AbjGYNs5 (ORCPT ); Tue, 25 Jul 2023 09:48:57 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43014 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231665AbjGYNsx (ORCPT ); Tue, 25 Jul 2023 09:48:53 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A00AE1FFC for ; Tue, 25 Jul 2023 06:48:48 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 3875461721 for ; Tue, 25 Jul 2023 13:48:48 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B33D9C433C7; Tue, 25 Jul 2023 13:48:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1690292927; bh=LXLUgJ1b5ben7ymSJZl38ByQpuIQlrctk2lq9h4zXpU=; h=From:To:Cc:Subject:Date:From; b=uTHwM1bcsk7ifY1XPOoPcsWVMse/ijuNBGh/1QQKjEDI+cJ8le6wD83Z+x5LhqGQL poEc9do4ezqpHqFc3xKjGZxfLI8xNGEadr7nqK0dGJVqdh+CWSIWq0rEMEik/Ae//G +MhREgsLG+E+0OhANWewLw6+GwHNlsjm8D6bfM2SCuTpQPDEZDpnVcX5/EH785qopd B9Cga0RtLjStn3U+nC3Hrtyk9kaXAdVfkE/GaFKmpKHXzwbk7YKYfVAU1gWYdPZYk/ wsLRMBDDo0DoxLY43yUQvVcY0DoKDyeXiu6MhsoMoGWg9KZSLOPuGX+gMmCQaHcj5M loY+8Pzn20+pg== From: Arnd Bergmann To: linux-kernel@vger.kernel.org, x86@kernel.org Cc: Arnd Bergmann , Thomas Gleixner , Ingo Molnar , Borislav Petkov , Dave Hansen , "H. Peter Anvin" Subject: [PATCH 0/5] remaining x86 -Wmissing-prototype warnings Date: Tue, 25 Jul 2023 15:48:32 +0200 Message-Id: <20230725134837.1534228-1-arnd@kernel.org> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Arnd Bergmann Most of the patches addressing -Wmissing-prototype warnings were already merged, including 16 of the 20 x86 patches I sent before, and all except 10 other patches that I need to resubmit to other trees. I checked that these five are all still required and that there were no remaining comments I needed to address. Four patches are from v1 of the series, the last one was sent separately last time, and the contents are unchanged from the original submission. These patches have passed a few thousand randconfig builds with the warning enabled. Link: https://lore.kernel.org/lkml/20230516193549.544673-1-arnd@kernel.org/ Link: https://lore.kernel.org/lkml/20230519094035.11259-1-arnd@kernel.org/ Arnd Bergmann (5): [RESEND] x86: apic: hide unused safe_smp_processor_id on UP [RESEND] x86: avoid unneeded __div64_32 function definition [RESEND] x86: qspinlock-paravirt: fix mising-prototype warnings [RESEND] x86: purgatory: include header for warn() declaration [RESEND] x86: alternative: add __alt_reloc_selftest prototype arch/x86/boot/compressed/error.c | 2 +- arch/x86/boot/compressed/error.h | 2 +- arch/x86/include/asm/div64.h | 2 ++ arch/x86/include/asm/qspinlock_paravirt.h | 2 ++ arch/x86/kernel/alternative.c | 1 + arch/x86/kernel/apic/ipi.c | 2 ++ arch/x86/kernel/paravirt.c | 2 ++ arch/x86/purgatory/purgatory.c | 1 + kernel/locking/qspinlock_paravirt.h | 20 ++++++++++---------- 9 files changed, 22 insertions(+), 12 deletions(-) -- 2.39.2 Cc: Thomas Gleixner Cc: Ingo Molnar Cc: Borislav Petkov Cc: Dave Hansen Cc: x86@kernel.org Cc: "H. Peter Anvin" Cc: linux-kernel@vger.kernel.org