Skip to content
Snippets Groups Projects
Commit 1f0d150b authored by Morris Jette's avatar Morris Jette
Browse files

burst_buffer/cray: Improve logging

Add more detail to log message and change from error to debug2
  with an explanation of how this happens
parent b3b7cf2e
No related branches found
No related tags found
No related merge requests found
......@@ -1410,7 +1410,11 @@ extern void bb_limit_rem(uint32_t user_id, uint64_t bb_size, char *pool,
if (state_ptr->unfree_space >= bb_size) {
state_ptr->unfree_space -= bb_size;
} else {
error("%s: unfree_space underflow", __func__);
/* This will happen if we reload burst buffer state
* after making a claim against resources, but before
* the buffer actually gets created */
debug2("%s: unfree_space underflow (%"PRIu64" < %"PRIu64")",
__func__, state_ptr->unfree_space, bb_size);
state_ptr->unfree_space = 0;
}
} else {
......
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