Skip to content
Snippets Groups Projects
Commit 8f5ccb71 authored by Marcin Stolarek's avatar Marcin Stolarek Committed by Morris Jette
Browse files

select/cons_res - fix for preempt_mode=off

Do not overcommit partitions with PreemptMode=off
parent a0ba1865
No related branches found
No related tags found
No related merge requests found
......@@ -2318,9 +2318,20 @@ extern int cr_job_test(struct job_record *job_ptr, bitstr_t *node_bitmap,
/* remove existing allocations (jobs) from higher-priority partitions
* from avail_cores */
if (select_debug_flags & DEBUG_FLAG_CPU_BIND) {
info("cons_res: cr_job_test: looking for higher-priority or "
"PREEMPT_MODE_OFF part's to remove from avail_cores");
}
for (p_ptr = cr_part_ptr; p_ptr; p_ptr = p_ptr->next) {
if (p_ptr->part_ptr->priority <= jp_ptr->part_ptr->priority)
if ((p_ptr->part_ptr->priority <= jp_ptr->part_ptr->priority) &&
(p_ptr->part_ptr->preempt_mode != PREEMPT_MODE_OFF)) {
if (select_debug_flags & DEBUG_FLAG_CPU_BIND) {
info("cons_res: cr_job_test: continuing on "
"part: %s ", p_ptr->part_ptr->name);
}
continue;
}
if (!p_ptr->row)
continue;
for (i = 0; i < p_ptr->num_rows; i++) {
......
......@@ -656,7 +656,8 @@ extern int cr_job_test(struct job_record *job_ptr, bitstr_t *bitmap, int mode,
/* remove existing allocations (jobs) from higher-priority partitions
* from avail_cores */
for (p_ptr = cr_part_ptr; p_ptr; p_ptr = p_ptr->next) {
if (p_ptr->part_ptr->priority <= jp_ptr->part_ptr->priority)
if ((p_ptr->part_ptr->priority <= jp_ptr->part_ptr->priority) &&
(p_ptr->part_ptr->preempt_mode != PREEMPT_MODE_OFF))
continue;
if (!p_ptr->row)
continue;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment