1
1

Merge pull request #319 from miked-mellanox/topic/opal_path_nfs_autofs

skip check for autofs if fstype is autofs jenkins: check
Этот коммит содержится в:
Jeff Squyres 2014-12-18 15:47:16 -05:00
родитель c621d1e622 da5b8c6879
Коммит de31b08a24

Просмотреть файл

@ -619,6 +619,9 @@ found:
int x;
if (NULL != fs_type) {
for (x = 0; x < FS_TYPES_NUM; x++) {
if (AUTOFS_SUPER_MAGIC == fs_types[x].f_fsid) {
continue;
}
if (0 == strcasecmp(fs_types[x].f_fsname, fs_type)) {
OPAL_OUTPUT_VERBOSE((10, 0, "opal_path_nfs: file:%s on fs:%s\n", fname, fs_type));
free(fs_type);