diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2015-08-17 21:34:25 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2015-08-18 16:45:15 +0200 |
commit | 5d3ea1ab58d80f1e0c01a1a441c2847a1334a9ff (patch) | |
tree | 058f15565b705c64b706b52abc21b2c6ba2cb100 /i386 | |
parent | ecf0b595a31a9e267ed8e67caeaafbeec054a840 (diff) |
i386: fix panic message
* i386/intel/pmap.c (pmap_page_protect): Fix function name in panic
message.
Diffstat (limited to 'i386')
-rw-r--r-- | i386/intel/pmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i386/intel/pmap.c b/i386/intel/pmap.c index dc9f360..5cfffb5 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; |