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 E3B06218AD4 for ; Sun, 1 Mar 2026 09:28:48 +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=1772357329; cv=none; b=L95EGm2XljqrENl9RiiU+yB4r2ypzfDTihGxhrGMrU2RqiNbm773oaI/CuJqzATNWTO67wVCnNoHnL6jyoz13recH5G2LiSNrt7SK5Xs15h1FJD4V35ToOij3WWDiWQbXuxVkbHZT79zJbtdEyKCTXXYu5urqHcZT/Vl6akxooE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772357329; c=relaxed/simple; bh=nuOdqHvA+nyrBfFJ+Ldfi7Nyl9T/MnN298SEEwjy44c=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=tqlkCKEL/zrPf/1e5odp8i4r3cTnZpZTupfPOICnWDmH65fOiHmu1IHvdces266IQ1mLCcTggFsCmXwPiuxutm3b5q2n6S1H7gHMOBe85df3JWBDT/gruyCCX8kU4SSK9Bkrjg5Pomw1etpekr5FG1qn7CJ2RhaUJM4697yVBEk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=fwFA2TQg; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="fwFA2TQg" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5198FC116C6; Sun, 1 Mar 2026 09:28:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1772357328; bh=nuOdqHvA+nyrBfFJ+Ldfi7Nyl9T/MnN298SEEwjy44c=; h=Date:From:To:Cc:Subject:From; b=fwFA2TQg1TTrIzWaws9vDLg466KHzapOS6krNGYJKCpOLtUMYzpm/XHYuB1YC7BEI addDZ5eCJYo4OcqVCrBrpgPATbayeFfxYToZ6cdAP2frsrnm4KUnNQiUqIsFazzXg9 FwoyEWJ6pv1hc/JP0iK2e87RwGUxXpZ0t8RVUNXDSahHQ01maCcHIxF5FUck0F6mKP 6Swi1ehCvvKmvSd/tKsAefOLIhAiVWoXXnwdq1AXiatDerHHdsrXBPEZT0EIrmAVxM fdlhhbG575z+e2Agg7xB6Z6LSFcgGNE3YnbqgsbFTo9Qhr0qxZw1m+ruGhoLK/GnBz i2TsjtTNwf5SA== Date: Sun, 1 Mar 2026 10:28:45 +0100 From: Ingo Molnar To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, the arch/x86 maintainers , Peter Zijlstra Subject: [GIT PULL] x86 fixes Message-ID: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Linus, Please pull the latest x86/urgent Git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86-urgent-2026-03-01 for you to fetch changes up to 237dc6a054f6787c2a8f61c59086030267e5e1c5: Miscellaneous x86 fixes: - Fix speculative safety in fred_extint() - Fix __WARN_printf() trap in early_fixup_exception() - Fix clang-build boot bug for unusual alignments, triggered by CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B=y - Replace the final few __ASSEMBLY__ stragglers that snuck in lately into non-UAPI x86 headers and use __ASSEMBLER__ consistently (again). Thanks, Ingo ------------------> Andrew Cooper (1): x86/fred: Correct speculative safety in fred_extint() Hou Wenlong (1): x86/bug: Handle __WARN_printf() trap in early_fixup_exception() Peter Zijlstra (1): x86/cfi: Fix CFI rewrite for odd alignments Thomas Huth (1): x86/headers: Replace __ASSEMBLY__ stragglers with __ASSEMBLER__ arch/x86/entry/entry_fred.c | 5 ++--- arch/x86/include/asm/bug.h | 6 +++--- arch/x86/include/asm/cfi.h | 12 ++++++++---- arch/x86/include/asm/irqflags.h | 4 ++-- arch/x86/include/asm/linkage.h | 4 ++-- arch/x86/include/asm/percpu.h | 2 +- arch/x86/include/asm/runtime-const.h | 6 +++--- arch/x86/include/asm/traps.h | 2 ++ arch/x86/kernel/alternative.c | 29 ++++++++++++++++++++++------- arch/x86/kernel/traps.c | 2 +- arch/x86/mm/extable.c | 7 ++----- arch/x86/net/bpf_jit_comp.c | 13 ++----------- 12 files changed, 50 insertions(+), 42 deletions(-)