* Benchmarks of Linux based stubdom
@ 2011-11-17 16:17 Jiageng Yu
2011-11-17 16:39 ` Samuel Thibault
0 siblings, 1 reply; 2+ messages in thread
From: Jiageng Yu @ 2011-11-17 16:17 UTC (permalink / raw)
To: Samuel Thibault, Stefano Stabellini,
Xen-devel@lists.xensource.com
[-- Attachment #1.1: Type: text/plain, Size: 464 bytes --]
Hi Samuel,
Since the periodic achievement is obtained in Linux based stubdom
project, I am very interesting in the benchmarks of Linux stubdom. To have
a good comparison with mini-os based stubdom, I want to do the same
benchmarks as you did in
http://www.xen.org/files/xensummitboston08/SamThibault_XenSummit.pdf.
Please offer me the tools and methods you had used to measure the mini-os
based stubdom. Any details would be thankful.
Cheers!
Jiageng Yu.
[-- Attachment #1.2: Type: text/html, Size: 610 bytes --]
[-- Attachment #2: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Benchmarks of Linux based stubdom
2011-11-17 16:17 Benchmarks of Linux based stubdom Jiageng Yu
@ 2011-11-17 16:39 ` Samuel Thibault
0 siblings, 0 replies; 2+ messages in thread
From: Samuel Thibault @ 2011-11-17 16:39 UTC (permalink / raw)
To: Jiageng Yu; +Cc: Xen-devel@lists.xensource.com, Stefano Stabellini
Jiageng Yu, le Fri 18 Nov 2011 00:17:15 +0800, a écrit :
> Since the periodic achievement is obtained in Linux based stubdom project, I
> am very interesting in the benchmarks of Linux stubdom. To have a good
> comparison with mini-os based stubdom, I want to do the same benchmarks as you
> did in http://www.xen.org/files/xensummitboston08/SamThibault_XenSummit.pdf.
> Please offer me the tools and methods you had used to measure the mini-os based
> stubdom. Any details would be thankful.
There is not too much fancy in there :)
- Inb (Kcy) is maybe the fancy part: the measurement was made with
assembly bits, basically: rdtsc; inb; rdtsc, i.e. something like:
unsigned long t1, t2;
__asm__ volatile("rdtsc" : "=A" (t1))
inb(0x80);
__asm__ volatile("rdtsc" : "=A" (t2))
- Boot time is from xm create up to "foo login:" prompt.
- Disk performance was measured as seen from the guest, I don't remember
exactly how, probably with a simple program working on /dev/xvdb
with O_DIRECT. The CPU% was read from xm top.
- Net performance was measure as seen from the guest, probably with
netperf. The CPU% was also read from xm top. Note the use of the e1000
virtual device, which iirc performed best at the time.
Samuel
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-11-17 16:39 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-17 16:17 Benchmarks of Linux based stubdom Jiageng Yu
2011-11-17 16:39 ` Samuel Thibault
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).