summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornwhitehorn <nwhitehorn@FreeBSD.org>2013-11-06 14:36:38 +0000
committernwhitehorn <nwhitehorn@FreeBSD.org>2013-11-06 14:36:38 +0000
commita66ab9aa824933489c78b10f2af6addde2038ae0 (patch)
tree5cfaa87a99ccc8770da302b10aa34647245f2893
parent81230530ea7a98c2e418797999890ab547a8813e (diff)
downloadFreeBSD-src-a66ab9aa824933489c78b10f2af6addde2038ae0.zip
FreeBSD-src-a66ab9aa824933489c78b10f2af6addde2038ae0.tar.gz
Do not panic if pmap_mincore() is called. This prevents crashing userland
binaries from bringing down the kernel. MFC after: 3 days
-rw-r--r--sys/powerpc/booke/pmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/powerpc/booke/pmap.c b/sys/powerpc/booke/pmap.c
index 6ccdc74..6d943c9 100644
--- a/sys/powerpc/booke/pmap.c
+++ b/sys/powerpc/booke/pmap.c
@@ -2759,7 +2759,7 @@ mmu_booke_mincore(mmu_t mmu, pmap_t pmap, vm_offset_t addr,
vm_paddr_t *locked_pa)
{
- TODO;
+ /* XXX: this should be implemented at some point */
return (0);
}
OpenPOWER on IntegriCloud