diff options
author | 2002-01-10 01:23:08 +0000 | |
---|---|---|
committer | 2002-01-10 01:23:08 +0000 | |
commit | 82f4596fc9551330605fc38724154bc4f8178f4f (patch) | |
tree | 754f50d147057fc663265419e5f5103680f677b3 | |
parent | Check result from malloc(9) when using M_NOWAIT. nate@ ok (diff) | |
download | wireguard-openbsd-82f4596fc9551330605fc38724154bc4f8178f4f.tar.xz wireguard-openbsd-82f4596fc9551330605fc38724154bc4f8178f4f.zip |
cache_align is not used
-rw-r--r-- | sys/arch/hppa/include/pmap.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/arch/hppa/include/pmap.h b/sys/arch/hppa/include/pmap.h index 7f59dfd0cca..935473902fa 100644 --- a/sys/arch/hppa/include/pmap.h +++ b/sys/arch/hppa/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.15 2001/12/04 23:22:42 art Exp $ */ +/* $OpenBSD: pmap.h,v 1.16 2002/01/10 01:23:08 mickey Exp $ */ /* * Copyright (c) 1998,1999 Michael Shalayeff @@ -150,9 +150,6 @@ struct pv_page { #define KERNEL_DATA_PROT (TLB_AR_KRW | (KERNEL_ACCESS_ID << 1)) #ifdef _KERNEL -#define cache_align(x) (((x) + dcache_line_mask) & ~(dcache_line_mask)) -extern int dcache_line_mask; - extern void gateway_page __P((void)); #define PMAP_STEAL_MEMORY /* we have some memory to steal */ |