|
|
2eb93d |
From fe626a8a8a1b1bc94ea95c693ec672109909e3dc Mon Sep 17 00:00:00 2001
|
|
|
2eb93d |
From: Redhairer Li <redhairer.li@intel.com>
|
|
|
2eb93d |
Date: Thu, 28 Jan 2021 22:03:39 +0800
|
|
|
2eb93d |
Subject: [PATCH 008/217] ndctl/namespace: Fix disable-namespace accounting
|
|
|
2eb93d |
relative to seed devices
|
|
|
2eb93d |
|
|
|
2eb93d |
Seed namespaces are included in "ndctl disable-namespace all". However
|
|
|
2eb93d |
since the user never "creates" them it is surprising to see
|
|
|
2eb93d |
"disable-namespace" report 1 more namespace relative to the number that
|
|
|
2eb93d |
have been created. Catch attempts to disable a zero-sized namespace:
|
|
|
2eb93d |
|
|
|
2eb93d |
Before:
|
|
|
2eb93d |
{
|
|
|
2eb93d |
"dev":"namespace1.0",
|
|
|
2eb93d |
"size":"492.00 MiB (515.90 MB)",
|
|
|
2eb93d |
"blockdev":"pmem1"
|
|
|
2eb93d |
}
|
|
|
2eb93d |
{
|
|
|
2eb93d |
"dev":"namespace1.1",
|
|
|
2eb93d |
"size":"492.00 MiB (515.90 MB)",
|
|
|
2eb93d |
"blockdev":"pmem1.1"
|
|
|
2eb93d |
}
|
|
|
2eb93d |
{
|
|
|
2eb93d |
"dev":"namespace1.2",
|
|
|
2eb93d |
"size":"492.00 MiB (515.90 MB)",
|
|
|
2eb93d |
"blockdev":"pmem1.2"
|
|
|
2eb93d |
}
|
|
|
2eb93d |
disabled 4 namespaces
|
|
|
2eb93d |
|
|
|
2eb93d |
After:
|
|
|
2eb93d |
{
|
|
|
2eb93d |
"dev":"namespace1.0",
|
|
|
2eb93d |
"size":"492.00 MiB (515.90 MB)",
|
|
|
2eb93d |
"blockdev":"pmem1"
|
|
|
2eb93d |
}
|
|
|
2eb93d |
{
|
|
|
2eb93d |
"dev":"namespace1.3",
|
|
|
2eb93d |
"size":"492.00 MiB (515.90 MB)",
|
|
|
2eb93d |
"blockdev":"pmem1.3"
|
|
|
2eb93d |
}
|
|
|
2eb93d |
{
|
|
|
2eb93d |
"dev":"namespace1.1",
|
|
|
2eb93d |
"size":"492.00 MiB (515.90 MB)",
|
|
|
2eb93d |
"blockdev":"pmem1.1"
|
|
|
2eb93d |
}
|
|
|
2eb93d |
disabled 3 namespaces
|
|
|
2eb93d |
|
|
|
2eb93d |
Signed-off-by: Redhairer Li <redhairer.li@intel.com>
|
|
|
2eb93d |
Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
|
|
|
2eb93d |
Link: https://lore.kernel.org/linux-nvdimm/20210128140339.3080-1-redhairer.li@intel.com/
|
|
|
2eb93d |
---
|
|
|
2eb93d |
ndctl/lib/libndctl.c | 10 ++++++++--
|
|
|
2eb93d |
ndctl/namespace.c | 8 ++++----
|
|
|
2eb93d |
ndctl/region.c | 2 +-
|
|
|
2eb93d |
3 files changed, 13 insertions(+), 7 deletions(-)
|
|
|
2eb93d |
|
|
|
2eb93d |
diff --git a/ndctl/lib/libndctl.c b/ndctl/lib/libndctl.c
|
|
|
2eb93d |
index 36fb6fe..2f6d806 100644
|
|
|
2eb93d |
--- a/ndctl/lib/libndctl.c
|
|
|
2eb93d |
+++ b/ndctl/lib/libndctl.c
|
|
|
2eb93d |
@@ -4602,6 +4602,7 @@ NDCTL_EXPORT int ndctl_namespace_disable_safe(struct ndctl_namespace *ndns)
|
|
|
2eb93d |
const char *bdev = NULL;
|
|
|
2eb93d |
char path[50];
|
|
|
2eb93d |
int fd;
|
|
|
2eb93d |
+ unsigned long long size = ndctl_namespace_get_size(ndns);
|
|
|
2eb93d |
|
|
|
2eb93d |
if (pfn && ndctl_pfn_is_enabled(pfn))
|
|
|
2eb93d |
bdev = ndctl_pfn_get_block_device(pfn);
|
|
|
2eb93d |
@@ -4631,8 +4632,13 @@ NDCTL_EXPORT int ndctl_namespace_disable_safe(struct ndctl_namespace *ndns)
|
|
|
2eb93d |
devname, bdev, strerror(errno));
|
|
|
2eb93d |
return -errno;
|
|
|
2eb93d |
}
|
|
|
2eb93d |
- } else
|
|
|
2eb93d |
- ndctl_namespace_disable_invalidate(ndns);
|
|
|
2eb93d |
+ } else {
|
|
|
2eb93d |
+ if (size == 0)
|
|
|
2eb93d |
+ /* No disable necessary due to no capacity allocated */
|
|
|
2eb93d |
+ return 1;
|
|
|
2eb93d |
+ else
|
|
|
2eb93d |
+ ndctl_namespace_disable_invalidate(ndns);
|
|
|
2eb93d |
+ }
|
|
|
2eb93d |
|
|
|
2eb93d |
return 0;
|
|
|
2eb93d |
}
|
|
|
2eb93d |
diff --git a/ndctl/namespace.c b/ndctl/namespace.c
|
|
|
2eb93d |
index 0c8df9f..1feb74d 100644
|
|
|
2eb93d |
--- a/ndctl/namespace.c
|
|
|
2eb93d |
+++ b/ndctl/namespace.c
|
|
|
2eb93d |
@@ -1125,7 +1125,7 @@ static int namespace_prep_reconfig(struct ndctl_region *region,
|
|
|
2eb93d |
}
|
|
|
2eb93d |
|
|
|
2eb93d |
rc = ndctl_namespace_disable_safe(ndns);
|
|
|
2eb93d |
- if (rc)
|
|
|
2eb93d |
+ if (rc < 0)
|
|
|
2eb93d |
return rc;
|
|
|
2eb93d |
|
|
|
2eb93d |
ndctl_namespace_set_enforce_mode(ndns, NDCTL_NS_MODE_RAW);
|
|
|
2eb93d |
@@ -1431,7 +1431,7 @@ static int dax_clear_badblocks(struct ndctl_dax *dax)
|
|
|
2eb93d |
return -ENXIO;
|
|
|
2eb93d |
|
|
|
2eb93d |
rc = ndctl_namespace_disable_safe(ndns);
|
|
|
2eb93d |
- if (rc) {
|
|
|
2eb93d |
+ if (rc < 0) {
|
|
|
2eb93d |
error("%s: unable to disable namespace: %s\n", devname,
|
|
|
2eb93d |
strerror(-rc));
|
|
|
2eb93d |
return rc;
|
|
|
2eb93d |
@@ -1455,7 +1455,7 @@ static int pfn_clear_badblocks(struct ndctl_pfn *pfn)
|
|
|
2eb93d |
return -ENXIO;
|
|
|
2eb93d |
|
|
|
2eb93d |
rc = ndctl_namespace_disable_safe(ndns);
|
|
|
2eb93d |
- if (rc) {
|
|
|
2eb93d |
+ if (rc < 0) {
|
|
|
2eb93d |
error("%s: unable to disable namespace: %s\n", devname,
|
|
|
2eb93d |
strerror(-rc));
|
|
|
2eb93d |
return rc;
|
|
|
2eb93d |
@@ -1478,7 +1478,7 @@ static int raw_clear_badblocks(struct ndctl_namespace *ndns)
|
|
|
2eb93d |
return -ENXIO;
|
|
|
2eb93d |
|
|
|
2eb93d |
rc = ndctl_namespace_disable_safe(ndns);
|
|
|
2eb93d |
- if (rc) {
|
|
|
2eb93d |
+ if (rc < 0) {
|
|
|
2eb93d |
error("%s: unable to disable namespace: %s\n", devname,
|
|
|
2eb93d |
strerror(-rc));
|
|
|
2eb93d |
return rc;
|
|
|
2eb93d |
diff --git a/ndctl/region.c b/ndctl/region.c
|
|
|
2eb93d |
index 3edb9b3..4552c4a 100644
|
|
|
2eb93d |
--- a/ndctl/region.c
|
|
|
2eb93d |
+++ b/ndctl/region.c
|
|
|
2eb93d |
@@ -70,7 +70,7 @@ static int region_action(struct ndctl_region *region, enum device_action mode)
|
|
|
2eb93d |
case ACTION_DISABLE:
|
|
|
2eb93d |
ndctl_namespace_foreach(region, ndns) {
|
|
|
2eb93d |
rc = ndctl_namespace_disable_safe(ndns);
|
|
|
2eb93d |
- if (rc)
|
|
|
2eb93d |
+ if (rc < 0)
|
|
|
2eb93d |
return rc;
|
|
|
2eb93d |
}
|
|
|
2eb93d |
rc = ndctl_region_disable_invalidate(region);
|
|
|
2eb93d |
--
|
|
|
2eb93d |
2.27.0
|
|
|
2eb93d |
|