readying for p15

git-svn-id: svn://opensvn.adaptivecomputing.com/maui/trunk@55 3f5042e3-fb1d-0410-be18-d6ca2573e517
This commit is contained in:
dev 2006-05-22 22:24:32 +00:00
parent b6a1fae222
commit 13f1591abe
3 changed files with 15 additions and 4 deletions

View File

@ -1,8 +1,14 @@
Maui 3.2.6p15
- Various enhancements and bug fixes
- Maui's 'configure' script now compatible with latest TORQUE versions
Maui 3.2.6p14
Features
- Fix buffer overflow in mdiag -p
- Corrected logging in earliest start time evaluation handling
- Fixed buffer overflow in mdiag -p
- Fixed bug with floating generic resource tracking
- Added support for NODEMEMOVERCOMMITFACTOR on TORQUE
- Integrated latest DOE S3 communications library

View File

@ -1 +1 @@
#define MSCHED_VERSION ""
#define MSCHED_VERSION "maui-3.2.6p14-snap.1138394201"

View File

@ -7282,7 +7282,7 @@ int MJobGetEStartTime(
BestTaskCount,
EP->Name,
J->Name,
MULToTString(*EStartTime - MSched.Time));
MULToTString(BestStartTime - MSched.Time));
/* apply locality constraints */
@ -7518,7 +7518,7 @@ int MJobGetEStartTime(
DBG(2,fSCHED) DPrint("INFO: located resources for %d tasks for spanning job %s at time %s in range %d\n",
J->Request.TC,
J->Name,
MULToTString(*EStartTime - MSched.Time),
MULToTString(BestRange[rindex].StartTime - MSched.Time),
rindex);
if (MJobAllocMNL(
@ -7550,6 +7550,11 @@ int MJobGetEStartTime(
return(FAILURE);
}
if ((BestStartTime >= MAX_MTIME) && (BestRange[0].StartTime < BestStartTime))
{
BestStartTime = BestRange[0].StartTime;
}
tmpTaskCount = 0;