Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 14 Aug 2018 19:42:18 +0000 (UTC)
From:      Kyle Evans <kevans@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r337815 - stable/11/stand/uboot/common
Message-ID:  <201808141942.w7EJgIfn090267@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kevans
Date: Tue Aug 14 19:42:18 2018
New Revision: 337815
URL: https://svnweb.freebsd.org/changeset/base/337815

Log:
  ubldr: Bump heap size, 1MB -> 2MB
  
  1MB was leaving very little margin in some of the worse-case scenarios with
  lualoader. 2MB is still low enough that we shouldn't have any problems with
  UBoot-supported boards.

Modified:
  stable/11/stand/uboot/common/main.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/stand/uboot/common/main.c
==============================================================================
--- stable/11/stand/uboot/common/main.c	Tue Aug 14 19:31:06 2018	(r337814)
+++ stable/11/stand/uboot/common/main.c	Tue Aug 14 19:42:18 2018	(r337815)
@@ -42,7 +42,7 @@ __FBSDID("$FreeBSD$");
 #endif
 
 #ifndef HEAP_SIZE
-#define	HEAP_SIZE	(1 * 1024 * 1024)
+#define	HEAP_SIZE	(2 * 1024 * 1024)
 #endif
 
 struct uboot_devdesc currdev;



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