diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-09-14 22:13:51 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-09-14 22:13:51 +0000 |
commit | fbd44d059bb82f7b472ccf354864468c27161839 (patch) | |
tree | c43d84518904bc875a4e8e814d202b96d1585329 | |
parent | 4e181d2dc9e75b34c5bb5e29f895073988b52a6a (diff) |
higher max kmem default and mark swap broken
-rw-r--r-- | sys/arch/hppa/include/param.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/arch/hppa/include/param.h b/sys/arch/hppa/include/param.h index 0b8b1ab600c..f1d261007eb 100644 --- a/sys/arch/hppa/include/param.h +++ b/sys/arch/hppa/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.24 2004/08/06 22:31:30 mickey Exp $ */ +/* $OpenBSD: param.h,v 1.25 2004/09/14 22:13:50 mickey Exp $ */ /* * Copyright (c) 1988-1994, The University of Utah and @@ -91,7 +91,7 @@ * logical pages. */ #define NKMEMPAGES_MIN_DEFAULT ((4 * 1024 * 1024) >> PAGE_SHIFT) -#define NKMEMPAGES_MAX_DEFAULT ((64 * 1024 * 1024) >> PAGE_SHIFT) +#define NKMEMPAGES_MAX_DEFAULT ((128 * 1024 * 1024) >> PAGE_SHIFT) /* pages ("clicks") (4096 bytes) to disk blocks */ #define ctod(x) ((x) << (PGSHIFT - DEV_BSHIFT)) @@ -140,3 +140,5 @@ extern hppa_hpa_t conaddr; extern int conunit; #endif #endif + +#define __SWAP_BROKEN |