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 7C9B819E96D; Wed, 4 Feb 2026 15:34:56 +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=1770219296; cv=none; b=mQ3CDLoj87WtABEtNNPAo+SyR+jZR/hCYlwVSWKWLudhAdvVoTMkkTcddX13VEYikUNXJ13Goek41HxGPLS30MMoxHKWyilGMyd6I69pKDfSzoAGSJxL6E1AOgwbcinVNcSE2vq9SuUKiAJAedtU8WAWjzLvz4ahuLBUZo2zAe4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1770219296; c=relaxed/simple; bh=nL3NUhHf2dSsL5qnHcF/PqAYj+cN2gxjmziNHXb9WP4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Ump/AhGEdATPvYrYPpJYR/+ZoMsbpkJPuVEXoE6ooCTDNJpzm9NiaHdKtM/PtyFS09C1c7BTqkzD9GyjbR7qUDnIf/9dapjHUbhTCVTVCzUL32ff6iFD6qrniscOpjOx58mdQR09fX3tnezBYL6PasVoA0ardBzbNgiy5Qa30EI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=iwZmT4YQ; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="iwZmT4YQ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E0441C4CEF7; Wed, 4 Feb 2026 15:34:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1770219296; bh=nL3NUhHf2dSsL5qnHcF/PqAYj+cN2gxjmziNHXb9WP4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=iwZmT4YQDX7Pqx6qHajB94h2iXYKqEywy+FzDFvHT3H9K678X8q1iUnmb+UwvMj0h 8yEhx3rsOMAICUq8Jq4OZ1Kgdy5BNZfeCxybEFfrIEbG0LigVaWIQx7RGHUc5F6k6F Kqc2dKKKgb4lFN11SO2/jZEB+KGkOH2cZ9OfyZbE= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Tamir Duberstein , Jesung Yang , Benno Lossin , Miguel Ojeda Subject: [PATCH 6.18 099/122] scripts: generate_rust_analyzer: Add compiler_builtins -> core dep Date: Wed, 4 Feb 2026 15:41:21 +0100 Message-ID: <20260204143855.411224449@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260204143851.857060534@linuxfoundation.org> References: <20260204143851.857060534@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: Tamir Duberstein commit 5157c328edb35bac05ce77da473c3209d20e0bbb upstream. Add a dependency edge from `compiler_builtins` to `core` to `scripts/generate_rust_analyzer.py` to match `rust/Makefile`. This has been incorrect since commit 8c4555ccc55c ("scripts: add `generate_rust_analyzer.py`") Signed-off-by: Tamir Duberstein Reviewed-by: Jesung Yang Acked-by: Benno Lossin Fixes: 8c4555ccc55c ("scripts: add `generate_rust_analyzer.py`") Cc: stable@vger.kernel.org Link: https://patch.msgid.link/20250723-rust-analyzer-pin-init-v1-1-3c6956173c78@kernel.org Signed-off-by: Miguel Ojeda Signed-off-by: Greg Kroah-Hartman --- scripts/generate_rust_analyzer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/scripts/generate_rust_analyzer.py +++ b/scripts/generate_rust_analyzer.py @@ -106,7 +106,7 @@ def generate_crates(srctree, objtree, sy append_crate( "compiler_builtins", srctree / "rust" / "compiler_builtins.rs", - [], + ["core"], ) append_crate(