search for: xc_vmx_build

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

2005 Aug 08
4
[PATCH] Fix TypeError when starting VMX domains
The attached patch fixes this traceback: Traceback (most recent call last): File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 510, in construct self.construct_image() File "/usr/lib/python/xen/xend/XendDomainInfo.py", line 574, in construct_image self.store_channel) File "/usr/lib/python/xen/xend/xenstore/xsobj.py", line 310, in
2005 Apr 30
0
[PATCH] vmx-mach-to-phys.patch
VMX domains need to setup their machine to physical maps. Signed-off-by: Arun Sharma <arun.sharma@intel.com> --- 1.21/tools/libxc/xc_vmx_build.c 2005-04-28 11:04:44 -07:00 +++ edited/tools/libxc/xc_vmx_build.c 2005-04-29 18:28:13 -07:00 @@ -313,6 +313,16 @@ munmap(vl1tab, PAGE_SIZE); munmap(vl2tab, PAGE_SIZE); + /* Write the machine->phys table entries. */ + for ( count = 0; count < nr_pages; count++ ) + { +...
2005 Dec 31
1
RE: [PATCH][RESEND] add "acpi" option inxmexample.vmxconfig file
Forget to reset sum in func checksum_valid(). Update the patch again. sorry for the inconvenient. > -----Original Message----- > From: xen-devel-bounces@lists.xensource.com > [mailto:xen-devel-bounces@lists.xensource.com] On Behalf Of Yu, Ke > Sent: 2005年12月31日 22:26 To: Keir Fraser > Cc: xen-devel@lists.xensource.com > Subject: RE: [Xen-devel] [PATCH][RESEND] add
2005 Aug 30
4
Re: [Xen-changelog] New console transport and update xenconsoled.
...cpus, > unsigned int store_evtchn, >- unsigned long *store_mfn); >+ unsigned long *store_mfn, >+ unsigned int console_evtchn, >+ unsigned long *console_mfn); > > struct mem_map; > int xc_vmx_build(int xc_handle, >diff -r e69cbfee4011 -r 8fe8a99b1c2a tools/python/xen/lowlevel/xc/xc.c >--- a/tools/python/xen/lowlevel/xc/xc.c Tue Aug 30 08:47:51 2005 >+++ b/tools/python/xen/lowlevel/xc/xc.c Tue Aug 30 16:14:53 2005 >@@ -268,25 +268,33 @@ > u32 dom; > char *image, *ramd...