Message ID | 164298564631.3021641.5552442288217413180.stgit@dwillia2-desk3.amr.corp.intel.com |
---|---|
State | New, archived |
Headers | show |
Series | cxl: Full topology enumeration | expand |
On Sun, Jan 23, 2022 at 04:54:06PM -0800, Dan Williams wrote: > Allow for a "-s, --serial" option to turn the argument list into serial > identifiers. > > Signed-off-by: Dan Williams <dan.j.williams@intel.com> > --- > Documentation/cxl/memdev-option.txt | 5 ++++ > Documentation/cxl/meson.build | 4 ++- > cxl/memdev.c | 45 ++++++++++++++++++++++++++--------- > 3 files changed, 41 insertions(+), 13 deletions(-) > > diff --git a/Documentation/cxl/memdev-option.txt b/Documentation/cxl/memdev-option.txt > index e7785827ab4c..64348bed1791 100644 > --- a/Documentation/cxl/memdev-option.txt > +++ b/Documentation/cxl/memdev-option.txt > @@ -2,3 +2,8 @@ > A 'memX' device name, or a memdev id number. Restrict the operation to > the specified memdev(s). The keyword 'all' can be specified to indicate > the lack of any restriction. > + > +-S:: > +--serial:: > + Rather an a memdev id number, interpret the <memdev> argument(s) Rather 'than' That's all :) > + as a list of serial numbers. snip
On Wed, Feb 9, 2022 at 5:06 PM Alison Schofield <alison.schofield@intel.com> wrote: > > On Sun, Jan 23, 2022 at 04:54:06PM -0800, Dan Williams wrote: > > Allow for a "-s, --serial" option to turn the argument list into serial > > identifiers. > > > > Signed-off-by: Dan Williams <dan.j.williams@intel.com> > > --- > > Documentation/cxl/memdev-option.txt | 5 ++++ > > Documentation/cxl/meson.build | 4 ++- > > cxl/memdev.c | 45 ++++++++++++++++++++++++++--------- > > 3 files changed, 41 insertions(+), 13 deletions(-) > > > > diff --git a/Documentation/cxl/memdev-option.txt b/Documentation/cxl/memdev-option.txt > > index e7785827ab4c..64348bed1791 100644 > > --- a/Documentation/cxl/memdev-option.txt > > +++ b/Documentation/cxl/memdev-option.txt > > @@ -2,3 +2,8 @@ > > A 'memX' device name, or a memdev id number. Restrict the operation to > > the specified memdev(s). The keyword 'all' can be specified to indicate > > the lack of any restriction. > > + > > +-S:: > > +--serial:: > > + Rather an a memdev id number, interpret the <memdev> argument(s) > > Rather 'than' > > That's all :) Appreciate it, thanks!
diff --git a/Documentation/cxl/memdev-option.txt b/Documentation/cxl/memdev-option.txt index e7785827ab4c..64348bed1791 100644 --- a/Documentation/cxl/memdev-option.txt +++ b/Documentation/cxl/memdev-option.txt @@ -2,3 +2,8 @@ A 'memX' device name, or a memdev id number. Restrict the operation to the specified memdev(s). The keyword 'all' can be specified to indicate the lack of any restriction. + +-S:: +--serial:: + Rather an a memdev id number, interpret the <memdev> argument(s) + as a list of serial numbers. diff --git a/Documentation/cxl/meson.build b/Documentation/cxl/meson.build index 64ce13f59012..0a6346bc47ca 100644 --- a/Documentation/cxl/meson.build +++ b/Documentation/cxl/meson.build @@ -19,7 +19,9 @@ else endif filedeps = [ - '../copyright.txt', + '../copyright.txt', + 'memdev-option.txt', + 'labels-options.txt', ] cxl_manpages = [ diff --git a/cxl/memdev.c b/cxl/memdev.c index 4cca8b8c10be..ef5343ad892b 100644 --- a/cxl/memdev.c +++ b/cxl/memdev.c @@ -24,12 +24,14 @@ static struct parameters { unsigned len; unsigned offset; bool verbose; + bool serial; } param; static struct log_ctx ml; #define BASE_OPTIONS() \ -OPT_BOOLEAN('v',"verbose", ¶m.verbose, "turn on debug") +OPT_BOOLEAN('v',"verbose", ¶m.verbose, "turn on debug"), \ +OPT_BOOLEAN('S', "serial", ¶m.serial, "user serials numbers to id memdevs") #define READ_OPTIONS() \ OPT_STRING('o', "output", ¶m.outfile, "output-file", \ @@ -172,8 +174,9 @@ out: } static int memdev_action(int argc, const char **argv, struct cxl_ctx *ctx, - int (*action)(struct cxl_memdev *memdev, struct action_context *actx), - const struct option *options, const char *usage) + int (*action)(struct cxl_memdev *memdev, + struct action_context *actx), + const struct option *options, const char *usage) { struct cxl_memdev *memdev, *single = NULL; struct action_context actx = { 0 }; @@ -190,16 +193,25 @@ static int memdev_action(int argc, const char **argv, struct cxl_ctx *ctx, if (argc == 0) usage_with_options(u, options); for (i = 0; i < argc; i++) { - if (strcmp(argv[i], "all") == 0) { - argc = 1; - break; + if (param.serial) { + char *end; + + strtoull(argv[i], &end, 0); + if (end[0] == 0) + continue; + } else { + if (strcmp(argv[i], "all") == 0) { + argc = 1; + break; + } + if (sscanf(argv[i], "mem%lu", &id) == 1) + continue; + if (sscanf(argv[i], "%lu", &id) == 1) + continue; } - if (sscanf(argv[i], "mem%lu", &id) == 1) - continue; - if (sscanf(argv[i], "%lu", &id) == 1) - continue; - log_err(&ml, "'%s' is not a valid memdev name\n", argv[i]); + log_err(&ml, "'%s' is not a valid memdev %s\n", argv[i], + param.serial ? "serial number" : "name"); err++; } @@ -244,7 +256,16 @@ static int memdev_action(int argc, const char **argv, struct cxl_ctx *ctx, for (i = 0; i < argc; i++) { cxl_memdev_foreach(ctx, memdev) { - if (!util_cxl_memdev_filter(memdev, argv[i], NULL)) + const char *memdev_filter = NULL; + const char *serial_filter = NULL; + + if (param.serial) + serial_filter = argv[i]; + else + memdev_filter = argv[i]; + + if (!util_cxl_memdev_filter(memdev, memdev_filter, + serial_filter)) continue; if (action == action_write) {
Allow for a "-s, --serial" option to turn the argument list into serial identifiers. Signed-off-by: Dan Williams <dan.j.williams@intel.com> --- Documentation/cxl/memdev-option.txt | 5 ++++ Documentation/cxl/meson.build | 4 ++- cxl/memdev.c | 45 ++++++++++++++++++++++++++--------- 3 files changed, 41 insertions(+), 13 deletions(-)