diff options
author | Benjamin Coddington <bcodding@redhat.com> | 2015-12-11 11:14:49 -0500 |
---|---|---|
committer | Steve Dickson <steved@redhat.com> | 2015-12-11 11:22:25 -0500 |
commit | 6c39d9946a6fbe9a65a1194d72268fc4b75b0c6c (patch) | |
tree | 3daeb49bdf3bcc02a5ca749f221068ec5da65f9d | |
parent | 2755d666b39ef50aa93df3d08438f604f2469eed (diff) | |
download | nfs-utils-6c39d9946a6fbe9a65a1194d72268fc4b75b0c6c.tar.gz nfs-utils-6c39d9946a6fbe9a65a1194d72268fc4b75b0c6c.tar.xz nfs-utils-6c39d9946a6fbe9a65a1194d72268fc4b75b0c6c.zip |
nfsstat: update nfs server operations
Signed-off-by: Benjamin Coddington <bcodding@redhat.com>
Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r-- | utils/nfsstat/nfsstat.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/utils/nfsstat/nfsstat.c b/utils/nfsstat/nfsstat.c index b882c41..b67f0aa 100644 --- a/utils/nfsstat/nfsstat.c +++ b/utils/nfsstat/nfsstat.c @@ -32,7 +32,7 @@ enum { CLTPROC3_SZ = 22, SRVPROC4_SZ = 2, CLTPROC4_SZ = 60, - SRVPROC4OPS_SZ = 59, + SRVPROC4OPS_SZ = 71, }; static unsigned int srvproc2info[SRVPROC2_SZ+2], @@ -182,6 +182,19 @@ static const char * nfssrvproc4opname[SRVPROC4OPS_SZ] = { "want_deleg", "destroy_clid", "reclaim_comp", + /* nfsv4.2 server ops */ + "allocate", + "copy", + "copy_notify", + "deallocate", + "ioadvise", + "layouterror", + "layoutstats", + "offloadcancel", + "offloadstatus", + "readplus", + "seek", + "write_same", }; #define LABEL_srvnet "Server packet stats:\n" |