diff mbox

[nfs-utils] mountstats: Normalize the mountpoints passed on the command line.

Message ID 1425410119-30725-1-git-send-email-smayhew@redhat.com (mailing list archive)
State New, archived
Headers show

Commit Message

Scott Mayhew March 3, 2015, 7:15 p.m. UTC
Normalize the mountpoints passed on the command line so that commands
like 'mountstats /mnt/' succeed rather than fail.

Signed-off-by: Scott Mayhew <smayhew@redhat.com>
---
 tools/mountstats/mountstats.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Steve Dickson March 4, 2015, 1:12 p.m. UTC | #1
On 03/03/2015 02:15 PM, Scott Mayhew wrote:
> Normalize the mountpoints passed on the command line so that commands
> like 'mountstats /mnt/' succeed rather than fail.
> 
> Signed-off-by: Scott Mayhew <smayhew@redhat.com>
Committed...

steved.

> ---
>  tools/mountstats/mountstats.py | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/tools/mountstats/mountstats.py b/tools/mountstats/mountstats.py
> index 7f5dee1..38943eb 100644
> --- a/tools/mountstats/mountstats.py
> +++ b/tools/mountstats/mountstats.py
> @@ -686,7 +686,7 @@ def mountstats_command(args):
>      """Mountstats command
>      """
>      mountstats = parse_stats_file(args.infile)
> -    mountpoints = args.mountpoints
> +    mountpoints = [os.path.normpath(mp) for mp in args.mountpoints]
>  
>      # make certain devices contains only NFS mount points
>      if len(mountpoints) > 0:
> @@ -735,7 +735,7 @@ def nfsstat_command(args):
>      """nfsstat-like command for NFS mount points
>      """
>      mountstats = parse_stats_file(args.infile)
> -    mountpoints = args.mountpoints
> +    mountpoints = [os.path.normpath(mp) for mp in args.mountpoints]
>      v3stats = DeviceData()
>      v3stats.setup_accumulator(Nfsv3ops)
>      v4stats = DeviceData()
> @@ -822,7 +822,7 @@ def iostat_command(args):
>      """iostat-like command for NFS mount points
>      """
>      mountstats = parse_stats_file(args.infile)
> -    devices = args.mountpoints
> +    devices = [os.path.normpath(mp) for mp in args.mountpoints]
>  
>      if args.since:
>          old_mountstats = parse_stats_file(args.since)
> -- 1.9.3
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/tools/mountstats/mountstats.py b/tools/mountstats/mountstats.py
index 7f5dee1..38943eb 100644
--- a/tools/mountstats/mountstats.py
+++ b/tools/mountstats/mountstats.py
@@ -686,7 +686,7 @@  def mountstats_command(args):
     """Mountstats command
     """
     mountstats = parse_stats_file(args.infile)
-    mountpoints = args.mountpoints
+    mountpoints = [os.path.normpath(mp) for mp in args.mountpoints]
 
     # make certain devices contains only NFS mount points
     if len(mountpoints) > 0:
@@ -735,7 +735,7 @@  def nfsstat_command(args):
     """nfsstat-like command for NFS mount points
     """
     mountstats = parse_stats_file(args.infile)
-    mountpoints = args.mountpoints
+    mountpoints = [os.path.normpath(mp) for mp in args.mountpoints]
     v3stats = DeviceData()
     v3stats.setup_accumulator(Nfsv3ops)
     v4stats = DeviceData()
@@ -822,7 +822,7 @@  def iostat_command(args):
     """iostat-like command for NFS mount points
     """
     mountstats = parse_stats_file(args.infile)
-    devices = args.mountpoints
+    devices = [os.path.normpath(mp) for mp in args.mountpoints]
 
     if args.since:
         old_mountstats = parse_stats_file(args.since)