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 30FE42D595D for ; Thu, 20 Nov 2025 20:15:02 +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=1763669703; cv=none; b=CE5SM8rT102Y3xjfMPTgrCV92UO8NwuQLBvPa8MF8RMcJ3pxDic93WoeuZ3X9f8noGO5B+mVKZbMAh4wZdqCQmRF4HfwAL2P4XFgeG+EqY3sLPyi1olNNSjHrKtrm2v+9upDVZ0/CG7o0wghwNiCOoiklo+LI/Uq/uYbfhlmn1k= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1763669703; c=relaxed/simple; bh=k4DlPy4abi1VTkLKC8/M5LsAWHKxt+mSMOeKUEJcofA=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=bkF5WMhKrP8GQQXeFBB3ojY8FpR4JZ6jPHB/nh+MLzri+Ux+bIwv8VYe7X0Yzm1oj5B/RdBveTuOks3j1WLO2yc4eoK42QIUZvGh5VWFLzDZGm8eAMSihF8r7+MmozzQ58S7xrhrECBEVb5cxZcP7hZo5WtDlOvNI+K9exeuiG8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=QCxB+QqG; 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="QCxB+QqG" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 49C7CC4CEF1; Thu, 20 Nov 2025 20:15:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1763669702; bh=k4DlPy4abi1VTkLKC8/M5LsAWHKxt+mSMOeKUEJcofA=; h=From:To:Cc:Subject:Date:From; b=QCxB+QqGOh8WctE4kjvlGePlS6TAOTFjEbS4WQ4tBl33geN4EST78p29NETkfWMSS wqh348eBRPM1vNGxpID6BAQHkXTRSF+XDlkqWz1CHHbqlOvI0Q+pm++iI1REo1lVh/ 45i0axNsev84E5I3RUisDK7koXgvAvFYPg0MzBPa4dRXUPhGOQ31YyRTIAopiz5Qob pPGdWBcWHZ2ON2s6RqforxMaUPziGhQRxAFQ5Z0lA9F9bxm/jDvgNGxmdo4Ksnc+r4 RFvA5aTjf6fJO9WobQlNASevbbB8E4TSCvjc0etGZpLMHYWIb9yyFZoB+QlUHBaOeB V30eXQlOnP3wA== From: Josh Poimboeuf To: x86@kernel.org Cc: linux-kernel@vger.kernel.org, Peter Zijlstra , Greg Kroah-Hartman , Jiri Slaby , Mauro Carvalho Chehab , Hans de Goede Subject: [PATCH 0/6] objtool: More -ffunction-sections fixes Date: Thu, 20 Nov 2025 12:14:15 -0800 Message-ID: X-Mailer: git-send-email 2.51.1 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit For tip/objtool/core. - Patches 1-4: Rename functions - Patches 5-6: Move the check out of objtool Josh Poimboeuf (6): serial: icom: Fix namespace collision and startup() section placement with -ffunction-sections media: atomisp: gc2235: Fix namespace collision and startup() section placement with -ffunction-sections tty: amiserial: Fix namespace collision and startup() section placement with -ffunction-sections tty: synclink_gt: Fix namespace collision and startup() section placement with -ffunction-sections kbuild: Check for functions with ambiguous -ffunction-sections section names Revert "objtool: Warn on functions with ambiguous -ffunction-sections section names" .../media/atomisp/i2c/atomisp-gc2235.c | 4 +-- drivers/tty/amiserial.c | 14 ++++---- drivers/tty/serial/icom.c | 8 ++--- drivers/tty/synclink_gt.c | 20 +++++------ include/asm-generic/vmlinux.lds.h | 2 +- scripts/Makefile.vmlinux_o | 4 +++ scripts/check-function-names.sh | 25 ++++++++++++++ tools/objtool/Documentation/objtool.txt | 7 ---- tools/objtool/check.c | 33 ------------------- 9 files changed, 53 insertions(+), 64 deletions(-) create mode 100755 scripts/check-function-names.sh -- 2.51.1