From 3a87a8bc32d0ecfd569cf9b91b8b0a6355a0a8c3 Mon Sep 17 00:00:00 2001 From: Danny Auble <da@schedmd.com> Date: Fri, 18 Oct 2013 15:59:57 -0700 Subject: [PATCH] remove debug --- src/plugins/select/bluegene/bg_record_functions.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/plugins/select/bluegene/bg_record_functions.c b/src/plugins/select/bluegene/bg_record_functions.c index 8dd0c7c55a2..4224d3cfc86 100644 --- a/src/plugins/select/bluegene/bg_record_functions.c +++ b/src/plugins/select/bluegene/bg_record_functions.c @@ -1728,10 +1728,8 @@ extern void bg_record_hw_failure(bg_record_t *bg_record, List *ret_kill_list) * that is in the RebootQOSList */ if (!bg_conf->sub_blocks || !bg_conf->reboot_qos_bitmap || (bit_ffs(bg_conf->reboot_qos_bitmap) == -1) - || (bg_record->mp_count > 1)) { - info("ignore this block %d %p %d %d", bg_conf->sub_blocks, bg_conf->reboot_qos_bitmap, bit_ffs(bg_conf->reboot_qos_bitmap), bg_record->mp_count); + || (bg_record->mp_count > 1)) return; - } /* Any block in these states can be ignored */ if (bg_record->free_cnt @@ -1739,10 +1737,8 @@ extern void bg_record_hw_failure(bg_record_t *bg_record, List *ret_kill_list) || (bg_record->err_ratio < bg_conf->max_block_err)) && bg_record->action != BG_BLOCK_ACTION_FREE) || !bg_record->job_list - || (list_count(bg_record->job_list) <= 1)) { - info("ignore this block"); + || (list_count(bg_record->job_list) <= 1)) return; - } /* Make sure all jobs still running in this bad block * all have a preemptable qos */ -- GitLab