From owner-p4-projects@FreeBSD.ORG Sun Apr 20 14:13:17 2008 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 017161065673; Sun, 20 Apr 2008 14:13:16 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B8375106566C for ; Sun, 20 Apr 2008 14:13:15 +0000 (UTC) (envelope-from hselasky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A67708FC0C for ; Sun, 20 Apr 2008 14:13:15 +0000 (UTC) (envelope-from hselasky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m3KEDFfs039081 for ; Sun, 20 Apr 2008 14:13:15 GMT (envelope-from hselasky@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m3KEDFf0039079 for perforce@freebsd.org; Sun, 20 Apr 2008 14:13:15 GMT (envelope-from hselasky@FreeBSD.org) Date: Sun, 20 Apr 2008 14:13:15 GMT Message-Id: <200804201413.m3KEDFf0039079@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to hselasky@FreeBSD.org using -f From: Hans Petter Selasky To: Perforce Change Reviews Cc: Subject: PERFORCE change 140294 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Apr 2008 14:13:17 -0000 http://perforce.freebsd.org/chv.cgi?CH=140294 Change 140294 by hselasky@hselasky_laptop001 on 2008/04/20 14:13:09 Reduce size of static memory array so that the kernel will load on AT91RM9200. I looks like an array of 8MB is too much even though there is enough memory on the hardware. Affected files ... .. //depot/projects/usb/src/sys/dev/usb/ustorage_fs.c#3 edit Differences ... ==== //depot/projects/usb/src/sys/dev/usb/ustorage_fs.c#3 (text+ko) ==== @@ -62,7 +62,7 @@ #define USTORAGE_FS_BULK_SIZE (1 << 17) #define USTORAGE_FS_MAX_LUN 8 #define USTORAGE_FS_RELEASE 0x0101 -#define USTORAGE_FS_RAM_SECT (1 << 14) +#define USTORAGE_FS_RAM_SECT (1 << 13) static uint8_t ustorage_fs_ramdisk[USTORAGE_FS_RAM_SECT << 9];