From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 43E582E3385 for ; Mon, 11 Aug 2025 22:24:54 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.137.202.133 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1754951096; cv=none; b=XW1TZ1c9JM1bMLwwo06C6VD6vzz8i59AJTb2fwAY/u7gU0TZ5zpmcaBR+UF4privzcBs/But4cyunJYQNZwkNhGyFLgY47LCrXo5RCQFWJrmPGXOM7M4s+JacotwlBffOS+jawxuG3NP+QRAPaJ4e4kCRVYZBfl7do0QfjYftaw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1754951096; c=relaxed/simple; bh=Pza49K7ovCq/qA2H7gVMDRILvgOEg/u6B3hxDC+1KLc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=AuL7g4+OBboVXxGT76Qm+aKTquvdSseZliQzzH9ihDWtrlXxupG2OjtWzNWjtLFt3lN6Bys8mhwFmB8vCVyAG/dAPT98rPzRZ/DxXmtufMqJPMelS8O32Afz7mM3PrucewRI5obIHZGZ+UpZOR/kO0xUYRjeuZOUGqRd5uOqLxU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=fail (p=quarantine dis=none) header.from=kernel.org; spf=none smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=KY3gxCL+; arc=none smtp.client-ip=198.137.202.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=fail (p=quarantine dis=none) header.from=kernel.org Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="KY3gxCL+" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Sender:Content-Transfer-Encoding: MIME-Version:References:In-Reply-To:Message-ID:Date:Subject:Cc:To:From: Reply-To:Content-Type:Content-ID:Content-Description; bh=k2GVLXFt4t9hS5+GxDhHSLVOxGYpGAoK9KAOrDWTzOw=; b=KY3gxCL+oHzhBkNuyIbn8Av3Ft 6sacJPggo2Iw+NtJoio9v9PKX3Pivl6tpQSsYx6PDOV4O5EqXhrKXwRBQt5iE3enroofDhTR/wq7F XZEksont0p/GqrZvXczKC9nfvLwKGmRtDcTUGnd6viOoTbFBrZXIXyIZBd98cryLTvla8ClB7NM5U PjTuhXiVlxDgn0Tyn2OOgWo6QOz9sxzXvZbVhQ4pjCVlcDBzIlr+XymeO2dllALl3JpFFnuLa6c0L j9cuFYdsisnQLSWVyT27v7QTQ09kDu7R1MOnBLqwThdXvNTn4x84EqQDDhM0TDeGXzmpxJpFUd44K 1e255Y3w==; Received: from mcgrof by bombadil.infradead.org with local (Exim 4.98.2 #2 (Red Hat Linux)) id 1ulawn-00000009Hji-20NP; Mon, 11 Aug 2025 22:24:53 +0000 From: Luis Chamberlain To: Chuck Lever , Daniel Gomez , kdevops@lists.linux.dev Cc: Luis Chamberlain Subject: [PATCH 11/23] reboot-limit: simplify what gets selected Date: Mon, 11 Aug 2025 15:24:38 -0700 Message-ID: <20250811222452.2213071-12-mcgrof@kernel.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250811222452.2213071-1-mcgrof@kernel.org> References: <20250811222452.2213071-1-mcgrof@kernel.org> Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: Luis Chamberlain If you try to take the reboot-limit workflow for a spin right now you will run into a conflict with networkd.service and the bringup we have on debian-testing. I have narrowed this down to the few extra selects we do, and the reason is that we have not seen these issues before on our CI. Testing with these disabled fixes the issue so just disable those selects as we already do enough of a good job of enabling sensible defaults. Signed-off-by: Luis Chamberlain --- workflows/demos/reboot-limit/Kconfig | 4 ---- 1 file changed, 4 deletions(-) diff --git a/workflows/demos/reboot-limit/Kconfig b/workflows/demos/reboot-limit/Kconfig index ad6c2607..91fcd122 100644 --- a/workflows/demos/reboot-limit/Kconfig +++ b/workflows/demos/reboot-limit/Kconfig @@ -1,9 +1,5 @@ config WORKFLOWS_REBOOT_LIMIT bool "Reboot-limit" - select KDEVOPS_TRY_REFRESH_REPOS - select KDEVOPS_TRY_INSTALL_KDEV_TOOLS - select KDEVOPS_DEVCONFIG_ENABLE_CONSOLE - select KDEVOPS_DEVCONFIG_ENABLE_SYSTEMD_WATCHDOG help If you are doing kernel tests which includes a reboot, along the way, or if you do a reboot after a series of tests, you may want to first -- 2.47.2