[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-4.0-testing] [Xen-devel] [PATCH] PoD: Fix domain build populate-on-demand cache
# HG changeset patch # User Keir Fraser <keir.fraser@xxxxxxxxxx> # Date 1281686707 -3600 # Node ID 2af712619ebf7f36392377e1f7cb5485a04b706f # Parent 636bb63b0528b4c31efb90e9b433cadb8e128ffe [Xen-devel] [PATCH] PoD: Fix domain build populate-on-demand cache allocation Rather than trying to count the number of PoD entries we're putting in, we simply pass the target # of pages - the vga hole, and let the hypervisor do the calculation. Signed-off-by: George Dunlap <george.dunlap@xxxxxxxxxxxxx> Signed-off-by: Stefano Stabellini <stefano.stabellini@xxxxxxxxxxxxx> xen-unstable changeset: 6f059a340cdf xen-unstable date: Wed Aug 11 15:56:21 2010 +0100 --- tools/libxc/xc_hvm_build.c | 13 ++++--------- 1 files changed, 4 insertions(+), 9 deletions(-) diff -r 636bb63b0528 -r 2af712619ebf tools/libxc/xc_hvm_build.c --- a/tools/libxc/xc_hvm_build.c Fri Aug 13 09:01:19 2010 +0100 +++ b/tools/libxc/xc_hvm_build.c Fri Aug 13 09:05:07 2010 +0100 @@ -107,7 +107,6 @@ static int setup_guest(int xc_handle, xen_pfn_t *page_array = NULL; unsigned long i, nr_pages = (unsigned long)memsize << (20 - PAGE_SHIFT); unsigned long target_pages = (unsigned long)target << (20 - PAGE_SHIFT); - unsigned long pod_pages = 0; unsigned long entry_eip, cur_pages; struct xen_add_to_physmap xatp; struct shared_info *shared_info; @@ -209,11 +208,6 @@ static int setup_guest(int xc_handle, if ( done > 0 ) { done <<= SUPERPAGE_PFN_SHIFT; - if ( pod_mode && target_pages > cur_pages ) - { - int d = target_pages - cur_pages; - pod_pages += ( done < d ) ? done : d; - } cur_pages += done; count -= done; } @@ -225,15 +219,16 @@ static int setup_guest(int xc_handle, rc = xc_domain_memory_populate_physmap( xc_handle, dom, count, 0, 0, &page_array[cur_pages]); cur_pages += count; - if ( pod_mode ) - pod_pages -= count; } } + /* Subtract 0x20 from target_pages for the VGA "hole". Xen will + * adjust the PoD cache size so that domain tot_pages will be + * target_pages - 0x20 after this call. */ if ( pod_mode ) rc = xc_domain_memory_set_pod_target(xc_handle, dom, - pod_pages, + target_pages - 0x20, NULL, NULL, NULL); if ( rc != 0 ) _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |