diff options
author | phk <phk@FreeBSD.org> | 1998-07-22 06:21:55 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1998-07-22 06:21:55 +0000 |
commit | 101e6d7c92768c8e8bdc2939aebe76f831635a23 (patch) | |
tree | 94bb6087cc5fdbec19769026123f4a4eac18b8ec /sys/vm/vm_param.h | |
parent | 5835aea78c951daff7e4aaf6096923a07d170b55 (diff) | |
download | FreeBSD-src-101e6d7c92768c8e8bdc2939aebe76f831635a23.zip FreeBSD-src-101e6d7c92768c8e8bdc2939aebe76f831635a23.tar.gz |
There is a comment in vm_param.h which doesn't belong to the
code still left in there. The macros it describes disapeared some-
time since 4.4BSD lite.
PR: 7246
Reviewed by: phk
Submitted by: Stefan Eggers <seggers@semyam.dinoco.de>
Diffstat (limited to 'sys/vm/vm_param.h')
-rw-r--r-- | sys/vm/vm_param.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/vm/vm_param.h b/sys/vm/vm_param.h index f1cfca9..f68c824 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$ + * $Id: vm_param.h,v 1.8 1997/02/22 09:48:37 peter Exp $ */ /* @@ -149,10 +149,6 @@ extern int page_shift; #define KERN_NO_ACCESS 8 #ifndef ASSEMBLER -/* - * Convert addresses to pages and vice versa. - * No rounding is used. - */ #ifdef KERNEL #define num_pages(x) \ ((vm_offset_t)((((vm_offset_t)(x)) + PAGE_MASK) >> PAGE_SHIFT)) |