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

8afcf0
ndctl/scrub: Stop translating return values
8afcf0
8afcf0
BZ: 
8afcf0
Brew: 
8afcf0
8afcf0
commit c52109355b715bbe21e284090435bee7563863cc
8afcf0
Author: Dan Williams <dan.j.williams@intel.com>
8afcf0
Date:   Wed May 26 16:33:04 2021 -0700
8afcf0
8afcf0
    ndctl/scrub: Stop translating return values
8afcf0
    
8afcf0
    In preparation for triggering a poll loop within ndctl_bus_start_scrub(),
8afcf0
    stop translating return values into -EOPNOTSUPP.
8afcf0
    
8afcf0
    Link: https://lore.kernel.org/r/162207198482.3715490.5994844104395495686.stgit@dwillia2-desk3.amr.corp.intel.com
8afcf0
    Signed-off-by: Dan Williams <dan.j.williams@intel.com>
8afcf0
    Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
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)