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 759E619D89E for ; Sun, 1 Feb 2026 08:47:04 +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=1769935624; cv=none; b=DoiqVdyuVSaiyKwQInVsFyXuDiifONOOBMy9vjqu51i4xl+O6mHPezAxFuGAdRn2JaT2P6tDe1HpXQpy8wnwvHz3dyRVS1sxFvIXYlV/c2fB2jWk8FsEP8MpneFGox16WHq7Q7zm7SP7OOu9iNGr8X7MngddeUj22uJgPIUsrGA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769935624; c=relaxed/simple; bh=D5+RUa3+YI3+5zQddcv4Z1HxuDNpS+wTUNCaU/0LiWw=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=qvA+U28lSi/gj6svOw0hN8O17Iz9Xe7NGoEY83NQtuYGUE09VWEOK83ztcCJuB2jmNnHpUddueF+JQRCt3rVphS0hqTCTPQsjMvI503Eas4aOQrlr8lj9qIx2252JOAw0xTddiPUTdJ3/H3cj2nToQy9ll9IrOXpaXobCuODGlY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=NqXlKgKT; 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="NqXlKgKT" Received: by smtp.kernel.org (Postfix) with ESMTPSA id ABA5FC4CEF7; Sun, 1 Feb 2026 08:47:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1769935623; bh=D5+RUa3+YI3+5zQddcv4Z1HxuDNpS+wTUNCaU/0LiWw=; h=Date:From:To:Cc:Subject:From; b=NqXlKgKTM68l5En0r7lo0BsGmAP9M2jaLFnZ/Ie0iC4z3Sq8F0edb4bKf2zoMi6tP JGRjF+W8Pehq3i59K3YE0nhZ4z1404V3A1UsKnMo24ws22RI6mINGA9Y7S5olNtgfb Xc1d3EqDMMXLmlrMbUoiQa9B2b5MSYzd9ubWksDFwk0EurT9gCMAvNmp7lF6b0Or5f q3C0rM0AgMJ/Pe6g8MnLVb+mIH1WNfaXLoVS8rc5UwtEBWdalrKk2xsFzBnhWT5XCb 5mTvpTpI8KFw0AywY6S8PCZQzyVSo8Y3yMcGM2o3YOOS0WUR/TUP3KLeVqc9Jwb7F6 GBf3ka2AWhIUA== Date: Sun, 1 Feb 2026 09:46:59 +0100 From: Ingo Molnar To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, Peter Zijlstra , Josh Poimboeuf Subject: [GIT PULL] objtool 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 objtool/urgent Git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git objtool-urgent-2026-02-01 for you to fetch changes up to 78c268f3781e4b9706103def0cc011505e0c4332: Miscellaneous objtool fixes: - Fix a build error on ia32-x86_64 cross builds - Replace locally open coded ALIGN_UP(), ALIGN_UP_POW2() and MAX(), which, beyond being duplicates, the ALIGN_UP_POW2() is also buggy. - Fix objtool klp-diff regression caused by a recent change to the bug table format. - Fix klp-build vs CONFIG_MODULE_SRCVERSION_ALL build failure. Thanks, Ingo ------------------> Dmitry Safonov (1): objtool: Print bfd_vma as unsigned long long on ia32-x86_64 cross build Josh Poimboeuf (2): objtool/klp: Fix bug table handling for __WARN_printf() livepatch/klp-build: Fix klp-build vs CONFIG_MODULE_SRCVERSION_ALL Petr Pavlu (1): objtool: Replace custom macros in elf.c with shared ones scripts/livepatch/klp-build | 8 ++++---- tools/objtool/disas.c | 14 ++++++++------ tools/objtool/elf.c | 13 ++++++------- tools/objtool/klp-diff.c | 14 +++++++++++--- 4 files changed, 29 insertions(+), 20 deletions(-)