Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 20 Apr 2008 14:13:15 GMT
From:      Hans Petter Selasky <hselasky@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 140294 for review
Message-ID:  <200804201413.m3KEDFf0039079@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
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];
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200804201413.m3KEDFf0039079>