|
|
0dc130 |
papr: Add support to parse save_fail flag for dimm
|
|
|
0dc130 |
|
|
|
0dc130 |
BZ:
|
|
|
0dc130 |
Brew:
|
|
|
0dc130 |
|
|
|
0dc130 |
commit f081f302505209430df46908775a3cffb875a5c7
|
|
|
0dc130 |
Author: Santosh Sivaraj <santosh@fossix.org>
|
|
|
0dc130 |
Date: Thu May 13 11:42:17 2021 +0530
|
|
|
0dc130 |
|
|
|
0dc130 |
papr: Add support to parse save_fail flag for dimm
|
|
|
0dc130 |
|
|
|
0dc130 |
This will help in getting the dimm fail tests to run on papr family too.
|
|
|
0dc130 |
Also add nvdimm_test compatibility string for recognizing the test module.
|
|
|
0dc130 |
|
|
|
0dc130 |
Link: https://lore.kernel.org/r/20210513061218.760322-3-santosh@fossix.org
|
|
|
0dc130 |
Signed-off-by: Santosh Sivaraj <santosh@fossix.org>
|
|
|
0dc130 |
Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
|
|
|
0dc130 |
|
|
|
0dc130 |
diff --git a/ndctl/lib/libndctl.c b/ndctl/lib/libndctl.c
|
|
|
0dc130 |
index e45353f..a8b99ea 100644
|
|
|
0dc130 |
--- a/ndctl/lib/libndctl.c
|
|
|
0dc130 |
+++ b/ndctl/lib/libndctl.c
|
|
|
0dc130 |
@@ -805,6 +805,8 @@ static void parse_papr_flags(struct ndctl_dimm *dimm, char *flags)
|
|
|
0dc130 |
dimm->flags.f_restore = 1;
|
|
|
0dc130 |
else if (strcmp(start, "smart_notify") == 0)
|
|
|
0dc130 |
dimm->flags.f_smart = 1;
|
|
|
0dc130 |
+ else if (strcmp(start, "save_fail") == 0)
|
|
|
0dc130 |
+ dimm->flags.f_save = 1;
|
|
|
0dc130 |
start = end + 1;
|
|
|
0dc130 |
}
|
|
|
0dc130 |
if (end != start)
|
|
|
0dc130 |
@@ -1035,7 +1037,8 @@ NDCTL_EXPORT int ndctl_bus_is_papr_scm(struct ndctl_bus *bus)
|
|
|
0dc130 |
if (sysfs_read_attr(bus->ctx, bus->bus_buf, buf) < 0)
|
|
|
0dc130 |
return 0;
|
|
|
0dc130 |
|
|
|
0dc130 |
- return (strcmp(buf, "ibm,pmemory") == 0);
|
|
|
0dc130 |
+ return (strcmp(buf, "ibm,pmemory") == 0 ||
|
|
|
0dc130 |
+ strcmp(buf, "nvdimm_test") == 0);
|
|
|
0dc130 |
}
|
|
|
0dc130 |
|
|
|
0dc130 |
/**
|