search for: xenstat_domain

Displaying 4 results from an estimated 4 matches for "xenstat_domain".

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
2007 Jun 05
0
[PATCH][XENTOP][4/4] Display blktap statistics.
...n. Signed-off-by: Satoshi UCHIDA <s-uchida@ap.jp.nec.com> diff -r 1768a89bb878 -r 1b36d6f6c7a9 tools/xenstat/xentop/xentop.c --- a/tools/xenstat/xentop/xentop.c Fri Jun 01 11:40:29 2007 +0900 +++ b/tools/xenstat/xentop/xentop.c Fri Jun 01 11:42:29 2007 +0900 @@ -913,6 +913,12 @@ void do_vbd(xenstat_domain *domain) xenstat_vbd *vbd; unsigned num_vbds = 0; + const char *vbd_type[] = { + "Unidentified", /* number 0 */ + "BlkBack", /* number 1 */ + "BlkTap", /* number 2 */ + }; + num_vbds = xenstat_domain_num_vbds(domain); for...
2007 Feb 26
0
[PATCH] Fix for Solaris compile/output for VBDs in xentop
...2c9ecfefe13c Fix for Solaris compile/output for VBDs in xentop. Signed-off-by: John Levon <john.levon@sun.com> diff --git a/tools/xenstat/xentop/xentop.c b/tools/xenstat/xentop/xentop.c --- a/tools/xenstat/xentop/xentop.c +++ b/tools/xenstat/xentop/xentop.c @@ -918,11 +918,19 @@ void do_vbd(xenstat_domain *domain) num_vbds = xenstat_domain_num_vbds(domain); for (i=0 ; i< num_vbds; i++) { + char details[20]; + vbd = xenstat_domain_vbd(domain,i); - - print("VBD %4d [%2x:%2x] OO: %8llu RD: %8llu WR: %8llu\n", - xenstat_vbd_dev(vbd), - MAJOR(xenstat_vbd_dev...
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