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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 6000EC4332F for ; Fri, 18 Nov 2022 19:44:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To: Message-Id:Date:Subject:Cc:To:From:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=iWA8un8Z73ArEjAfYq2ZRVG8ry8yh/Xcz62h9etldT8=; b=VLfpqYZ83hq761 y0XlT/MyvAav2lwIlg3m22xF9gOcCTKQYGThk3eBi2D8+ydnn+Kcn7x5TjaUREfGknayn2eQYzHcN CbA9tEGorH4Y2mzAnpWHaA87k7IGR6Am4RTmzmmdowljdPFFzQf0O5v38IthMIthhpbP4RlAKNGuf LNRI6Mr2Y2q2K3FerWqepwJhb57QGf7ID98aVccnHOIf4A/lJmX9EeghqdkzC5E/wQ6qufEgC61K3 P3/VBCORVfvXgdECONvOiaw+R23r6ca1XuBmolKZFgCG2K42LyuuxE7WIRc0ubpfaQU5vheL49RAp B/x53xWoQYWQ/nWckI6w==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1ow7Gm-007fBS-Nm; Fri, 18 Nov 2022 19:43:25 +0000 Received: from dfw.source.kernel.org ([139.178.84.217]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1ow7Eg-007dy0-P2 for linux-arm-kernel@lists.infradead.org; Fri, 18 Nov 2022 19:41:16 +0000 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 5CA7D6275F; Fri, 18 Nov 2022 19:41:14 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7D244C433C1; Fri, 18 Nov 2022 19:41:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1668800473; bh=gA3JTWy1utXvh8Uq/Wwj+C/AfCNRZpQlMOP4+RISsg4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=kVEzbRDqdEpb/g/ejra73pmXoS4pe0fSMfTYRbe8AyFV+0xtf3KcbeDdKCrabiNwW ACQPz+jLTxC72aIMHWkboUljKFRDlEaS0fNbMJqcjIg8Wt6WJGYpMauWdCuYq83yNv mrHgSlvo+0gPknRsr5wb7lEWLyiYL9l0dcwWeIALtANCxFMl79lOB5q0XRc4kvRcDW R132CkrbczK2jYn+M4Mu1n4l5LKkkfBC+WoCXBm1WxIRdMd+xTcPiW99EgAKPJzl3a WnZJxs7XcKiZQK593JpY7Cl3ZiHF5ZU6vgGsqtx35Km94NryAm71kiyyzRtYtxqbFS vzcBH/WrvX5RQ== From: Will Deacon To: linux-arm-kernel@lists.infradead.org, Mark Rutland Cc: catalin.marinas@arm.com, kernel-team@android.com, Will Deacon , joey.gouly@arm.com Subject: Re: [PATCH] arm64: alternatives: make apply_alternatives_vdso() static Date: Fri, 18 Nov 2022 19:40:46 +0000 Message-Id: <166878105774.1783970.9426769723909053922.b4-ty@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20221117131650.4056636-1-mark.rutland@arm.com> References: <20221117131650.4056636-1-mark.rutland@arm.com> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20221118_114114_885341_C0021EBA X-CRM114-Status: GOOD ( 10.29 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Thu, 17 Nov 2022 13:16:50 +0000, Mark Rutland wrote: > We define and use apply_alternatives_vdso() within alternative.c, and > don't provide a prototype in a header. There's no need for it to be > visible outside of alternative.c, so mark it as static. > > There should be no functional change as a result of this patch. > > > [...] Applied to arm64 (for-next/trivial), thanks! [1/1] arm64: alternatives: make apply_alternatives_vdso() static https://git.kernel.org/arm64/c/56eea7f87fb6 Cheers, -- Will https://fixes.arm64.dev https://next.arm64.dev https://will.arm64.dev _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel