On Wed, Jul 23, 2003 at 05:27:40PM -0500, Louis Hamilton wrote: > Notes the board support lives under arch/mips/momentum. > Also, CONFIG_BOARD_SCACHE and CONFIG_RM7000_CPU_SCACHE are utilized and > integrated into each platform's default configuration files. > As in the first patch, drivers/net/mv64340_eth.{c,h} is added to provide > ethernet support. > > If it looks ok, please check changes into the tree. Ehhh, sorry. This CONFIG_JAGUAR_DMALOW thing just isn't the way to go. I know the Jaguar's DMA architecture is unpleassant to say the least but still, cluttering generic code with ifdefs isn't the way to go. Declare all memory above the DMA limit high-memory and put the rest into ZONE_DMA rsp. ZONE_NORMAL, as appropriate for the Jaguar. Then provide a dummy implementation of kmap, kunmap etc. (unless you have "real" highmem of course) that does the same thing as if highmem was disabled, see <linux/highmem.h>. Ralf