]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
nfsstat fixes, see ChangeLog
authorneilbrown <neilbrown>
Sun, 5 May 2002 23:23:27 +0000 (23:23 +0000)
committerneilbrown <neilbrown>
Sun, 5 May 2002 23:23:27 +0000 (23:23 +0000)
ChangeLog
utils/nfsstat/nfsstat.c

index 425a4af217d4b3eb6cf4e1090c297783a147a46d..94f71ddb72a4f61507290b91237504f929afc34b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-05-06 Tom McNeal <trmcneal@attbi.com>
+       NeilBrown <neilb@cse.unsw.edu.au>
+
+       * utils/nfsstat/nfsstat.c: Handle differing format for
+          /proc/net/rpc/nfsd between pre and post 2.4.0
+       
 2002-04-09  NeilBrown <neilb@cse.unsw.edu.au>
        James Pearson <james-p@moving-picture.com>
 
 2002-04-09  NeilBrown <neilb@cse.unsw.edu.au>
        James Pearson <james-p@moving-picture.com>
 
index 4f0b8a88e9a3f098d11e99f965b0e97d220f461d..afd323ede6f1f269fba68e6d9ecf998cf8c78229 100644 (file)
@@ -20,8 +20,8 @@
 
 static unsigned int    svcv2info[19];  /* NFSv2 call counts ([0] == 18) */
 static unsigned int    cltv2info[19];  /* NFSv2 call counts ([0] == 18) */
 
 static unsigned int    svcv2info[19];  /* NFSv2 call counts ([0] == 18) */
 static unsigned int    cltv2info[19];  /* NFSv2 call counts ([0] == 18) */
-static unsigned int    svcv3info[22];  /* NFSv3 call counts ([0] == 22) */
-static unsigned int    cltv3info[22];  /* NFSv3 call counts ([0] == 22) */
+static unsigned int    svcv3info[23];  /* NFSv3 call counts ([0] == 22) */
+static unsigned int    cltv3info[23];  /* NFSv3 call counts ([0] == 22) */
 static unsigned int    svcnetinfo[4];  /* 0  # of received packets
                                         * 1  UDP packets
                                         * 2  TCP packets
 static unsigned int    svcnetinfo[4];  /* 0  # of received packets
                                         * 1  UDP packets
                                         * 2  TCP packets
@@ -47,8 +47,7 @@ static unsigned int   cltrpcinfo[3];  /* 0  total # of RPC calls
 static unsigned int    svcrcinfo[8];   /* 0  repcache hits
                                         * 1  repcache hits
                                         * 2  uncached reqs
 static unsigned int    svcrcinfo[8];   /* 0  repcache hits
                                         * 1  repcache hits
                                         * 2  uncached reqs
-                                        *
-                                        * including fh info:
+                                        * (for pre-2.4 kernels:)
                                         * 3  FH lookups
                                         * 4  'anon' FHs
                                         * 5  noncached non-directories
                                         * 3  FH lookups
                                         * 4  'anon' FHs
                                         * 5  noncached non-directories
@@ -56,6 +55,16 @@ static unsigned int  svcrcinfo[8];   /* 0  repcache hits
                                         * 7  stale
                                         */
 
                                         * 7  stale
                                         */
 
+static unsigned int    svcfhinfo[6];   /* (for kernels >= 2.4.0)
+                                        * 0  stale
+                                        * 1  FH lookups
+                                        * 2  'anon' FHs
+                                        * 3  noncached non-directories
+                                        * 4  noncached directories
+                                        * leave hole to relocate stale for order
+                                        *    compatability.
+                                        */
+
 static const char *    nfsv2name[18] = {
        "null", "getattr", "setattr", "root",   "lookup",  "readlink",
        "read", "wrcache", "write",   "create", "remove",  "rename",
 static const char *    nfsv2name[18] = {
        "null", "getattr", "setattr", "root",   "lookup",  "readlink",
        "read", "wrcache", "write",   "create", "remove",  "rename",
@@ -73,15 +82,13 @@ typedef struct statinfo {
        char            *tag;
        int             nrvals;
        unsigned int *  valptr;
        char            *tag;
        int             nrvals;
        unsigned int *  valptr;
-
-       /* Filled in by parse_statfile */
-       int *           foundp;
 } statinfo;
 
 static statinfo                svcinfo[] = {
        { "net",        4,      svcnetinfo      },
        { "rpc",        5,      svcrpcinfo      },
 } statinfo;
 
 static statinfo                svcinfo[] = {
        { "net",        4,      svcnetinfo      },
        { "rpc",        5,      svcrpcinfo      },
-       { "rc",         8,      svcrcinfo       },      /* including fh_* */
+       { "rc",         8,      svcrcinfo       },
+       { "fh",         5,      svcfhinfo       },
        { "proc2",      19,     svcv2info       },
        { "proc3",      23,     svcv3info       },
        { NULL,         0,      0               }
        { "proc2",      19,     svcv2info       },
        { "proc3",      23,     svcv3info       },
        { NULL,         0,      0               }
@@ -101,6 +108,9 @@ static void         print_callstats(const char *, const char **,
                                        unsigned int *, unsigned int);
 static int             parse_statfile(const char *, struct statinfo *);
 
                                        unsigned int *, unsigned int);
 static int             parse_statfile(const char *, struct statinfo *);
 
+static statinfo                *get_stat_info(const char *, struct statinfo *);
+
+
 #define PRNT_CALLS     0x0001
 #define PRNT_RPC       0x0002
 #define PRNT_NET       0x0004
 #define PRNT_CALLS     0x0001
 #define PRNT_RPC       0x0002
 #define PRNT_NET       0x0004
@@ -200,11 +210,24 @@ main(int argc, char **argv)
                        svcrcinfo, 3
                        );
                }
                        svcrcinfo, 3
                        );
                }
+
+               /*
+                * 2.2 puts all fh-related info after the 'rc' header
+                * 2.4 puts all fh-related info after the 'fh' header, but relocates
+                *     'stale' to the start :-(  We keep it at the end.
+                */
                if (opt_prt & PRNT_FH) {
                if (opt_prt & PRNT_FH) {
-                       print_numbers(
-                       "Server file handle cache:\n"
-                       "lookup     anon       ncachendir ncachedir  stale\n",
-                       svcrcinfo + 3, 5);
+                       if (get_stat_info("fh", svcinfo)) {     /* >= 2.4 */
+                               svcfhinfo[5]=svcfhinfo[0]; /* relocate 'stale' */
+                               print_numbers(
+                                       "Server file handle cache:\n"
+                                       "lookup     anon       ncachedir ncachedir  stale\n",
+                                       svcfhinfo + 1, 5);
+                       } else                                  /* < 2.4 */
+                               print_numbers(
+                                       "Server file handle cache:\n"
+                                       "lookup     anon       ncachedir ncachedir  stale\n",
+                                       svcrcinfo + 3, 5);
                }
                if (opt_prt & PRNT_CALLS) {
                        print_callstats(
                }
                if (opt_prt & PRNT_CALLS) {
                        print_callstats(
@@ -250,6 +273,19 @@ main(int argc, char **argv)
        return 0;
 }
 
        return 0;
 }
 
+static statinfo *
+get_stat_info(const char *sp, struct statinfo *statp)
+{
+       struct statinfo *ip;
+
+       for (ip = statp; ip->tag; ip++) {
+               if (!strcmp(sp, ip->tag))
+                       return ip;
+       }
+
+       return NULL;
+}
+
 static void
 print_numbers(const char *hdr, unsigned int *info, unsigned int nr)
 {
 static void
 print_numbers(const char *hdr, unsigned int *info, unsigned int nr)
 {
@@ -285,6 +321,7 @@ print_callstats(const char *hdr, const char **names,
        printf("\n");
 }
 
        printf("\n");
 }
 
+
 static int
 parse_statfile(const char *name, struct statinfo *statp)
 {
 static int
 parse_statfile(const char *name, struct statinfo *statp)
 {
@@ -308,12 +345,11 @@ parse_statfile(const char *name, struct statinfo *statp)
                        *next++ = '\0';
                if (!(sp = strtok(line, " \t")))
                        continue;
                        *next++ = '\0';
                if (!(sp = strtok(line, " \t")))
                        continue;
-               for (ip = statp; ip->tag; ip++) {
-                       if (!strcmp(sp, ip->tag))
-                               break;
-               }
-               if (!ip->tag)
+
+               ip = get_stat_info(sp, statp);
+               if (!ip)
                        continue;
                        continue;
+
                cnt = ip->nrvals;
 
                for (i = 0; i < cnt; i++) {
                cnt = ip->nrvals;
 
                for (i = 0; i < cnt; i++) {