svn commit: r237387 - projects/amd64_xen_pv/sys/vm
Attilio Rao
attilio at FreeBSD.org
Thu Jun 21 11:39:57 UTC 2012
Author: attilio
Date: Thu Jun 21 11:39:56 2012
New Revision: 237387
URL: http://svn.freebsd.org/changeset/base/237387
Log:
Exclude dump pages for the moment. They should be mapped into the
kernel virtual address area before they can really work.
Modified:
projects/amd64_xen_pv/sys/vm/vm_page.c
Modified: projects/amd64_xen_pv/sys/vm/vm_page.c
==============================================================================
--- projects/amd64_xen_pv/sys/vm/vm_page.c Thu Jun 21 11:23:38 2012 (r237386)
+++ projects/amd64_xen_pv/sys/vm/vm_page.c Thu Jun 21 11:39:56 2012 (r237387)
@@ -348,7 +348,7 @@ vm_page_startup(vm_offset_t vaddr)
new_end + vm_page_dump_size, VM_PROT_READ | VM_PROT_WRITE);
bzero((void *)vm_page_dump, vm_page_dump_size);
#endif
-#ifdef __amd64__
+#if defined(__amd64__) && !defined(XEN)
/*
* Request that the physical pages underlying the message buffer be
* included in a crash dump. Since the message buffer is accessed
More information about the svn-src-projects
mailing list