diff options
| author | Olivier Houchard <cognet@FreeBSD.org> | 2006-03-22 22:11:10 +0000 |
|---|---|---|
| committer | Olivier Houchard <cognet@FreeBSD.org> | 2006-03-22 22:11:10 +0000 |
| commit | e9f654ba9078edb89fece95e2be414a298570a93 (patch) | |
| tree | 6de160713c118169d3fe42a21224fdbc123ba043 /sys/arm | |
| parent | f2a1d71aaaf95d8a26cad69f7f72bfe0f1b46027 (diff) | |
Notes
Diffstat (limited to 'sys/arm')
| -rw-r--r-- | sys/arm/arm/pmap.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/arm/arm/pmap.c b/sys/arm/arm/pmap.c index abf487d04a35..30f003c72f4e 100644 --- a/sys/arm/arm/pmap.c +++ b/sys/arm/arm/pmap.c @@ -2021,6 +2021,8 @@ pmap_fault_fixup(pmap_t pm, vm_offset_t va, vm_prot_t ftype, int user) */ if (user && (pte & L2_S_PROT_U) == 0) goto out; + if (va == vector_page) + goto out; pa = l2pte_pa(pte); |
