Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emulab
emulab-devel
Commits
0e73ba5c
Commit
0e73ba5c
authored
Feb 09, 2010
by
Leigh B Stoller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor bug fix for unincorporated nodes
parent
4ef30426
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
protogeni/lib/GeniCM.pm.in
protogeni/lib/GeniCM.pm.in
+2
-1
protogeni/lib/GeniTicket.pm.in
protogeni/lib/GeniTicket.pm.in
+3
-2
No files found.
protogeni/lib/GeniCM.pm.in
View file @
0e73ba5c
...
...
@@ -1713,7 +1713,8 @@ sub SliverWorkAux($$$$$$$)
#
Unincorporated
nodes
have
no
genisliver_idx
.
my
$
restable
=
$
node
->
ReservedTableEntry
();
if
(
defined
($
restable
)
&&
!defined($restable->{'genisliver_idx'})) {
(
!defined($restable->{'genisliver_idx'}) ||
$
restable
->{
'genisliver_idx'
}
==
0
))
{
$
newnodes
{$
node
->
node_id
()}
=
$
node
;
next
;
}
...
...
protogeni/lib/GeniTicket.pm.in
View file @
0e73ba5c
#
!/usr/bin/perl -wT
#
#
GENIPUBLIC
-
COPYRIGHT
#
Copyright
(
c
)
2008
-
200
9
University
of
Utah
and
the
Flux
Group
.
#
Copyright
(
c
)
2008
-
20
1
0
University
of
Utah
and
the
Flux
Group
.
#
All
rights
reserved
.
#
package
GeniTicket
;
...
...
@@ -826,7 +826,8 @@ sub Release($$)
if
($
reservation
->
SameExperiment
($
experiment
))
{
my
$
restable
=
$
node
->
ReservedTableEntry
();
if
(
defined
($
restable
)
&&
!defined($restable->{'genisliver_idx'})) {
(
!defined($restable->{'genisliver_idx'}) ||
$
restable
->{
'genisliver_idx'
}
==
0
))
{
push
(@
nodeids
,
$
node
->
node_id
());
push
(@
nodes
,
$
node
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment