|
Lines 486-492
static void _normalize_gres_conf(List gres_list_conf, List gres_list_system)
Link Here
|
| 486 |
list_iterator_reset(itr2); |
486 |
list_iterator_reset(itr2); |
| 487 |
while ((sys_record = list_next(itr2))) { |
487 |
while ((sys_record = list_next(itr2))) { |
| 488 |
if (!_match_gres(gres_record, sys_record)) { |
488 |
if (!_match_gres(gres_record, sys_record)) { |
|
|
489 |
error("BUG 10179 - no match between gres"); |
| 490 |
print_gres_conf(gres_record, LOG_LEVEL_ERROR); |
| 491 |
print_gres_conf(sys_record, LOG_LEVEL_ERROR); |
| 489 |
continue; |
492 |
continue; |
|
|
493 |
} else { |
| 494 |
error("BUG 10179 - match between gres"); |
| 495 |
print_gres_conf(gres_record, LOG_LEVEL_ERROR); |
| 496 |
print_gres_conf(sys_record, LOG_LEVEL_ERROR); |
| 490 |
} |
497 |
} |
| 491 |
|
498 |
|
| 492 |
/* |
499 |
/* |
| 493 |
- |
|
|