summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustus Winter <4winter@informatik.uni-hamburg.de>2015-08-17 21:34:25 +0200
committerJustus Winter <4winter@informatik.uni-hamburg.de>2015-08-18 16:45:15 +0200
commit5d3ea1ab58d80f1e0c01a1a441c2847a1334a9ff (patch)
tree058f15565b705c64b706b52abc21b2c6ba2cb100
parentecf0b595a31a9e267ed8e67caeaafbeec054a840 (diff)
i386: fix panic message
* i386/intel/pmap.c (pmap_page_protect): Fix function name in panic message.
-rw-r--r--i386/intel/pmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/i386/intel/pmap.c b/i386/intel/pmap.c
index dc9f3605..5cfffb5a 100644
--- a/i386/intel/pmap.c
+++ b/i386/intel/pmap.c
@@ -1597,7 +1597,7 @@ void pmap_page_protect(
* Remove the mapping, collecting any modify bits.
*/
if (*pte & INTEL_PTE_WIRED)
- panic("pmap_remove_all removing a wired page");
+ panic("pmap_page_protect removing a wired page");
{
int i = ptes_per_vm_page;