1
1

fcoll: make vulcan the default component

make vulcan the default component except for Lustre file systems.

Signed-off-by: Edgar Gabriel <egabriel@central.uh.edu>
Этот коммит содержится в:
Edgar Gabriel 2018-06-22 14:12:02 -05:00
родитель fd8c5fba4e
Коммит cf5cdad40f
2 изменённых файлов: 7 добавлений и 2 удалений

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

@ -268,6 +268,11 @@ int mca_fcoll_base_query_table (struct ompio_file_t *file, char *name)
return 1;
}
}
if (!strcmp (name, "vulcan")) {
if ( (LUSTRE != file->f_fstype)) {
return 1;
}
}
if (!strcmp (name, "dynamic")) {
if ((int)file->f_cc_size < file->f_bytes_per_agg &&
file->f_cc_size >= file->f_stripe_size) {

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

@ -63,8 +63,8 @@ mca_fcoll_two_phase_component_file_query (ompio_file_t *fh, int *priority)
}
if (mca_fcoll_base_query_table (fh, "two_phase")) {
if (*priority < 50) {
*priority = 50;
if (*priority < 35) {
*priority = 35;
}
}