diff options
author | Eamon Walsh <ewalsh@tycho.nsa.gov> | 2011-05-26 17:15:38 -0400 |
---|---|---|
committer | Eamon Walsh <ewalsh@tycho.nsa.gov> | 2011-05-26 17:15:38 -0400 |
commit | a6a6ea5acd44fb097d0cd876ea7717792aed1e45 (patch) | |
tree | 92bd9dfa7eccb6999d834840fdbd368a45a1edaa | |
parent | d5914d763ae91dc2b191e3cffc4bff868e1d7814 (diff) |
Fix incorrect vchan xenstore path.
-rw-r--r-- | src/xen_server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xen_server.c b/src/xen_server.c index f33638b..d950c93 100644 --- a/src/xen_server.c +++ b/src/xen_server.c @@ -181,7 +181,7 @@ domain_setup(struct xs_handle *xenstore, int domid, int newdom) /* watch for vchan */ snprintf(buf, sizeof(buf), - "/local/domain/%d/device/vchan/%d/event-channel", + "/local/domain/%d/data/vchan/%d/event-channel", domid, LINPICKER_VPORT); if (!xs_watch(xenstore, buf, LINPICKER_TOKEN)) |