diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-12-17 20:17:49 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-12-17 20:17:49 +0000 |
commit | 538c5953ad727adc8581431f557811c23044733e (patch) | |
tree | 513a232204c596d186febc0579d096b60b67be02 /sys/arch/sgi | |
parent | 73d19c57ee0a665cd1815f1d3ee623a3713cc2cc (diff) |
Let the xtlb refill handler fault if the userland va is out of the supported
address space instead of using the tlb of the va modulo the address space size.
ok pefo@
Diffstat (limited to 'sys/arch/sgi')
-rw-r--r-- | sys/arch/sgi/sgi/genassym.cf | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/sgi/sgi/genassym.cf b/sys/arch/sgi/sgi/genassym.cf index 94d6378f798..bbc4815e5de 100644 --- a/sys/arch/sgi/sgi/genassym.cf +++ b/sys/arch/sgi/sgi/genassym.cf @@ -1,4 +1,4 @@ -# $OpenBSD: genassym.cf,v 1.4 2004/10/08 07:16:53 grange Exp $ +# $OpenBSD: genassym.cf,v 1.5 2005/12/17 20:17:48 miod Exp $ # # Copyright (c) 1997 Per Fogelstrom / Opsycon AB # @@ -31,6 +31,8 @@ include <sys/proc.h> include <sys/mbuf.h> include <sys/user.h> +include <uvm/uvm.h> + export SONPROC struct proc @@ -55,3 +57,5 @@ member U_PCB_SEGTAB u_pcb.pcb_segtab export VM_MIN_KERNEL_ADDRESS export SIGFPE + +export PMAP_SEGTABSIZE |