Blame SOURCES/0197-cxl-list-make-memdevs-and-regions-the-default-listin.patch

2eb93d
From fade1a8039446ed1aa8656f49121886c71d221a4 Mon Sep 17 00:00:00 2001
2eb93d
From: Vishal Verma <vishal.l.verma@intel.com>
2eb93d
Date: Mon, 15 Aug 2022 13:22:12 -0600
2eb93d
Subject: [PATCH 197/217] cxl/list: make memdevs and regions the default
2eb93d
 listing
2eb93d
2eb93d
Instead of only listing regions by default (which can often be empty if
2eb93d
no regions have been configured), change the default listing mode to
2eb93d
both memdevs and regions. This will allow a plain 'cxl-list' to be a
2eb93d
quick health check of whether all the expected memdevs have enumerated
2eb93d
correctly, and see any regions that have been configured.
2eb93d
2eb93d
Link: https://lore.kernel.org/r/20220815192214.545800-10-vishal.l.verma@intel.com
2eb93d
Cc: Dan Williams <dan.j.williams@intel.com>
2eb93d
Reviewed-by: Dan Williams <dan.j.williams@intel.com>
2eb93d
Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
2eb93d
---
2eb93d
 cxl/list.c | 3 ++-
2eb93d
 1 file changed, 2 insertions(+), 1 deletion(-)
2eb93d
2eb93d
diff --git a/cxl/list.c b/cxl/list.c
2eb93d
index 88ca9d9..5f604ec 100644
2eb93d
--- a/cxl/list.c
2eb93d
+++ b/cxl/list.c
2eb93d
@@ -100,9 +100,10 @@ int cmd_list(int argc, const char **argv, struct cxl_ctx *ctx)
2eb93d
 			param.regions = true;
2eb93d
 	}
2eb93d
 
2eb93d
-	/* List regions by default */
2eb93d
+	/* List regions and memdevs by default */
2eb93d
 	if (num_list_flags() == 0) {
2eb93d
 		param.regions = true;
2eb93d
+		param.memdevs = true;
2eb93d
 	}
2eb93d
 
2eb93d
 	log_init(&param.ctx, "cxl list", "CXL_LIST_LOG");
2eb93d
-- 
2eb93d
2.27.0
2eb93d