Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
aba0395e
Commit
aba0395e
authored
Feb 16, 2011
by
Leigh B Stoller
Browse files
Merge branch 'master' of git-public.flux.utah.edu:/flux/git/emulab-devel
parents
829fee2f
a173e553
Changes
1
Hide whitespace changes
Inline
Side-by-side
tmcd/tmcd.c
View file @
aba0395e
...
...
@@ -4211,9 +4211,18 @@ COMMAND_PROTOTYPE(doloadinfo)
info
(
"%s LOADINFO compat: starting server for imageid %s"
,
reqp
->
nodeid
,
row
[
5
]);
/*
* XXX for vnodes we use the pnode name since the
* master server wants to validate a node_id by
* looking up its control net IP address in the
* interfaces table. Vnodes have no interfaces
* table entries so that won't work.
*/
snprintf
(
_buf
,
sizeof
_buf
,
"%s/sbin/frisbeehelper -n %s %s"
,
TBROOT
,
reqp
->
nodeid
,
row
[
5
]);
TBROOT
,
reqp
->
isvnode
?
reqp
->
pnodeid
:
reqp
->
nodeid
,
row
[
5
]);
if
((
cfd
=
popen
(
_buf
,
"r"
))
==
NULL
)
goto
updatemfs
;
while
(
fgets
(
_buf
,
sizeof
_buf
,
cfd
)
!=
NULL
)
{
...
...
Write
Preview
Supports
Markdown
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