From owner-svn-src-head@freebsd.org Fri Nov 27 18:20:22 2015 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B82CAA3A7C6; Fri, 27 Nov 2015 18:20:22 +0000 (UTC) (envelope-from zbb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 880CF1954; Fri, 27 Nov 2015 18:20:22 +0000 (UTC) (envelope-from zbb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tARIKLYg019236; Fri, 27 Nov 2015 18:20:21 GMT (envelope-from zbb@FreeBSD.org) Received: (from zbb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tARIKL16019235; Fri, 27 Nov 2015 18:20:21 GMT (envelope-from zbb@FreeBSD.org) Message-Id: <201511271820.tARIKL16019235@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zbb set sender to zbb@FreeBSD.org using -f From: Zbigniew Bodek Date: Fri, 27 Nov 2015 18:20:21 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r291404 - head/sys/boot/usb X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Nov 2015 18:20:22 -0000 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 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