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 10AB25464F; Tue, 8 Jul 2025 16:42:09 +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=1751992930; cv=none; b=sgJUcpr0twRIp1dHQDdzlCeKfppGZs1oCzqiUhvtx4Ftf42eKMKZ+rO3djVoxz2tNBYdbMIoAP2L134a+A0tht+1ZR2mrheHpgIqQFvN1SvnL+gkTsdH1g0Ed2vLwlLRACxvD4avPaTLyANKvEyhKLejVsZ1h5PmbFvo8sJq9E0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1751992930; c=relaxed/simple; bh=yh3Eqss4pl1JDtvPw/KL4FBhSEhjnA8rSaEOOPTlW4U=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=LPNojslWWOZmR7+Mgj8m2/d8xQ8FQIUsNhwQkS4IOhAk0KBUsIGuCeYhezoHZoj8jtI+1aUh3Ebi5eZLKG28bPTGHJvv07QdN99lR2ALHDuzdUA7yNmyYhFjecqzO4eMuVuIULL8xBsKEP96KMfujhk9+47Mi1IMeYrjSYshxak= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=l/+v5Vtk; 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="l/+v5Vtk" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 47502C4CEED; Tue, 8 Jul 2025 16:42:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1751992929; bh=yh3Eqss4pl1JDtvPw/KL4FBhSEhjnA8rSaEOOPTlW4U=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=l/+v5Vtkbg3e+Ievf+QeuyKASqeNm5F7UGSwaI4XmxcTIW5GYNF1C4jPiirJiZjq1 QdmRJ53A65W1SMlj2mJxi5deQaZw8EnhVYBKGZjIzPiOAFpFC/9YgphZB2XZJrZc7+ X2CsHukWIsfPmyE1aw6AsT9kBSaqXExL9DXqzZ0E= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, =?UTF-8?q?Thomas=20Wei=C3=9Fschuh?= , David Gow , Shuah Khan , Sasha Levin Subject: [PATCH 6.12 099/232] kunit: qemu_configs: sparc: Explicitly enable CONFIG_SPARC32=y Date: Tue, 8 Jul 2025 18:21:35 +0200 Message-ID: <20250708162244.036805363@linuxfoundation.org> X-Mailer: git-send-email 2.50.0 In-Reply-To: <20250708162241.426806072@linuxfoundation.org> References: <20250708162241.426806072@linuxfoundation.org> User-Agent: quilt/0.68 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-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Thomas Weißschuh [ Upstream commit d16b3d0fb43cb0f9eb21b35c2d2c870b3f38ab1d ] The configuration generated by kunit ends up with a 32bit configuration. A new kunit configuration for 64bit is to be added. To make the difference clearer spell out the variant in the kunit reference config. Link: https://lore.kernel.org/r/20250415-kunit-qemu-sparc64-v1-1-253906f61102@linutronix.de Signed-off-by: Thomas Weißschuh Reviewed-by: David Gow Signed-off-by: Shuah Khan Stable-dep-of: 1d31d536871f ("kunit: qemu_configs: Disable faulting tests on 32-bit SPARC") Signed-off-by: Sasha Levin --- tools/testing/kunit/qemu_configs/sparc.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/testing/kunit/qemu_configs/sparc.py b/tools/testing/kunit/qemu_configs/sparc.py index 256d9573b4464..3131dd299a6e3 100644 --- a/tools/testing/kunit/qemu_configs/sparc.py +++ b/tools/testing/kunit/qemu_configs/sparc.py @@ -2,6 +2,7 @@ from ..qemu_config import QemuArchParams QEMU_ARCH = QemuArchParams(linux_arch='sparc', kconfig=''' +CONFIG_SPARC32=y CONFIG_SERIAL_SUNZILOG=y CONFIG_SERIAL_SUNZILOG_CONSOLE=y ''', -- 2.39.5