* [ndctl PATCH] ndctl: hide null uuids
@ 2018-05-22 16:19 Dan Williams
2018-05-23 17:45 ` Verma, Vishal L
0 siblings, 1 reply; 2+ messages in thread
From: Dan Williams @ 2018-05-22 16:19 UTC (permalink / raw)
To: linux-nvdimm
Clean up the namespace listing to hide the 'raw_uuid' field when it is
zero.
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
---
util/json.c | 19 +++++++++----------
1 file changed, 9 insertions(+), 10 deletions(-)
diff --git a/util/json.c b/util/json.c
index 1772177a8abd..c606e1cdf770 100644
--- a/util/json.c
+++ b/util/json.c
@@ -652,10 +652,12 @@ static struct json_object *util_dax_badblocks_to_json(struct ndctl_dax *dax,
static struct json_object *util_raw_uuid(struct ndctl_namespace *ndns)
{
- uuid_t raw_uuid;
char buf[40];
+ uuid_t raw_uuid;
ndctl_namespace_get_uuid(ndns, raw_uuid);
+ if (uuid_is_null(raw_uuid))
+ return NULL;
uuid_unparse(raw_uuid, buf);
return json_object_new_string(buf);
}
@@ -734,9 +736,8 @@ struct json_object *util_namespace_to_json(struct ndctl_namespace *ndns,
json_object_object_add(jndns, "uuid", jobj);
jobj = util_raw_uuid(ndns);
- if (!jobj)
- goto err;
- json_object_object_add(jndns, "raw_uuid", jobj);
+ if (jobj)
+ json_object_object_add(jndns, "raw_uuid", jobj);
bdev = ndctl_btt_get_block_device(btt);
} else if (pfn) {
ndctl_pfn_get_uuid(pfn, uuid);
@@ -746,9 +747,8 @@ struct json_object *util_namespace_to_json(struct ndctl_namespace *ndns,
goto err;
json_object_object_add(jndns, "uuid", jobj);
jobj = util_raw_uuid(ndns);
- if (!jobj)
- goto err;
- json_object_object_add(jndns, "raw_uuid", jobj);
+ if (jobj)
+ json_object_object_add(jndns, "raw_uuid", jobj);
bdev = ndctl_pfn_get_block_device(pfn);
} else if (dax) {
struct daxctl_region *dax_region;
@@ -761,9 +761,8 @@ struct json_object *util_namespace_to_json(struct ndctl_namespace *ndns,
goto err;
json_object_object_add(jndns, "uuid", jobj);
jobj = util_raw_uuid(ndns);
- if (!jobj)
- goto err;
- json_object_object_add(jndns, "raw_uuid", jobj);
+ if (jobj)
+ json_object_object_add(jndns, "raw_uuid", jobj);
if ((flags & UTIL_JSON_DAX) && dax_region) {
jobj = util_daxctl_region_to_json(dax_region, NULL,
flags);
_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [ndctl PATCH] ndctl: hide null uuids
2018-05-22 16:19 [ndctl PATCH] ndctl: hide null uuids Dan Williams
@ 2018-05-23 17:45 ` Verma, Vishal L
0 siblings, 0 replies; 2+ messages in thread
From: Verma, Vishal L @ 2018-05-23 17:45 UTC (permalink / raw)
To: Williams, Dan J, linux-nvdimm@lists.01.org
On Tue, 2018-05-22 at 09:19 -0700, Dan Williams wrote:
> Clean up the namespace listing to hide the 'raw_uuid' field when it is
> zero.
>
> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
> ---
> util/json.c | 19 +++++++++----------
> 1 file changed, 9 insertions(+), 10 deletions(-)
Looks good, applied.
>
> diff --git a/util/json.c b/util/json.c
> index 1772177a8abd..c606e1cdf770 100644
> --- a/util/json.c
> +++ b/util/json.c
> @@ -652,10 +652,12 @@ static struct json_object
> *util_dax_badblocks_to_json(struct ndctl_dax *dax,
>
> static struct json_object *util_raw_uuid(struct ndctl_namespace *ndns)
> {
> - uuid_t raw_uuid;
> char buf[40];
> + uuid_t raw_uuid;
>
> ndctl_namespace_get_uuid(ndns, raw_uuid);
> + if (uuid_is_null(raw_uuid))
> + return NULL;
> uuid_unparse(raw_uuid, buf);
> return json_object_new_string(buf);
> }
> @@ -734,9 +736,8 @@ struct json_object *util_namespace_to_json(struct
> ndctl_namespace *ndns,
> json_object_object_add(jndns, "uuid", jobj);
>
> jobj = util_raw_uuid(ndns);
> - if (!jobj)
> - goto err;
> - json_object_object_add(jndns, "raw_uuid", jobj);
> + if (jobj)
> + json_object_object_add(jndns, "raw_uuid", jobj);
> bdev = ndctl_btt_get_block_device(btt);
> } else if (pfn) {
> ndctl_pfn_get_uuid(pfn, uuid);
> @@ -746,9 +747,8 @@ struct json_object *util_namespace_to_json(struct
> ndctl_namespace *ndns,
> goto err;
> json_object_object_add(jndns, "uuid", jobj);
> jobj = util_raw_uuid(ndns);
> - if (!jobj)
> - goto err;
> - json_object_object_add(jndns, "raw_uuid", jobj);
> + if (jobj)
> + json_object_object_add(jndns, "raw_uuid", jobj);
> bdev = ndctl_pfn_get_block_device(pfn);
> } else if (dax) {
> struct daxctl_region *dax_region;
> @@ -761,9 +761,8 @@ struct json_object *util_namespace_to_json(struct
> ndctl_namespace *ndns,
> goto err;
> json_object_object_add(jndns, "uuid", jobj);
> jobj = util_raw_uuid(ndns);
> - if (!jobj)
> - goto err;
> - json_object_object_add(jndns, "raw_uuid", jobj);
> + if (jobj)
> + json_object_object_add(jndns, "raw_uuid", jobj);
> if ((flags & UTIL_JSON_DAX) && dax_region) {
> jobj = util_daxctl_region_to_json(dax_region,
> NULL,
> flags);
>
_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-05-23 17:45 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-22 16:19 [ndctl PATCH] ndctl: hide null uuids Dan Williams
2018-05-23 17:45 ` Verma, Vishal L
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).