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 3EBE05FDAF for ; Fri, 8 Mar 2024 22:00:50 +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=1709935251; cv=none; b=JtOPLmXJgvGgeC493AAxjrjFBT31nIl+l+yoZV9MF/qaO56V5o28vVuWetbudl88Ot8vyshW4JXKvDRcGouzbI+mPa700gF2bdKRgEBSYok4nYR16Q4hgJ3BYijPoeFu7732bRi7STG6h6RzdYpL+Xpg2PPMidBqZ13rmcoEYlM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1709935251; c=relaxed/simple; bh=NVce76jCDgzihCgHYoWkH2onIL8Qy1eb+BQGg/kgBHE=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=CVugqYcFU97vp/Vvq/Rnn24F0z8xpWLOTxHFFzI2T94fsWQ7yAX0tjMRV2ZgFfFNlVb7biKDeQcdg7ijTbT+LK8JBEEHzzckdrn5FerP0+H62N7GZ/Wm+pTx68H09+Lum+fjybklAZoNBV5t+p7Ydgtef/xcfhpDq+bQaboHSik= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=fail (p=none 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=waSYxrH6; arc=none smtp.client-ip=198.137.202.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=fail (p=none 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="waSYxrH6" 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:Message-ID:Date:Subject:Cc:To:From:Reply-To:Content-Type: Content-ID:Content-Description:In-Reply-To:References; bh=8MdUeDCzB3M3aml2sorlOE6fiow1pDomkWiyMyLbcV8=; b=waSYxrH6Fk5ItTeD4RXlJfziNl b/zoW/YcwFptN/jw1qLi1iL/1NrLdbsoIj0LLymC6RnHVnol43ZinUBLUYMmLUAnBPVqpWQmOBxjf pH7BHBvma6yLqi7kif7p2MOXxRgsfl1KCyFxIreka6+KHwBboHWHcmIZCYfph6FhMD8xMMoEyDNJP ranl3Dy90z1KyHRk4ah4fOKmj69VSwCsY3hB1W1ionlbNjDyfvOSPy/qXpp8tav23jYC5xXyVLRD1 v1y6b+ceuw7zxMo1xP+fF6GgnxsaSeHLoHZedsdKj86qAzayqYWym0HJ+VYDV6h4sN4jCvHtUucWS xUwOjY/g==; Received: from mcgrof by bombadil.infradead.org with local (Exim 4.97.1 #2 (Red Hat Linux)) id 1riiGn-0000000BQJA-04H0; Fri, 08 Mar 2024 22:00:49 +0000 From: Luis Chamberlain To: kdevops@lists.linux.dev Cc: dave@stgolabs.net, a.manzanares@samsung.com, fan.ni@samsung.com, jim.harris@samsung.com, Luis Chamberlain Subject: [PATCH] bringup: make guestfs default Date: Fri, 8 Mar 2024 14:00:45 -0800 Message-ID: <20240308220046.2722712-1-mcgrof@kernel.org> X-Mailer: git-send-email 2.44.0 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 guestfs has been tested in quite a bit of workflows already and other than CXL and ZNS support, it's all there. ZNS support should be easy to add, and we need to revisit how we scale CXL support for more random dynamic topologies anyway, so that work can be done with guestfs. So just make guestfs default now. Signed-off-by: Luis Chamberlain --- Speak now or hold your peace. kconfigs/Kconfig.bringup | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kconfigs/Kconfig.bringup b/kconfigs/Kconfig.bringup index 2d913ea625ba..d20d427057f2 100644 --- a/kconfigs/Kconfig.bringup +++ b/kconfigs/Kconfig.bringup @@ -3,7 +3,7 @@ config BRINGUP_SUPPORTS_CXL choice prompt "Node bring up method" - default VAGRANT + default GUESTFS config VAGRANT bool "Vagrant for local virtualization (KVM / VirtualBox)" @@ -22,7 +22,7 @@ config VAGRANT make deps config GUESTFS - bool "Use guestfs-tools for local virtualization via KVM and libvirt (EXPERIMENTAL)" + bool "Use guestfs-tools for local virtualization via KVM and libvirt" select EXTRA_STORAGE_SUPPORTS_LARGEIO help This option will use libguestfs utilities instead of Vagrant to build -- 2.43.0