93 lines
2.5 KiB
Diff
93 lines
2.5 KiB
Diff
|
From e32631009a97e4cb72e4afb8eec09f89c3317eb9 Mon Sep 17 00:00:00 2001
|
||
|
From: Dan Williams <dan.j.williams@intel.com>
|
||
|
Date: Thu, 28 Apr 2022 15:10:48 -0700
|
||
|
Subject: [PATCH 163/217] cxl/port: Relax port identifier validation
|
||
|
|
||
|
Now that util_cxl_port_filter() accepts port host identifiers it is no
|
||
|
longer possible to pre-validate that the port arguments follow the "port%d"
|
||
|
format. Instead, let all inputs through and warn if the filter fails to
|
||
|
identify a port.
|
||
|
|
||
|
Link: https://lore.kernel.org/r/165118384845.1676208.7570620216888371408.stgit@dwillia2-desk3.amr.corp.intel.com
|
||
|
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
|
||
|
Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
|
||
|
---
|
||
|
cxl/port.c | 30 ++++--------------------------
|
||
|
1 file changed, 4 insertions(+), 26 deletions(-)
|
||
|
|
||
|
diff --git a/cxl/port.c b/cxl/port.c
|
||
|
index 46a8f32..89f3916 100644
|
||
|
--- a/cxl/port.c
|
||
|
+++ b/cxl/port.c
|
||
|
@@ -145,7 +145,6 @@ static int port_action(int argc, const char **argv, struct cxl_ctx *ctx,
|
||
|
usage,
|
||
|
NULL
|
||
|
};
|
||
|
- unsigned long id;
|
||
|
|
||
|
log_init(&pl, "cxl port", "CXL_PORT_LOG");
|
||
|
argc = parse_options(argc, argv, options, u, 0);
|
||
|
@@ -153,31 +152,10 @@ static int port_action(int argc, const char **argv, struct cxl_ctx *ctx,
|
||
|
if (argc == 0)
|
||
|
usage_with_options(u, options);
|
||
|
for (i = 0; i < argc; i++) {
|
||
|
- const char *fmt;
|
||
|
-
|
||
|
if (strcmp(argv[i], "all") == 0) {
|
||
|
argc = 1;
|
||
|
break;
|
||
|
}
|
||
|
-
|
||
|
- if (param.endpoint)
|
||
|
- fmt = "endpoint%lu";
|
||
|
- else
|
||
|
- fmt = "port%lu";
|
||
|
-
|
||
|
- if (sscanf(argv[i], fmt, &id) == 1)
|
||
|
- continue;
|
||
|
- if (sscanf(argv[i], "%lu", &id) == 1)
|
||
|
- continue;
|
||
|
-
|
||
|
- log_err(&pl, "'%s' is not a valid %s identifer\n", argv[i],
|
||
|
- param.endpoint ? "endpoint" : "port");
|
||
|
- err++;
|
||
|
- }
|
||
|
-
|
||
|
- if (err == argc) {
|
||
|
- usage_with_options(u, options);
|
||
|
- return -EINVAL;
|
||
|
}
|
||
|
|
||
|
if (param.debug) {
|
||
|
@@ -187,7 +165,6 @@ static int port_action(int argc, const char **argv, struct cxl_ctx *ctx,
|
||
|
pl.log_priority = LOG_INFO;
|
||
|
|
||
|
rc = 0;
|
||
|
- err = 0;
|
||
|
count = 0;
|
||
|
|
||
|
for (i = 0; i < argc; i++) {
|
||
|
@@ -198,15 +175,16 @@ static int port_action(int argc, const char **argv, struct cxl_ctx *ctx,
|
||
|
|
||
|
endpoint = find_cxl_endpoint(ctx, argv[i]);
|
||
|
if (!endpoint) {
|
||
|
- log_dbg(&pl, "endpoint: %s not found\n",
|
||
|
- argv[i]);
|
||
|
+ log_notice(&pl, "endpoint: %s not found\n",
|
||
|
+ argv[i]);
|
||
|
continue;
|
||
|
}
|
||
|
port = cxl_endpoint_get_port(endpoint);
|
||
|
} else {
|
||
|
port = find_cxl_port(ctx, argv[i]);
|
||
|
if (!port) {
|
||
|
- log_dbg(&pl, "port: %s not found\n", argv[i]);
|
||
|
+ log_notice(&pl, "port: %s not found\n",
|
||
|
+ argv[i]);
|
||
|
continue;
|
||
|
}
|
||
|
}
|
||
|
--
|
||
|
2.27.0
|
||
|
|