diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-08-01 21:22:43 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-08-01 21:22:43 +0000 |
commit | f769129b312d5d01322196e7def1d68b12565ff5 (patch) | |
tree | ae08674a7ae00236eb44e7e598a9f74c17b5478d /sys/arch/alpha/include/alpha_cpu.h | |
parent | 194291dea8c405625b260f0909567d53dccf4757 (diff) |
ALPHA_PTE_WRITE needs to include the "user write" bit; thorpej
Diffstat (limited to 'sys/arch/alpha/include/alpha_cpu.h')
-rw-r--r-- | sys/arch/alpha/include/alpha_cpu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/alpha/include/alpha_cpu.h b/sys/arch/alpha/include/alpha_cpu.h index 30612925b24..7247276100c 100644 --- a/sys/arch/alpha/include/alpha_cpu.h +++ b/sys/arch/alpha/include/alpha_cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: alpha_cpu.h,v 1.2 1997/01/24 19:57:05 niklas Exp $ */ +/* $OpenBSD: alpha_cpu.h,v 1.3 1997/08/01 21:22:42 deraadt Exp $ */ /* $NetBSD: alpha_cpu.h,v 1.7 1996/11/23 06:25:31 cgd Exp $ */ /* @@ -201,7 +201,7 @@ struct alpha_logout_area { #define ALPHA_PTE_KW 0x1000 #define ALPHA_PTE_UW 0x2000 -#define ALPHA_PTE_WRITE (ALPHA_PTE_KW | ALPHA_PTE_KW) +#define ALPHA_PTE_WRITE (ALPHA_PTE_KW | ALPHA_PTE_UW) #define ALPHA_PTE_SOFTWARE 0xffff0000 |