FIX: fixed backfill issue with SINGLEJOB NODEACCESSPOLICY.

Organization:	University of Tromso
Contact:	Roy Dragseth



git-svn-id: svn://opensvn.adaptivecomputing.com/maui/trunk@112 3f5042e3-fb1d-0410-be18-d6ca2573e517
This commit is contained in:
bchristiansen 2009-06-02 21:09:42 +00:00
parent fadf3ede89
commit 9c2b651d27
2 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,5 @@
Maui 3.2.6p21
- Fixed backfill issue with SINGLEUSER NODEACCESSPOLICY. (Thanks goes to Roy Dragseth)
- N->{A|C}Res.Swap is overcommitted with N->CRes.Swap instead of N->CRes.Mem. (Thanks goes to Roy Dragseth)
- Fixed a nodes configured swap from changing in a maui+pbs setup. (Thanks goes to Gareth Williams of CSIRO)
- Fixed CHECKSUM authentication for maui + slurm. Thanks goes to Eyegene Ryabinkin.

View File

@ -10301,7 +10301,10 @@ int MJobGetSNRange(
if ((J->Req[0]->NAccessPolicy == mnacSingleUser) &&
(tmpJ != NULL) &&
(tmpJ->Cred.U != J->Cred.U))
(tmpJ->Cred.U != NULL) &&
(J->Cred.U != NULL) &&
(tmpJ->Cred.U != J->Cred.U) &&
(strcmp(J->Cred.U->Name,"[ALL]")))
{
/* user dedicated resources removed */