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 67768C433EF for ; Mon, 18 Jul 2022 23:52:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235276AbiGRXws (ORCPT ); Mon, 18 Jul 2022 19:52:48 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59494 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231609AbiGRXwq (ORCPT ); Mon, 18 Jul 2022 19:52:46 -0400 Received: from desiato.infradead.org (desiato.infradead.org [IPv6:2001:8b0:10b:1:d65d:64ff:fe57:4e05]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B00C533A08 for ; Mon, 18 Jul 2022 16:52:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=desiato.20200630; h=In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=M1/SS0P2qiKSfLGyk8FsxEkTVDeHhn+db9rxuTa/gM4=; b=QemNxpjKI01DOUTOnj5s7mrk9I enRWE0TEyg9GajCO7JniUUNxp2btXJt/qWm7mTuno0EcpAOlSreROAkuGRZteOknx0FvKmSOadPSW UkGjog4TqhV7uienoFmodPh9aYMGNPrlSXxeijbiRfwRnW36zUM1H3w3Nb0B3A3Rg98tzAvuBxKbj cB44baZulx01ZsWgkbwup5mSOkJt7OabkYPfDMmvReXwQen2Trp58jjWAbwG/beSofjjS/FeqgR5I V7lfilZyccoATyOiqjf/GaU8g36xVbcX+rJ2GN7RQyO/F0wAilgpoiAahGcDyC6Bc5zRPe0z1JFPO ve783Dlg==; Received: from j130084.upc-j.chello.nl ([24.132.130.84] helo=worktop.programming.kicks-ass.net) by desiato.infradead.org with esmtpsa (Exim 4.94.2 #2 (Red Hat Linux)) id 1oDaXF-004vWA-NP; Mon, 18 Jul 2022 23:52:23 +0000 Received: by worktop.programming.kicks-ass.net (Postfix, from userid 1000) id 931529802A7; Tue, 19 Jul 2022 01:52:20 +0200 (CEST) Date: Tue, 19 Jul 2022 01:52:20 +0200 From: Peter Zijlstra To: Linus Torvalds Cc: Thomas Gleixner , LKML , the arch/x86 maintainers , Tim Chen , Josh Poimboeuf , Andrew Cooper , Pawan Gupta , Johannes Wikner , Alyssa Milburn , Jann Horn , "H.J. Lu" , Joao Moreira , Joseph Nuzman , Steven Rostedt , Juergen Gross , Masami Hiramatsu , Alexei Starovoitov , Daniel Borkmann Subject: Re: [patch 00/38] x86/retbleed: Call depth tracking mitigation Message-ID: References: <20220716230344.239749011@linutronix.de> <87wncauslw.ffs@tglx> <87tu7euska.ffs@tglx> <87o7xmup5t.ffs@tglx> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Jul 18, 2022 at 03:34:51PM -0700, Linus Torvalds wrote: > I think the main cause is that the ACPI code builds with > > ccflags-y := -Os -D_LINUX -DBUILDING_ACPICA > > and that '-Os' will disable all function alignment. I think there's a > few other places that do that too. Urgh, that's -Ostupid, right?