search for: one_missed_tick_pending

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

2008 Jan 22
0
Questions about fast clock in 64-bit linux hvm
...here, but I tracked down the "timer_mode" xm domain config variable, and found the explanations of the different values in xen/include/public/hvm/params.h. It looks like the options are delay_for_missed_ticks (default, 0), no_delay_for_missed_ticks (1), no_missed_ticks_pending (2) and one_missed_tick_pending (3). I tested 0 and 1 so far. I saw good results on one domain that hadn''t had much skew in the first place, but the second one I tested was still a second fast soon after I created it. Does anywone have information on what mode works best with 64-bit linux? 2) These hosts are already...
2012 Feb 29
5
[PATCH] [PATCH v4] Add the bios option to specify the bios to load
...urn "seabios"; diff -r adcd6ab160fa -r 3c10ba854d37 tools/libxl/libxl_types.idl --- a/tools/libxl/libxl_types.idl Thu Feb 23 10:29:27 2012 +0000 +++ b/tools/libxl/libxl_types.idl Wed Feb 29 13:00:06 2012 +0000 @@ -99,6 +99,12 @@ libxl_timer_mode = Enumeration("timer_mo (3, "one_missed_tick_pending"), ]) +libxl_bios_type = Enumeration("bios_type", [ + (1, "rombios"), + (2, "seabios"), + (3, "ovmf"), + ]) + # # Complex libxl types # @@ -228,6 +234,7 @@ libxl_domain_build_info = Struct("domain ("u", KeyedUn...
2012 Feb 20
18
[PATCH] libxl: fix compile error of libvirt
a, libxl_event.h is included in libxl.h. So, the former one also need to be installed. b, define __XEN_TOOLS__ in libxl.h: the head file "xen/sysctl.h" need check this macro. It is the same way used by the xen libxc public headers(tools/libxc/xenctrl.h and tools/libxc/xenctrlosdep.h). Signed-off-by: Bamvor Jian Zhang <bjzhang@suse.com> diff -r 87218bd367be