recognize vxfs as a local disk
This commit is contained in:
parent
db6cc45f1c
commit
ba73629ca0
|
@ -1302,6 +1302,11 @@ int sigar_os_fs_type_get(sigar_file_system_t *fsp)
|
|||
fsp->type = SIGAR_FSTYPE_LOCAL_DISK;
|
||||
}
|
||||
break;
|
||||
case 'v':
|
||||
if (strEQ(type, "vxfs")) {
|
||||
fsp->type = SIGAR_FSTYPE_LOCAL_DISK;
|
||||
}
|
||||
break;
|
||||
/* XXX */
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue