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 CB05A20F090; Tue, 17 Jun 2025 15:38:14 +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=1750174694; cv=none; b=RCFFBTisw4rp4KqBU1LcPLp8SRTSxrL29DiWP4P3Nqo0HPj/KTg68AysulAFwaNwcO5S+/4XF9BEjUUuwzrdKaMbpmZoaXfZ5v1x0QMLK/h7UFlytpkKnSlbAZaUSDQzzETmU6hJZWBzd5Be1zUQ9JGwKVaqhBH9fW6qZ2/k9N8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1750174694; c=relaxed/simple; bh=c4f4JQVuIAULmcaIbgb6AKjUqPXifWCtTqA+rIcR2KM=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=GHTNpS4Z8WqN3kluzXMhiaxKk9HihIoN7haP7gzud0bbPn7jk0PKyhoPilpCJvtVcxRzekfQxRXytJa2uO0jc2Qj06ELERhsZfWi/NzVtALw/T+VAL+6s0MrKwh2w65dnNj/ubERH+GFVxJrLTV88JXR9ym7wKPmDcBvpGOzITo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=yEPXCkyd; 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="yEPXCkyd" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 37171C4CEE3; Tue, 17 Jun 2025 15:38:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1750174694; bh=c4f4JQVuIAULmcaIbgb6AKjUqPXifWCtTqA+rIcR2KM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=yEPXCkydq3tHxFKtDqdA07UgKf6FmBM7ZVgCBzZ7yoLTHQvTrJtr2H0gM+idhU9hf 0occcTkWit617h8Sxsg1+2q9CBnMkgUQrwU3kVLAPb13y8E+QqErpyLBQmKaI5Yr/b X/9CMkyt3Tan5QCRbZmyDcdDDayJkrrDfPaF9f34= 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.15 009/780] kunit: qemu_configs: sparc: Explicitly enable CONFIG_SPARC32=y Date: Tue, 17 Jun 2025 17:15:17 +0200 Message-ID: <20250617152451.875509546@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250617152451.485330293@linuxfoundation.org> References: <20250617152451.485330293@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.15-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