From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 0443531A554; Tue, 26 Aug 2025 19:33:23 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756236804; cv=none; b=YKEiUueGQ90tXqeMb//N7BtrKp+CR5OqKM9Pzi/kdz52mgx2bjYSv0QF8oYkgg4Dg2QkNedDvAYSq7LBvjUB0jpJA/Ex6HfebB/5WedgrdwpM3lEY5+lUwmUP1D2NP4Ro2dfdH56PZCbOQgb3/JBZxvlp6UOBWvxOu8Stj1tK2o= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756236804; c=relaxed/simple; bh=KJemqvcAM+hbYKN2qfOFkDM9GRq1Lvu6Ize2kUx9zsU=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=GX5JU6x9iCU9VAbIVA3/UcbPc3DA+g2NCfXBgKNCcxo5jWCEeuc+qlIlUh9ZM0cUaom6KIX3JrsQxYRJhROacYIEDq42MBveckC6ScAFCKiFy3WraZV2sFE5UQMCOPi63NdKNe0Y8AqgIi2FBn3XPiN9B9hCOAcOs8kGzN40OVQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 Received: by smtp.kernel.org (Postfix) with ESMTPSA id E1D58C4CEF1; Tue, 26 Aug 2025 19:33:16 +0000 (UTC) Date: Tue, 26 Aug 2025 20:33:19 +0100 From: Catalin Marinas To: Thomas =?iso-8859-1?Q?Wei=DFschuh?= Cc: Andy Lutomirski , Thomas Gleixner , Vincenzo Frascino , Paul Walmsley , Palmer Dabbelt , Albert Ou , Alexandre Ghiti , Nam Cao , Russell King , Ingo Molnar , Borislav Petkov , Dave Hansen , x86@kernel.org, "H. Peter Anvin" , Will Deacon , Huacai Chen , WANG Xuerui , Thomas Bogendoerfer , Madhavan Srinivasan , Michael Ellerman , Nicholas Piggin , Christophe Leroy , Heiko Carstens , Vasily Gorbik , Alexander Gordeev , Christian Borntraeger , Sven Schnelle , Arnd Bergmann , Christian Brauner , Shuah Khan , linux-kernel@vger.kernel.org, linux-riscv@lists.infradead.org, linux-arm-kernel@lists.infradead.org, loongarch@lists.linux.dev, linux-mips@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, linux-s390@vger.kernel.org, linux-arch@vger.kernel.org, linux-kselftest@vger.kernel.org, Rasmus Villemoes Subject: Re: [PATCH 03/11] vdso: Move ENABLE_COMPAT_VDSO from core to arm64 Message-ID: References: <20250826-vdso-cleanups-v1-0-d9b65750e49f@linutronix.de> <20250826-vdso-cleanups-v1-3-d9b65750e49f@linutronix.de> Precedence: bulk X-Mailing-List: loongarch@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20250826-vdso-cleanups-v1-3-d9b65750e49f@linutronix.de> On Tue, Aug 26, 2025 at 08:17:06AM +0200, Thomas Weißschuh wrote: > The ENABLE_COMAPT_VDSO symbol is only used by arm64 and only for the > time-related functionality. There should be no new users, so it doesn't > need to be in the generic vDSO code. > > Move the logic into arm64 architecture-specific code and replace the > explicit define by the standard '#ifdef __aarch64__'. > > Signed-off-by: Thomas Weißschuh Acked-by: Catalin Marinas