From c1395ccf1afcf949f873905253494aeb60b632c9 Mon Sep 17 00:00:00 2001 From: Scott Mayhew Date: Wed, 3 Jun 2015 15:02:02 -0400 Subject: mountstats: Fix the retrans counter output by the nfsstat command Signed-off-by: Scott Mayhew Signed-off-by: Steve Dickson --- tools/mountstats/mountstats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/mountstats/mountstats.py b/tools/mountstats/mountstats.py index 38943eb..011bb42 100644 --- a/tools/mountstats/mountstats.py +++ b/tools/mountstats/mountstats.py @@ -474,7 +474,7 @@ class DeviceData: # authrefresh stats don't actually get captured in # /proc/self/mountstats, so we fudge it here authrefrsh = sends - return (sends, trans, authrefrsh) + return (sends, retrans, authrefrsh) def display_nfsstat_stats(self): """Pretty-print nfsstat-style stats -- cgit