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 B1CDB150995; Tue, 20 Feb 2024 21:04:35 +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=1708463075; cv=none; b=PtadD/ry2Dd9g2gZvDpS34L9k6fCcUKFRiLg7GAd9NM4kc2GLnxhOXUc0oMv+w5phT0fVcDqR+waYCSU4JN0YLAdDJS/RjnwdUqSbyTeT19qXh3QCokGLRadcVgJXyRMRhr1Hz4PJtArmd1J0gbajr3v8wgWD0iZGT3OseKy7XM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1708463075; c=relaxed/simple; bh=XYfHwSbLCXzv4aEz1h58CBU1ZCqooezmTdbBG+LsKkA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=cmHrBmTznyf9aNOte9VVyfXIKTwRp1/bMFfSUUxuI0x50QyG/r5VFYZKFpExTqQacWnVVOnXfx66YkYKqMZHQwNT+oPyjAinMD1oZEn298xWVmz9EOI2rqBpe6y+/BD1jd9Gd3xDNPEf6nj4A97PNt5pkkHEHYghIiI7mFGMGfY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=wq9CW92V; 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="wq9CW92V" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3160BC433C7; Tue, 20 Feb 2024 21:04:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1708463075; bh=XYfHwSbLCXzv4aEz1h58CBU1ZCqooezmTdbBG+LsKkA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=wq9CW92VIBQhRQ2N2n643juZ3Ffq/rxmczeUy9N1/AzhtH31rbZfFTxt8wFRbrcES XTPObBgcvOsp2CPeGkVVwm4d6i5DcpRcyq2lK9E9WknIyapwLgF7vaMpg/ZrD8Ft2i kjwpbMVExeUY1tJf2vidmhxg5h3004Y0K6efJrpM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Aleksander Mazur , "Borislav Petkov (AMD)" , "H. Peter Anvin" , stable@kernel.org Subject: [PATCH 6.1 127/197] x86/Kconfig: Transmeta Crusoe is CPU family 5, not 6 Date: Tue, 20 Feb 2024 21:51:26 +0100 Message-ID: <20240220204844.874274481@linuxfoundation.org> X-Mailer: git-send-email 2.43.2 In-Reply-To: <20240220204841.073267068@linuxfoundation.org> References: <20240220204841.073267068@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Aleksander Mazur commit f6a1892585cd19e63c4ef2334e26cd536d5b678d upstream. The kernel built with MCRUSOE is unbootable on Transmeta Crusoe. It shows the following error message: This kernel requires an i686 CPU, but only detected an i586 CPU. Unable to boot - please use a kernel appropriate for your CPU. Remove MCRUSOE from the condition introduced in commit in Fixes, effectively changing X86_MINIMUM_CPU_FAMILY back to 5 on that machine, which matches the CPU family given by CPUID. [ bp: Massage commit message. ] Fixes: 25d76ac88821 ("x86/Kconfig: Explicitly enumerate i686-class CPUs in Kconfig") Signed-off-by: Aleksander Mazur Signed-off-by: Borislav Petkov (AMD) Acked-by: H. Peter Anvin Cc: Link: https://lore.kernel.org/r/20240123134309.1117782-1-deweloper@wp.pl Signed-off-by: Greg Kroah-Hartman --- arch/x86/Kconfig.cpu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/arch/x86/Kconfig.cpu +++ b/arch/x86/Kconfig.cpu @@ -375,7 +375,7 @@ config X86_CMOV config X86_MINIMUM_CPU_FAMILY int default "64" if X86_64 - default "6" if X86_32 && (MPENTIUM4 || MPENTIUMM || MPENTIUMIII || MPENTIUMII || M686 || MVIAC3_2 || MVIAC7 || MEFFICEON || MATOM || MCRUSOE || MCORE2 || MK7 || MK8) + default "6" if X86_32 && (MPENTIUM4 || MPENTIUMM || MPENTIUMIII || MPENTIUMII || M686 || MVIAC3_2 || MVIAC7 || MEFFICEON || MATOM || MCORE2 || MK7 || MK8) default "5" if X86_32 && X86_CMPXCHG64 default "4"