|
|
|
|
|
|
|
|
|
|
xen-changelog
[Xen-changelog] [xen-unstable] [LINUX] Only destroy a machine-contiguous
# HG changeset patch
# User kaf24@xxxxxxxxxxxxxxxxxxxx
# Node ID bd1a0b2bb2d4596227951ad6d36cb4fcc2d00a8e
# Parent 161473836da3ccf922f44e910f8b5c01c709d1e6
[LINUX] Only destroy a machine-contiguous memory region if
it really is contiguous (e.g., create_contiguous did not fail).
Signed-off-by: Keir Fraser <keir@xxxxxxxxxxxxx>
---
linux-2.6-xen-sparse/arch/i386/mm/hypervisor.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletion(-)
diff -r 161473836da3 -r bd1a0b2bb2d4
linux-2.6-xen-sparse/arch/i386/mm/hypervisor.c
--- a/linux-2.6-xen-sparse/arch/i386/mm/hypervisor.c Wed Jun 14 22:15:13
2006 +0100
+++ b/linux-2.6-xen-sparse/arch/i386/mm/hypervisor.c Thu Jun 15 11:35:23
2006 +0100
@@ -365,7 +365,8 @@ void xen_destroy_contiguous_region(unsig
};
set_xen_guest_handle(reservation.extent_start, &frame);
- if (xen_feature(XENFEAT_auto_translated_physmap))
+ if (xen_feature(XENFEAT_auto_translated_physmap) ||
+ !test_bit(__pa(vstart) >> PAGE_SHIFT, contiguous_bitmap))
return;
scrub_pages(vstart, 1 << order);
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
<Prev in Thread] |
Current Thread |
[Next in Thread> |
- [Xen-changelog] [xen-unstable] [LINUX] Only destroy a machine-contiguous memory region if,
Xen patchbot-unstable <=
|
|
|
|
|