Date: Thu, 21 Jun 2012 11:39:57 +0000 (UTC) From: Attilio Rao <attilio@FreeBSD.org> To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r237387 - projects/amd64_xen_pv/sys/vm Message-ID: <201206211139.q5LBdvdT010415@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201206211139.q5LBdvdT010415>