Skip to content
Snippets Groups Projects
Commit 35d79925 authored by Danny Auble's avatar Danny Auble
Browse files
parent 354eed6b
No related branches found
No related tags found
No related merge requests found
......@@ -332,6 +332,9 @@ documents those changes that are of interest to users and admins.
-- BLUEGENE - add support for scontrol show blocks.
-- Added support for job step time limits.
* Changes in SLURM 2.0.10
=========================
* Changes in SLURM 2.0.9
========================
-- When running the mysql plugin natively MUNGE errors are now eliminated
......@@ -353,6 +356,8 @@ documents those changes that are of interest to users and admins.
line. Previously the line could be shortened prematurely.
-- BLUEGENE - Fix to make sure we don't erroneously set a connection type
to SMALL.
-- Type cast a negative uint64_t to int64_t to avoid confusion when doing
arithmetic with it in accounting dealing with over commit time.
* Changes in SLURM 2.0.8
========================
......
......@@ -833,8 +833,8 @@ extern int mysql_hourly_rollup(mysql_conn_t *mysql_conn,
if((int64_t)c_usage->i_cpu < 0) {
/* info("got %d %d %d", c_usage->r_cpu, */
/* c_usage->i_cpu, c_usage->o_cpu); */
c_usage->r_cpu += c_usage->i_cpu;
c_usage->o_cpu -= c_usage->i_cpu;
c_usage->r_cpu += (int64_t)c_usage->i_cpu;
c_usage->o_cpu -= (int64_t)c_usage->i_cpu;
c_usage->i_cpu = 0;
if((int64_t)c_usage->r_cpu < 0)
c_usage->r_cpu = 0;
......
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