anitazha / rpms / ndctl

Forked from rpms/ndctl 2 years ago
Clone

Blame SOURCES/07011a3-ndctl-namespace-Suppress-ENXIO-when-processing-all-namespaces.patch

8afcf0
ndctl/namespace: Suppress -ENXIO when processing all namespaces.
8afcf0
8afcf0
BZ: 
8afcf0
Brew: 
8afcf0
8afcf0
commit 07011a334fd1e4b641cdbfaf5de7500f7bdc941d
8afcf0
Author: Michal Suchanek <msuchanek@suse.de>
8afcf0
Date:   Wed Jan 6 14:17:41 2021 +0100
8afcf0
8afcf0
    ndctl/namespace: Suppress -ENXIO when processing all namespaces.
8afcf0
    
8afcf0
    When processing all namespaces and no namespaces exist user gets the
8afcf0
    default -ENXIO. Set default rc to 0 when processing all namespaces.
8afcf0
    This avoids confusing error message printed in addition to the message
8afcf0
    saying 0 namespaces were affected.
8afcf0
    
8afcf0
    Before:
8afcf0
    
8afcf0
     # ndctl check-namespace all
8afcf0
    namespace0.0: namespace_check: namespace0.0: check aborted, namespace online
8afcf0
    error checking namespaces: Device or resource busy
8afcf0
    checked 0 namespaces
8afcf0
     # ndctl disable-namespace all
8afcf0
    disabled 1 namespace
8afcf0
     # ndctl check-namespace all
8afcf0
    namespace0.0: namespace_check: Unable to recover any BTT info blocks
8afcf0
    error checking namespaces: No such device or address
8afcf0
    checked 0 namespaces
8afcf0
     # ndctl destroy-namespace all
8afcf0
    destroyed 1 namespace
8afcf0
     # ndctl check-namespace all
8afcf0
    error checking namespaces: No such device or address
8afcf0
    checked 0 namespaces
8afcf0
     # ndctl destroy-namespace all
8afcf0
    error destroying namespaces: No such device or address
8afcf0
    destroyed 0 namespaces
8afcf0
    
8afcf0
    After:
8afcf0
    
8afcf0
     # ndctl check-namespace all
8afcf0
    namespace0.0: namespace_check: namespace0.0: check aborted, namespace online
8afcf0
    error checking namespaces: Device or resource busy
8afcf0
    checked 0 namespaces
8afcf0
     # ndctl disable-namespace namespace0.0
8afcf0
    disabled 1 namespace
8afcf0
     # ndctl check-namespace all
8afcf0
    namespace0.0: namespace_check: Unable to recover any BTT info blocks
8afcf0
    error checking namespaces: No such device or address
8afcf0
    checked 0 namespaces
8afcf0
     # ndctl destroy-namespace all
8afcf0
    destroyed 1 namespace
8afcf0
     # ndctl check-namespace all
8afcf0
    checked 0 namespaces
8afcf0
     # ndctl destroy-namespace all
8afcf0
    destroyed 0 namespaces
8afcf0
     # ndctl destroy-namespace all
8afcf0
    destroyed 0 namespaces
8afcf0
    
8afcf0
    Note: this does change the return value from -ENXIO to 0 in the cases
8afcf0
    when no namespaces exist and processing all namespaces was requested.
8afcf0
    
8afcf0
    Link: https://patchwork.kernel.org/patch/11681431/
8afcf0
    Link: https://lore.kernel.org/r/32c8cd8d2716f5e52aebea4e4d303eeb4e0550f9.1609938610.git.msuchanek@suse.de
8afcf0
    Reviewed-by: Santosh S <santosh@fossix.org>
8afcf0
    Signed-off-by: Michal Suchanek <msuchanek@suse.de>
8afcf0
    Signed-off-by: Vishal Verma <vishal.l.verma@intel.com>
8afcf0
8afcf0
diff --git a/ndctl/namespace.c b/ndctl/namespace.c
8afcf0
index 5e65ed5..cd822b3 100644
8afcf0
--- a/ndctl/namespace.c
8afcf0
+++ b/ndctl/namespace.c
8afcf0
@@ -2151,6 +2151,9 @@ static int do_xaction_namespace(const char *namespace,
8afcf0
 	if (!namespace && action != ACTION_CREATE)
8afcf0
 		return rc;
8afcf0
 
8afcf0
+	if (namespace && (strcmp(namespace, "all") == 0))
8afcf0
+		rc = 0;
8afcf0
+
8afcf0
 	if (verbose)
8afcf0
 		ndctl_set_log_priority(ctx, LOG_DEBUG);
8afcf0