diff options
author | alc <alc@FreeBSD.org> | 1999-06-20 04:55:29 +0000 |
---|---|---|
committer | alc <alc@FreeBSD.org> | 1999-06-20 04:55:29 +0000 |
commit | aa61764b70413d3d4c1c15cc23915b1b8bfcc2eb (patch) | |
tree | 5a6901406d68eaebf2505bea82a7d82bba673cc8 /sys/vm/vm_param.h | |
parent | ded53d5e013ac979d738d3bcbbcc2cde9f480278 (diff) | |
download | FreeBSD-src-aa61764b70413d3d4c1c15cc23915b1b8bfcc2eb.zip FreeBSD-src-aa61764b70413d3d4c1c15cc23915b1b8bfcc2eb.tar.gz |
Set cnt.v_page_size to PAGE_SIZE rather than DEFAULT_PAGE_SIZE so that
"vmstat -s" reports the correct value on the Alpha.
Submitted by: Hidetoshi Shimokawa <simokawa@sat.t.u-tokyo.ac.jp>
Diffstat (limited to 'sys/vm/vm_param.h')
-rw-r--r-- | sys/vm/vm_param.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/vm/vm_param.h b/sys/vm/vm_param.h index f68c824..2f953c6 100644 --- a/sys/vm/vm_param.h +++ b/sys/vm/vm_param.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_param.h,v 1.8 1997/02/22 09:48:37 peter Exp $ + * $Id: vm_param.h,v 1.9 1998/07/22 06:21:55 phk Exp $ */ /* @@ -73,14 +73,14 @@ #include <machine/vmparam.h> +#if 0 + /* * The machine independent pages are refered to as PAGES. A page * is some number of hardware pages, depending on the target machine. */ #define DEFAULT_PAGE_SIZE 4096 -#if 0 - /* * All references to the size of a page should be done with PAGE_SIZE * or PAGE_SHIFT. The fact they are variables is hidden here so that |