From 8cef393365b05a2ae4da55bd3e0e22dfc07a83db Mon Sep 17 00:00:00 2001 From: Doug MacEachern Date: Fri, 17 Jul 2009 14:16:42 -0700 Subject: [PATCH] (SIGAR-163) Recognize cvfs (StorNext) as local filesystem type --- src/sigar.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/sigar.c b/src/sigar.c index b3ab7657..af6cee1f 100644 --- a/src/sigar.c +++ b/src/sigar.c @@ -429,6 +429,11 @@ static int sigar_common_fs_type_get(sigar_file_system_t *fsp) fsp->type = SIGAR_FSTYPE_CDROM; } break; + case 'c': + if (strEQ(type, "cvfs")) { + fsp->type = SIGAR_FSTYPE_LOCAL_DISK; + } + break; case 'm': if (strEQ(type, "msdos") || strEQ(type, "minix")) { fsp->type = SIGAR_FSTYPE_LOCAL_DISK;