Subject: CVS commit: src/sys
To: None <source-changes@netbsd.org>
From: Jason R Thorpe <thorpej@netbsd.org>
List: source-changes
Date: 04/09/2003 21:22:15
Module Name:	src
Committed By:	thorpej
Date:		Wed Apr  9 18:22:15 UTC 2003

Modified Files:
	src/sys/arch/alpha/include: pmap.h
	src/sys/arch/arm/include/arm32: pmap.h
	src/sys/arch/i386/include: pmap.h
	src/sys/arch/mips/include: pmap.h
	src/sys/arch/x86_64/include: pmap.h
	src/sys/kern: subr_pool.c
	src/sys/sys: pool.h

Log Message:
Add the ability for pool caches to cache the physical address of
objects.  Clients of the pool_cache API must consistently use
the "paddr" variants or not, otherwise behavior is undefined.

Enable this on Alpha, ARM, MIPS, and x86.  Other platforms must
define POOL_VTOPHYS() in the appropriate manner in order to enable
the feature.

Part 1 of a series of simple patches contributed by Wasabi Systems
to improve network performance.


To generate a diff of this commit:
cvs rdiff -r1.58 -r1.59 src/sys/arch/alpha/include/pmap.h
cvs rdiff -r1.63 -r1.64 src/sys/arch/arm/include/arm32/pmap.h
cvs rdiff -r1.72 -r1.73 src/sys/arch/i386/include/pmap.h
cvs rdiff -r1.41 -r1.42 src/sys/arch/mips/include/pmap.h
cvs rdiff -r1.11 -r1.12 src/sys/arch/x86_64/include/pmap.h
cvs rdiff -r1.86 -r1.87 src/sys/kern/subr_pool.c
cvs rdiff -r1.38 -r1.39 src/sys/sys/pool.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.