]> git.karo-electronics.de Git - linux-beck.git/commitdiff
nvdimm: use the right length of "pmem"
authorNicolas Iooss <nicolas.iooss_linux@m4x.org>
Sat, 29 Oct 2016 11:28:52 +0000 (13:28 +0200)
committerDan Williams <dan.j.williams@intel.com>
Sat, 12 Nov 2016 04:37:42 +0000 (20:37 -0800)
In order to test that the name of a resource begins with "pmem", call
strncmp() with 4 as length instead of 3 to match the whole prefix.

Signed-off-by: Nicolas Iooss <nicolas.iooss_linux@m4x.org>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
drivers/nvdimm/label.c

index fac7cabe8f563e8e0e08b97f79aeb4f86174f66f..dd615345699fddf38f9117344278bf9364afe547 100644 (file)
@@ -938,7 +938,7 @@ int nd_pmem_namespace_label_update(struct nd_region *nd_region,
                }
 
                for_each_dpa_resource(ndd, res)
-                       if (strncmp(res->name, "pmem", 3) == 0)
+                       if (strncmp(res->name, "pmem", 4) == 0)
                                count++;
                WARN_ON_ONCE(!count);