1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-07 13:14:51 +00:00

Remove vestigal debugging code which, in fork-heavy workloads, can cause

a 30x slowdown.
This commit is contained in:
Colin Percival 2010-11-25 04:45:31 +00:00
parent fe1c24e3d6
commit 0bd7a92067
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=215813

View File

@ -482,7 +482,6 @@ xen_pt_pin(vm_paddr_t ma)
struct mmuext_op op;
op.cmd = MMUEXT_PIN_L1_TABLE;
op.arg1.mfn = ma >> PAGE_SHIFT;
printk("xen_pt_pin(): mfn=%x\n", op.arg1.mfn);
xen_flush_queue();
PANIC_IF(HYPERVISOR_mmuext_op(&op, 1, NULL, DOMID_SELF) < 0);
}