search for: hvm_param_timer_mode

Displaying 5 results from an estimated 5 matches for "hvm_param_timer_mode".

2008 May 14
3
Bug#481200: xend: Handle unspecified timer_mode domain platform parameter.
....000000000 -0300 @@ -1650,9 +1650,10 @@ self._recreateDom() # Set timer configration of domain - if hvm: + timer_mode = self.info["platform"].get("timer_mode") + if hvm and timer_mode is not None: xc.hvm_set_param(self.domid, HVM_PARAM_TIMER_MODE, - long(self.info["platform"].get("timer_mode"))) + long(timer_mode)) # Set maximum number of vcpus in domain xc.domain_max_vcpus(self.domid, int(self.info['VCPUs_max']))
2007 Nov 28
0
[Xen-ia64-devel] [PATCH] Add guest_os_type domain config option
...97982 tools/python/xen/xend/XendConstants.py --- a/tools/python/xen/xend/XendConstants.py Wed Nov 28 13:36:56 2007 +0000 +++ b/tools/python/xen/xend/XendConstants.py Wed Nov 28 09:48:59 2007 -0700 @@ -47,6 +47,7 @@ HVM_PARAM_VHPT_SIZE = 8 HVM_PARAM_VHPT_SIZE = 8 HVM_PARAM_BUFPIOREQ_PFN = 9 HVM_PARAM_TIMER_MODE = 10 +HVM_PARAM_GOS_TYPE = 11 restart_modes = [ "restart", diff -r c555a5f97982 tools/python/xen/xend/image.py --- a/tools/python/xen/xend/image.py Wed Nov 28 13:36:56 2007 +0000 +++ b/tools/python/xen/xend/image.py Wed Nov 28 09:48:59 2007 -0700 @@ -22,6 +22,7 @@ import math i...
2007 Dec 19
23
3.1.x and 3.2.x releases
Folks, A new release candidate for 3.2.0 has just been checked into the xen-unstable tree. It''s available from staging and will be in the main tree when it has passed internal regression tests. Meanwhile, in preparation for 3.1.3, please let me know if there are any further patches from xen-unstable that should be backported into the 3.1 branch. You can pull the xen-3.1-testing.hg
2012 Aug 07
6
Big Bug:Time in VM running on xen goes slower
Dear all: I have found a big bug on xen concerning time virtualization. Please let me show you the whole process: 1 Phenomenon when I run a JVM based program in IE browser in my Virtual Machine, I have found clearly that time at the right bottom corner in my VM gets more slower and slower. I studied the bug deeply, and found something below. 2 Xen vmx_vmexit_handler --> ......... -->
2011 Nov 17
29
[PATCH 00 of 17] Documentation updates
The following series flushes my documentation queue and replaces previous postings of those patches. The main difference is that the xl cfg file is now formatted using POD instead of markdown and presented as a manpage. I have setup a cron job to build docs/html and publish it at http://xenbits.xen.org/docs/unstable/ (it''s a bit bare right now). The motivation for some of these patches