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