(SIGAR-163) Recognize cvfs (StorNext) as local filesystem type

This commit is contained in:
Doug MacEachern 2009-07-17 14:16:42 -07:00
parent a3851c6b9a
commit 8cef393365
1 changed files with 5 additions and 0 deletions

View File

@ -429,6 +429,11 @@ static int sigar_common_fs_type_get(sigar_file_system_t *fsp)
fsp->type = SIGAR_FSTYPE_CDROM; fsp->type = SIGAR_FSTYPE_CDROM;
} }
break; break;
case 'c':
if (strEQ(type, "cvfs")) {
fsp->type = SIGAR_FSTYPE_LOCAL_DISK;
}
break;
case 'm': case 'm':
if (strEQ(type, "msdos") || strEQ(type, "minix")) { if (strEQ(type, "msdos") || strEQ(type, "minix")) {
fsp->type = SIGAR_FSTYPE_LOCAL_DISK; fsp->type = SIGAR_FSTYPE_LOCAL_DISK;