recognize vxfs as a local disk

This commit is contained in:
Doug MacEachern 2007-01-31 16:57:04 +00:00
parent db6cc45f1c
commit ba73629ca0
1 changed files with 5 additions and 0 deletions

View File

@ -1302,6 +1302,11 @@ int sigar_os_fs_type_get(sigar_file_system_t *fsp)
fsp->type = SIGAR_FSTYPE_LOCAL_DISK; fsp->type = SIGAR_FSTYPE_LOCAL_DISK;
} }
break; break;
case 'v':
if (strEQ(type, "vxfs")) {
fsp->type = SIGAR_FSTYPE_LOCAL_DISK;
}
break;
/* XXX */ /* XXX */
} }