[SIGAR-107] Recognize vzfs as local filesystem type on Linux

This commit is contained in:
Doug MacEachern 2008-05-24 21:54:29 +00:00
parent e94969339f
commit f03b59703e
1 changed files with 5 additions and 0 deletions

View File

@ -1095,6 +1095,11 @@ int sigar_os_fs_type_get(sigar_file_system_t *fsp)
fsp->type = SIGAR_FSTYPE_LOCAL_DISK;
}
break;
case 'v':
if (strEQ(type, "vzfs")) {
fsp->type = SIGAR_FSTYPE_LOCAL_DISK;
}
break;
case 'x':
if (strEQ(type, "xfs") || strEQ(type, "xiafs")) {
fsp->type = SIGAR_FSTYPE_LOCAL_DISK;