From: Neil Brown Date: Fri, 6 Jun 2008 19:17:55 +0000 (-0400) Subject: nfsstat -m lists all current nfs mounts, with the mount options. X-Git-Tag: nfs-utils-1-1-3~38 X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=commitdiff_plain;h=d03090be4f440d70328988e9f792f3bd0ebd956b;hp=52dff26c60c07cf1b4fbf8fbd3a1eab7ba90405f nfsstat -m lists all current nfs mounts, with the mount options. It does this by reading /proc/mounts and looking for mounts of type "nfs". It really should check for "nfs4" as well. For simplicity, just check the first 3 characters of the type. Signed-off-by: NeilBrown Signed-off-by: Steve Dickson --- diff --git a/utils/nfsstat/nfsstat.c b/utils/nfsstat/nfsstat.c index aa6c961..d2cca8d 100644 --- a/utils/nfsstat/nfsstat.c +++ b/utils/nfsstat/nfsstat.c @@ -716,7 +716,7 @@ mounts(const char *name) if (!(type = strtok(NULL, " \t"))) continue; - if (strcmp(type, "nfs")) { + if (strcmp(type, "nfs") && strcmp(type,"nfs4")) { continue; }