diff options
author | alc <alc@FreeBSD.org> | 2006-08-25 23:51:11 +0000 |
---|---|---|
committer | alc <alc@FreeBSD.org> | 2006-08-25 23:51:11 +0000 |
commit | 72ff1a9186c4943e7e00519c2d1929f1f163c877 (patch) | |
tree | 783bf162d21e08addb60fe53a7970e940a4dccf6 | |
parent | 67e26765217b0653374046a888c93bbb466f38f7 (diff) | |
download | FreeBSD-src-72ff1a9186c4943e7e00519c2d1929f1f163c877.zip FreeBSD-src-72ff1a9186c4943e7e00519c2d1929f1f163c877.tar.gz |
Eliminate unused definitions. (They came from NetBSD.)
Discussed with: cognet, grehan, marcel
-rw-r--r-- | sys/arm/include/vmparam.h | 9 | ||||
-rw-r--r-- | sys/ia64/include/vmparam.h | 8 | ||||
-rw-r--r-- | sys/powerpc/include/vmparam.h | 7 |
3 files changed, 0 insertions, 24 deletions
diff --git a/sys/arm/include/vmparam.h b/sys/arm/include/vmparam.h index c16df43..19201cb 100644 --- a/sys/arm/include/vmparam.h +++ b/sys/arm/include/vmparam.h @@ -50,15 +50,6 @@ /* * Override the default pager_map size, there's not enough KVA. */ -/* - * Size of User Raw I/O map - */ - -#define USRIOSIZE 300 - -/* virtual sizes (bytes) for various kernel submaps */ - -#define VM_PHYS_SIZE (USRIOSIZE*PAGE_SIZE) /* * max number of non-contig chunks of physical RAM you can have diff --git a/sys/ia64/include/vmparam.h b/sys/ia64/include/vmparam.h index de15b2c..06ae7c3 100644 --- a/sys/ia64/include/vmparam.h +++ b/sys/ia64/include/vmparam.h @@ -74,14 +74,6 @@ #endif /* - * PTEs for mapping user space into the kernel for phyio operations. - * 64 pte's are enough to cover 8 disks * MAXBSIZE. - */ -#ifndef USRIOSIZE -#define USRIOSIZE 64 -#endif - -/* * Boundary at which to place first MAPMEM segment if not explicitly * specified. Should be a power of two. This allows some slop for * the data segment to grow underneath the first mapped segment. diff --git a/sys/powerpc/include/vmparam.h b/sys/powerpc/include/vmparam.h index 6bcea66..f3625f0 100644 --- a/sys/powerpc/include/vmparam.h +++ b/sys/powerpc/include/vmparam.h @@ -66,11 +66,6 @@ #endif /* - * Size of User Raw I/O map - */ -#define USRIOSIZE 1024 - -/* * The time for a process to be blocked before being very swappable. * This is a number of seconds which the system takes as being a non-trivial * amount of real time. You probably shouldn't change this; @@ -103,8 +98,6 @@ #define VM_MAX_KERNEL_BUF (SEGMENT_LENGTH * 7 / 10) #endif -#define VM_PHYS_SIZE (USRIOSIZE * NBPG) - struct pmap_physseg { struct pv_entry *pvent; char *attrs; |