diff options
author | 2010-07-01 05:09:27 +0000 | |
---|---|---|
committer | 2010-07-01 05:09:27 +0000 | |
commit | 10cb2ff60085c53dec3dbe44c7a8d5dee2605eff (patch) | |
tree | d1a1ca02c6f6380efb25257a23e6a4fda4607f78 /sys | |
parent | Provide safepri. (diff) | |
download | wireguard-openbsd-10cb2ff60085c53dec3dbe44c7a8d5dee2605eff.tar.xz wireguard-openbsd-10cb2ff60085c53dec3dbe44c7a8d5dee2605eff.zip |
Provide uvm constraints.
ok kettenis@ thib@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/hppa64/hppa64/machdep.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/hppa64/hppa64/machdep.c b/sys/arch/hppa64/hppa64/machdep.c index 0d5e3b17155..a2ebc2f89db 100644 --- a/sys/arch/hppa64/hppa64/machdep.c +++ b/sys/arch/hppa64/hppa64/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.24 2010/07/01 05:07:26 jsing Exp $ */ +/* $OpenBSD: machdep.c,v 1.25 2010/07/01 05:09:27 jsing Exp $ */ /* * Copyright (c) 2005 Michael Shalayeff @@ -162,6 +162,9 @@ pid_t sigpid = 0; #define SDB_FOLLOW 0x01 #endif +struct uvm_constraint_range dma_constraint = { 0x0, (paddr_t)-1 }; +struct uvm_constraint_range *uvm_md_constraints[] = { NULL }; + int hppa_cpuspeed(int *mhz); int |