diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2010-07-01 05:09:28 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2010-07-01 05:09:28 +0000 |
commit | d4b4fc44c12bd5709aa833bc1f4322dcefd077ce (patch) | |
tree | d070eb274c7d014adadc1d7fa32b6213aade6ae5 | |
parent | 5474c78b423a995d0eb6bb0439642ba3561ddbd6 (diff) |
Provide uvm constraints.
ok kettenis@ thib@
-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 |