search for: xenstat_get_domain_nam

Displaying 3 results from an estimated 3 matches for "xenstat_get_domain_nam".

2005 Oct 27
2
[PATCH] Enable xenstat to use xenstore & fix bugzilla #311
Signed-off-by: Jerone Young <jyoung5@us.ibm.com> -- Jerone Young IBM Linux Technology Center jyoung5@us.ibm.com 512-838-1157 (T/L: 678-1157) _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2005 Oct 31
0
[PATCH] wild pointer in xenstat.c
...is an error in xenstat, such that a wild pointer is being dereferenced and written to. Signed-off-by: Charles Coffing <ccoffing@novell.com> --- xen-unstable.orig/tools/xenstat/libxenstat/src/xenstat.c +++ xen-unstable/tools/xenstat/libxenstat/src/xenstat.c @@ -704,7 +704,7 @@ static char *xenstat_get_domain_name(xen { char path[80]; char *name; - unsigned int *len; + unsigned int len; struct xs_transaction_handle *xstranshandle; snprintf(path, sizeof(path),"/local/domain/%i/name", domain_id); @@ -715,7 +715,7 @@ static char *xenstat_get_domain_name(x...
2006 Feb 24
2
domain id
Hi All I am a newbie to the xen community and I am facing some crashes due to my code changes. A quick question: When i start a new domain with id being set to say "VM100" (the id that is shown in the xm list ouput), whats the id that will be stored in the domain structure? i.e struct domain *d ; d->id ?? Any help will be appreciated. Thanks Jaikumar