Blame SOURCES/0070-ndctl-test-Prepare-for-BLK-aperture-support-removal.patch

2eb93d
From e423b467e10e3405e6e09260b7669e7022b5f5f7 Mon Sep 17 00:00:00 2001
2eb93d
From: Dan Williams <dan.j.williams@intel.com>
2eb93d
Date: Wed, 5 Jan 2022 13:31:50 -0800
2eb93d
Subject: [PATCH 070/217] ndctl/test: Prepare for BLK-aperture support removal
2eb93d
2eb93d
The kernel is dropping its support for the BLK-aperture access method. The
2eb93d
primary side effect of this for nfit_test is that NVDIMM namespace labeling
2eb93d
will not be enabled by default. Update the unit tests to initialize the
2eb93d
label index area in this scenario.
2eb93d
2eb93d
Link: https://lore.kernel.org/r/164141830999.3990253.5021445352398348657.stgit@dwillia2-desk3.amr.corp.intel.com
2eb93d
Tested-by: Alison Schofield <alison.schofield@intel.com>
2eb93d
Tested-by: Vaibhav Jain <vaibhav@linux.ibm.com>
2eb93d
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
2eb93d
Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
2eb93d
---
2eb93d
 test/core.c     | 31 ++++++++++++++++++++++++++++---
2eb93d
 test/libndctl.c | 49 +++++++++++++++++++++++++++++++++++--------------
2eb93d
 2 files changed, 63 insertions(+), 17 deletions(-)
2eb93d
2eb93d
diff --git a/test/core.c b/test/core.c
2eb93d
index 2b03aa9..93e1dae 100644
2eb93d
--- a/test/core.c
2eb93d
+++ b/test/core.c
2eb93d
@@ -261,8 +261,8 @@ retry:
2eb93d
 		ndctl_bus_foreach(nd_ctx, bus) {
2eb93d
 			struct ndctl_region *region;
2eb93d
 
2eb93d
-			if (strncmp(ndctl_bus_get_provider(bus),
2eb93d
-						"nfit_test", 9) != 0)
2eb93d
+			if (strcmp(ndctl_bus_get_provider(bus),
2eb93d
+				   "nfit_test.0") != 0)
2eb93d
 				continue;
2eb93d
 			ndctl_region_foreach(bus, region)
2eb93d
 				ndctl_region_disable_invalidate(region);
2eb93d
@@ -280,5 +280,30 @@ retry:
2eb93d
 			NULL, NULL, NULL, NULL);
2eb93d
 	if (rc)
2eb93d
 		kmod_unref(*ctx);
2eb93d
-	return rc;
2eb93d
+
2eb93d
+	if (!nd_ctx)
2eb93d
+		return rc;
2eb93d
+
2eb93d
+	ndctl_bus_foreach (nd_ctx, bus) {
2eb93d
+		struct ndctl_region *region;
2eb93d
+		struct ndctl_dimm *dimm;
2eb93d
+
2eb93d
+		if (strcmp(ndctl_bus_get_provider(bus), "nfit_test.0") != 0)
2eb93d
+			continue;
2eb93d
+
2eb93d
+		ndctl_region_foreach (bus, region)
2eb93d
+			ndctl_region_disable_invalidate(region);
2eb93d
+
2eb93d
+		ndctl_dimm_foreach (bus, dimm) {
2eb93d
+			ndctl_dimm_read_label_index(dimm);
2eb93d
+			ndctl_dimm_init_labels(dimm, NDCTL_NS_VERSION_1_2);
2eb93d
+			ndctl_dimm_disable(dimm);
2eb93d
+			ndctl_dimm_enable(dimm);
2eb93d
+		}
2eb93d
+
2eb93d
+		ndctl_region_foreach (bus, region)
2eb93d
+			ndctl_region_enable(region);
2eb93d
+	}
2eb93d
+
2eb93d
+	return 0;
2eb93d
 }
2eb93d
diff --git a/test/libndctl.c b/test/libndctl.c
2eb93d
index d9b50f4..c0e4b4c 100644
2eb93d
--- a/test/libndctl.c
2eb93d
+++ b/test/libndctl.c
2eb93d
@@ -2587,17 +2587,41 @@ static int check_dimms(struct ndctl_bus *bus, struct dimm *dimms, int n,
2eb93d
 	return 0;
2eb93d
 }
2eb93d
 
2eb93d
-static void reset_bus(struct ndctl_bus *bus)
2eb93d
+enum dimm_reset {
2eb93d
+	DIMM_INIT,
2eb93d
+	DIMM_ZERO,
2eb93d
+};
2eb93d
+
2eb93d
+static int reset_dimms(struct ndctl_bus *bus, enum dimm_reset reset)
2eb93d
 {
2eb93d
-	struct ndctl_region *region;
2eb93d
 	struct ndctl_dimm *dimm;
2eb93d
+	int rc = 0;
2eb93d
+
2eb93d
+	ndctl_dimm_foreach(bus, dimm) {
2eb93d
+		if (reset == DIMM_ZERO)
2eb93d
+			ndctl_dimm_zero_labels(dimm);
2eb93d
+		else {
2eb93d
+			ndctl_dimm_read_label_index(dimm);
2eb93d
+			ndctl_dimm_init_labels(dimm, NDCTL_NS_VERSION_1_2);
2eb93d
+		}
2eb93d
+		ndctl_dimm_disable(dimm);
2eb93d
+		rc = ndctl_dimm_enable(dimm);
2eb93d
+		if (rc)
2eb93d
+			break;
2eb93d
+	}
2eb93d
+
2eb93d
+	return rc;
2eb93d
+}
2eb93d
+
2eb93d
+static void reset_bus(struct ndctl_bus *bus, enum dimm_reset reset)
2eb93d
+{
2eb93d
+	struct ndctl_region *region;
2eb93d
 
2eb93d
 	/* disable all regions so that set_config_data commands are permitted */
2eb93d
 	ndctl_region_foreach(bus, region)
2eb93d
 		ndctl_region_disable_invalidate(region);
2eb93d
 
2eb93d
-	ndctl_dimm_foreach(bus, dimm)
2eb93d
-		ndctl_dimm_zero_labels(dimm);
2eb93d
+	reset_dimms(bus, reset);
2eb93d
 
2eb93d
 	/* set regions back to their default state */
2eb93d
 	ndctl_region_foreach(bus, region)
2eb93d
@@ -2608,7 +2632,6 @@ static int do_test0(struct ndctl_ctx *ctx, struct ndctl_test *test)
2eb93d
 {
2eb93d
 	struct ndctl_bus *bus = ndctl_bus_get_by_provider(ctx, NFIT_PROVIDER0);
2eb93d
 	struct ndctl_region *region;
2eb93d
-	struct ndctl_dimm *dimm;
2eb93d
 	int rc;
2eb93d
 
2eb93d
 	if (!bus)
2eb93d
@@ -2625,13 +2648,10 @@ static int do_test0(struct ndctl_ctx *ctx, struct ndctl_test *test)
2eb93d
 	if (rc)
2eb93d
 		return rc;
2eb93d
 
2eb93d
-	ndctl_dimm_foreach(bus, dimm) {
2eb93d
-		rc = ndctl_dimm_zero_labels(dimm);
2eb93d
-		if (rc < 0) {
2eb93d
-			fprintf(stderr, "failed to zero %s\n",
2eb93d
-					ndctl_dimm_get_devname(dimm));
2eb93d
-			return rc;
2eb93d
-		}
2eb93d
+	rc = reset_dimms(bus, DIMM_INIT);
2eb93d
+	if (rc < 0) {
2eb93d
+		fprintf(stderr, "failed to reset dimms\n");
2eb93d
+		return rc;
2eb93d
 	}
2eb93d
 
2eb93d
 	/*
2eb93d
@@ -2649,14 +2669,14 @@ static int do_test0(struct ndctl_ctx *ctx, struct ndctl_test *test)
2eb93d
 		rc = check_regions(bus, regions0, ARRAY_SIZE(regions0), DAX);
2eb93d
 		if (rc)
2eb93d
 			return rc;
2eb93d
-		reset_bus(bus);
2eb93d
+		reset_bus(bus, DIMM_INIT);
2eb93d
 	}
2eb93d
 
2eb93d
 	if (ndctl_test_attempt(test, KERNEL_VERSION(4, 8, 0))) {
2eb93d
 		rc = check_regions(bus, regions0, ARRAY_SIZE(regions0), PFN);
2eb93d
 		if (rc)
2eb93d
 			return rc;
2eb93d
-		reset_bus(bus);
2eb93d
+		reset_bus(bus, DIMM_INIT);
2eb93d
 	}
2eb93d
 
2eb93d
 	return check_regions(bus, regions0, ARRAY_SIZE(regions0), BTT);
2eb93d
@@ -2671,6 +2691,7 @@ static int do_test1(struct ndctl_ctx *ctx, struct ndctl_test *test)
2eb93d
 		return -ENXIO;
2eb93d
 
2eb93d
 	ndctl_bus_wait_probe(bus);
2eb93d
+	reset_bus(bus, DIMM_ZERO);
2eb93d
 
2eb93d
 	/*
2eb93d
 	 * Starting with v4.10 the dimm on nfit_test.1 gets a unique
2eb93d
-- 
2eb93d
2.27.0
2eb93d