Blame SOURCES/0025-ndctl-scrub-Stop-translating-return-values.patch

2eb93d
From c52109355b715bbe21e284090435bee7563863cc Mon Sep 17 00:00:00 2001
2eb93d
From: Dan Williams <dan.j.williams@intel.com>
2eb93d
Date: Wed, 26 May 2021 16:33:04 -0700
2eb93d
Subject: [PATCH 025/217] ndctl/scrub: Stop translating return values
8afcf0
2eb93d
In preparation for triggering a poll loop within ndctl_bus_start_scrub(),
2eb93d
stop translating return values into -EOPNOTSUPP.
8afcf0
2eb93d
Link: https://lore.kernel.org/r/162207198482.3715490.5994844104395495686.stgit@dwillia2-desk3.amr.corp.intel.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
 ndctl/lib/libndctl.c | 8 +-------
2eb93d
 1 file changed, 1 insertion(+), 7 deletions(-)
8afcf0
8afcf0
diff --git a/ndctl/lib/libndctl.c b/ndctl/lib/libndctl.c
8afcf0
index aa36a3c..e5641fe 100644
8afcf0
--- a/ndctl/lib/libndctl.c
8afcf0
+++ b/ndctl/lib/libndctl.c
8afcf0
@@ -1354,14 +1354,8 @@ static int __ndctl_bus_get_scrub_state(struct ndctl_bus *bus,
8afcf0
 NDCTL_EXPORT int ndctl_bus_start_scrub(struct ndctl_bus *bus)
8afcf0
 {
8afcf0
 	struct ndctl_ctx *ctx = ndctl_bus_get_ctx(bus);
8afcf0
-	int rc;
8afcf0
 
8afcf0
-	rc = sysfs_write_attr(ctx, bus->scrub_path, "1\n");
8afcf0
-	if (rc == -EBUSY)
8afcf0
-		return rc;
8afcf0
-	else if (rc < 0)
8afcf0
-		return -EOPNOTSUPP;
8afcf0
-	return 0;
8afcf0
+	return sysfs_write_attr(ctx, bus->scrub_path, "1\n");
8afcf0
 }
8afcf0
 
8afcf0
 NDCTL_EXPORT int ndctl_bus_get_scrub_state(struct ndctl_bus *bus)
2eb93d
-- 
2eb93d
2.27.0
2eb93d