diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2010-11-28 20:35:16 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2010-11-28 20:35:16 +0000 |
commit | dcfeef942c33c174cc74e6428dd1087ddf6fedea (patch) | |
tree | 6d284019fce7ef471d6db2e0fdf513cdfc8e6c74 | |
parent | a89ecd2eb32fcbc7d7b07f7080b1416eec0bd4e7 (diff) |
Update comment to no longer mention a page is 4KB, since this may not be the
case.
-rw-r--r-- | sys/arch/mips64/include/param.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mips64/include/param.h b/sys/arch/mips64/include/param.h index b461963ddfa..c0570edd533 100644 --- a/sys/arch/mips64/include/param.h +++ b/sys/arch/mips64/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.26 2009/12/13 08:27:15 deraadt Exp $ */ +/* $OpenBSD: param.h,v 1.27 2010/11/28 20:35:15 miod Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -94,7 +94,7 @@ #define NKMEMPAGES_MAX_DEFAULT ((128 * 1024 * 1024) >> PAGE_SHIFT) #endif /* _KERNEL */ -/* pages ("clicks") (4096 bytes) to disk blocks */ +/* pages ("clicks") to disk blocks */ #define ctod(x) ((x) << (PGSHIFT - DEV_BSHIFT)) #define dtoc(x) ((x) >> (PGSHIFT - DEV_BSHIFT)) |