aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorVishal Verma <vishal.l.verma@intel.com>2022-06-09 18:36:10 -0600
committerVishal Verma <vishal.l.verma@intel.com>2022-08-16 00:15:26 -0600
commit0ec9bd077e640749f78110d885e6cb2d0a79e87c (patch)
tree2cd3962c59546205b06b83f574f8f6edd3ec25c8
parent4dc8b176c2859915cdf2b6c9e24043e2f12921fd (diff)
cxl/list: make memdevs and regions the default listing
Instead of only listing regions by default (which can often be empty if no regions have been configured), change the default listing mode to both memdevs and regions. This will allow a plain 'cxl-list' to be a quick health check of whether all the expected memdevs have enumerated correctly, and see any regions that have been configured. Cc: Dan Williams <dan.j.williams@intel.com> Reviewed-by: Dan Williams <dan.j.williams@intel.com> Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
-rw-r--r--cxl/list.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/cxl/list.c b/cxl/list.c
index 88ca9d97..5f604ecd 100644
--- a/cxl/list.c
+++ b/cxl/list.c
@@ -100,9 +100,10 @@ int cmd_list(int argc, const char **argv, struct cxl_ctx *ctx)
param.regions = true;
}
- /* List regions by default */
+ /* List regions and memdevs by default */
if (num_list_flags() == 0) {
param.regions = true;
+ param.memdevs = true;
}
log_init(&param.ctx, "cxl list", "CXL_LIST_LOG");