For 'fsdax' and 'devdax' namespaces, a 'map' location may be specified
for page structures storage. This can be 'mem', for system RAM, or 'dev'
for using pmem as the backing storage. Once set, there was no way of
telling using ndctl, which of the two locations a namespace was
configured for. Add this in util_namespace_to_json so that all
namespace listings contain the map location.

Reported-by: "Yigal Korman" <[email protected]>
Cc: Dan Williams <[email protected]>
Signed-off-by: Vishal Verma <[email protected]>
---
 util/json.c | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/util/json.c b/util/json.c
index c606e1c..17dd90c 100644
--- a/util/json.c
+++ b/util/json.c
@@ -667,11 +667,17 @@ struct json_object *util_namespace_to_json(struct 
ndctl_namespace *ndns,
 {
        struct json_object *jndns = json_object_new_object();
        struct json_object *jobj, *jbbs = NULL;
+       const char *locations[] = {
+               [NDCTL_PFN_LOC_NONE] = "none",
+               [NDCTL_PFN_LOC_RAM] = "mem",
+               [NDCTL_PFN_LOC_PMEM] = "dev",
+       };
        unsigned long long size = ULLONG_MAX;
        unsigned int sector_size = UINT_MAX;
        enum ndctl_namespace_mode mode;
        const char *bdev = NULL, *name;
        unsigned int bb_count = 0;
+       enum ndctl_pfn_loc loc;
        struct ndctl_btt *btt;
        struct ndctl_pfn *pfn;
        struct ndctl_dax *dax;
@@ -749,6 +755,12 @@ struct json_object *util_namespace_to_json(struct 
ndctl_namespace *ndns,
                jobj = util_raw_uuid(ndns);
                if (jobj)
                        json_object_object_add(jndns, "raw_uuid", jobj);
+               loc = ndctl_pfn_get_location(pfn);
+               jobj = json_object_new_string(locations[loc]);
+               if (!jobj)
+                       goto err;
+               if (jobj)
+                       json_object_object_add(jndns, "map", jobj);
                bdev = ndctl_pfn_get_block_device(pfn);
        } else if (dax) {
                struct daxctl_region *dax_region;
@@ -763,6 +775,12 @@ struct json_object *util_namespace_to_json(struct 
ndctl_namespace *ndns,
                jobj = util_raw_uuid(ndns);
                if (jobj)
                        json_object_object_add(jndns, "raw_uuid", jobj);
+               loc = ndctl_dax_get_location(dax);
+               jobj = json_object_new_string(locations[loc]);
+               if (!jobj)
+                       goto err;
+               if (jobj)
+                       json_object_object_add(jndns, "map", jobj);
                if ((flags & UTIL_JSON_DAX) && dax_region) {
                        jobj = util_daxctl_region_to_json(dax_region, NULL,
                                        flags);
-- 
2.17.0

_______________________________________________
Linux-nvdimm mailing list
[email protected]
https://lists.01.org/mailman/listinfo/linux-nvdimm

Reply via email to