Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 27 Nov 2015 18:20:21 +0000 (UTC)
From:      Zbigniew Bodek <zbb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r291404 - head/sys/boot/usb
Message-ID:  <201511271820.tARIKL16019235@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: zbb
Date: Fri Nov 27 18:20:21 2015
New Revision: 291404
URL: https://svnweb.freebsd.org/changeset/base/291404

Log:
  Increase malloc area in loader/usb
  
  Previous value was not enough on Arndale platform.
  
  Reviewed by:   hselasky
  Submitted by:  Wojciech Macek <wma@semihalf.com>
  Obtained from: Semihalf
  Sponsored by:  Juniper Networks Inc.
  Differential Revision: https://reviews.freebsd.org/D4145

Modified:
  head/sys/boot/usb/usbcore.mk

Modified: head/sys/boot/usb/usbcore.mk
==============================================================================
--- head/sys/boot/usb/usbcore.mk	Fri Nov 27 18:19:11 2015	(r291403)
+++ head/sys/boot/usb/usbcore.mk	Fri Nov 27 18:20:21 2015	(r291404)
@@ -44,8 +44,11 @@ S=${USBCOREDIR}/../..
 	${S}/dev/usb/template
 .undef S
 
+USB_POOL_SIZE?=	131072
+
 CFLAGS+=	-DUSB_MSCTEST_BULK_SIZE=65536
-CFLAGS+=	-DUSB_POOL_SIZE=131072
+CFLAGS+=	-DUSB_POOL_SIZE=${USB_POOL_SIZE}
+
 
 #
 # BUSDMA implementation



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