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 55D5724466C; Thu, 9 Apr 2026 23:18:46 +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=1775776726; cv=none; b=HjZAloOy1hA59oieEi55rK9o9BkeyWl64Ievxohu0lxqdRVBSafD+H+TkaQuFZIA4OYTezauVPPKc2f43drs/mdENCAONduv8aSBE3zL3e/51goaEsEcaCcIPir+1rEiArJAh07ieqqnX+0EW9Rz+gm+aBSKDcQiD0YEE/TSzKI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1775776726; c=relaxed/simple; bh=eKDd6KUMUCu02RfSWacnIXaGCIk5zUPaj4PgRqhdJu8=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=jyYj5gLl6fRAPXWnjUAYw30G9kVw+fonjAIV76UCmV+II722f45tqQ81evcDYUlLmJ/qYCEZRD7oLrOAp3Y1fssmG3UwzEP5q2RhO/Zu1LjKAoz1KTVVfJPsg1vhvELo8AHVNP009yTMsvKf1EGnEIrx3uNsV1vK58VP5kkNxBc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=n8q5v/Oq; 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="n8q5v/Oq" Received: by smtp.kernel.org (Postfix) with ESMTPSA id DB81AC4CEF7; Thu, 9 Apr 2026 23:18:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1775776725; bh=eKDd6KUMUCu02RfSWacnIXaGCIk5zUPaj4PgRqhdJu8=; h=Date:From:To:Cc:Subject:From; b=n8q5v/Oqm2V2dUOt1sRaEkkk7zGGNVG8buuDWTJOijL27CCNH0PF4oiKBs5puMaA1 t+49XKKbsDWE7zp9QZLEimdAiyVad6Ra6S8kV3lw2IL9eXD2uzNOXcw6JF4f2VEutH gIykNyMjc8ePbBtSQ7Tbbck1HuBRfkHD4miOoa7MPAfNMLieC/mlv5YXcoZ+Vj+S6i oge21PxbtxBSbfKSAfOucMAyZQlcsrrRIKimcy0ozneUv/31bhxw0v8ybDct7SzF87 tfO0Ygr753Y+8j0iH7hv83D70nIh2Y6G8teVGyQFHg1G8fVOrYwysfDbBrsow514al mPBfvW0JRWPwQ== Date: Thu, 9 Apr 2026 16:18:42 -0700 From: Nathan Chancellor To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, Nicolas Schier , linux-kbuild@vger.kernel.org Subject: [GIT PULL] Kbuild fixes for 7.0 #4 Message-ID: <20260409231842.GA3337002@ax162> 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 Hi Linus, Please pull this final round of Kbuild fixes for 7.0, comprising of two small fixes. If there are any issues, please let me know. Cheers, Nathan The following changes since commit 7aaa8047eafd0bd628065b15757d9b48c5f9c07d: Linux 7.0-rc6 (2026-03-29 15:40:00 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/kbuild/linux.git tags/kbuild-fixes-7.0-4 for you to fetch changes up to deb4605671cfae3b2803cfbbf4739e7245248398: modpost: Declare extra_warn with unused attribute (2026-03-30 07:45:34 +0200) ---------------------------------------------------------------- Fourth round of Kbuild fixes for 7.0 - Make modules-cpio-pkg respect INSTALL_MOD_PATH so that it can be used with distribution initramfs files that have a merged /usr, such as Fedora. - Silence an instance of -Wunused-but-set-global, a strengthening of -Wunused-but-set-variable in tip of tree Clang, in modpost, as the variable for extra warnings is currently unused. Signed-off-by: Nathan Chancellor ---------------------------------------------------------------- Janne Grunau (1): kbuild: modules-cpio-pkg: Respect INSTALL_MOD_PATH Nathan Chancellor (1): modpost: Declare extra_warn with unused attribute scripts/Makefile.package | 3 ++- scripts/mod/modpost.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-)