aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorEamon Walsh <ewalsh@tycho.nsa.gov>2011-01-06 17:28:13 +0000
committerEamon Walsh <ewalsh@tycho.nsa.gov>2011-01-06 17:28:13 +0000
commite65f8bcea16ee092f05dc2af0b1fee6aff08eebb (patch)
treee81b4f56d4ac701420af215d9ab0f20f4ff0829f /tools
parent6d719d60282be1a2cd50ac3b03b120af4f1f277d (diff)
downloadxen-e65f8bcea16ee092f05dc2af0b1fee6aff08eebb.tar.gz
xen-e65f8bcea16ee092f05dc2af0b1fee6aff08eebb.tar.bz2
xen-e65f8bcea16ee092f05dc2af0b1fee6aff08eebb.zip
libxl: Correct paths in libxl__fill_dom0_memory_info function
Signed-off-by: Eamon Walsh <ewalsh@tycho.nsa.gov> Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com> Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/libxl/libxl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/libxl/libxl.c b/tools/libxl/libxl.c
index 6caa147bfd..8f6561a87e 100644
--- a/tools/libxl/libxl.c
+++ b/tools/libxl/libxl.c
@@ -2838,8 +2838,8 @@ retry_transaction:
t = xs_transaction_start(ctx->xsh);
target = libxl__xs_read(gc, t, target_path);
- staticmax = libxl__xs_read(gc, t, target_path);
- freememslack = libxl__xs_read(gc, t, target_path);
+ staticmax = libxl__xs_read(gc, t, max_path);
+ freememslack = libxl__xs_read(gc, t, free_mem_slack_path);
if (target && staticmax && freememslack) {
rc = 0;
goto out;