[Glibc-bsd-commits] r4243 - in trunk: kfreebsd-8/debian kfreebsd-8/debian/patches kfreebsd-9/debian kfreebsd-9/debian/patches

Robert Millan rmh at alioth.debian.org
Fri Apr 27 23:29:13 UTC 2012


Author: rmh
Date: 2012-04-27 23:29:11 +0000 (Fri, 27 Apr 2012)
New Revision: 4243

Added:
   trunk/kfreebsd-8/debian/patches/amd64_increase_DFLDSIZ.diff
   trunk/kfreebsd-9/debian/patches/amd64_increase_DFLDSIZ.diff
Modified:
   trunk/kfreebsd-8/debian/changelog
   trunk/kfreebsd-8/debian/patches/series
   trunk/kfreebsd-9/debian/changelog
   trunk/kfreebsd-9/debian/patches/series
Log:
Increase DFLDSIZ from 128 MiB to 32 GiB.

Modified: trunk/kfreebsd-8/debian/changelog
===================================================================
--- trunk/kfreebsd-8/debian/changelog	2012-04-27 22:43:45 UTC (rev 4242)
+++ trunk/kfreebsd-8/debian/changelog	2012-04-27 23:29:11 UTC (rev 4243)
@@ -3,8 +3,9 @@
   * remove_tmpfs_warning.diff: Remove tmpfs warning as done in 8-STABLE.
   * Add back USB drivers for network and serial ports. Userland
     (specially D-I) is not yet ready to handle auto-load reliably.
+  * Increase DFLDSIZ from 128 MiB to 32 GiB.  (Closes: #669170)
 
- -- Robert Millan <rmh at debian.org>  Sat, 28 Apr 2012 00:43:33 +0200
+ -- Robert Millan <rmh at debian.org>  Sat, 28 Apr 2012 01:26:44 +0200
 
 kfreebsd-8 (8.3-1) unstable; urgency=low
 

Added: trunk/kfreebsd-8/debian/patches/amd64_increase_DFLDSIZ.diff
===================================================================
--- trunk/kfreebsd-8/debian/patches/amd64_increase_DFLDSIZ.diff	                        (rev 0)
+++ trunk/kfreebsd-8/debian/patches/amd64_increase_DFLDSIZ.diff	2012-04-27 23:29:11 UTC (rev 4243)
@@ -0,0 +1,21 @@
+------------------------------------------------------------------------
+r234743 | rmh | 2012-04-28 00:27:21 +0200 (ds, 28 abr 2012) | 5 lines
+
+Increase DFLDSIZ from 128 MiB to 32 GiB.  On amd64 there's plenty of virtual
+memory available, so there is no need to be so conservative about it.
+
+Reviewed by:    arch
+
+------------------------------------------------------------------------
+
+--- a/sys/amd64/include/vmparam.h
++++ b/sys/amd64/include/vmparam.h
+@@ -54,7 +54,7 @@
+  */
+ #define	MAXTSIZ		(128UL*1024*1024)	/* max text size */
+ #ifndef DFLDSIZ
+-#define	DFLDSIZ		(128UL*1024*1024)	/* initial data size limit */
++#define	DFLDSIZ		(32768UL*1024*1024)	/* initial data size limit */
+ #endif
+ #ifndef MAXDSIZ
+ #define	MAXDSIZ		(32768UL*1024*1024)	/* max data size */

Modified: trunk/kfreebsd-8/debian/patches/series
===================================================================
--- trunk/kfreebsd-8/debian/patches/series	2012-04-27 22:43:45 UTC (rev 4242)
+++ trunk/kfreebsd-8/debian/patches/series	2012-04-27 23:29:11 UTC (rev 4243)
@@ -8,6 +8,7 @@
 mk_kernel_symbols.diff
 improve_tmpfs_mem_info.diff
 remove_tmpfs_warning.diff
+amd64_increase_DFLDSIZ.diff
 
 # Other patches that might or might not be mergeable
 001_misc.diff

Modified: trunk/kfreebsd-9/debian/changelog
===================================================================
--- trunk/kfreebsd-9/debian/changelog	2012-04-27 22:43:45 UTC (rev 4242)
+++ trunk/kfreebsd-9/debian/changelog	2012-04-27 23:29:11 UTC (rev 4243)
@@ -6,8 +6,9 @@
     same codebase.
   * Add back USB drivers for network and serial ports. Userland
     (specially D-I) is not yet ready to handle auto-load reliably.
+  * Increase DFLDSIZ from 128 MiB to 32 GiB.  (Closes: #669173)
 
- -- Robert Millan <rmh at debian.org>  Sat, 28 Apr 2012 00:43:13 +0200
+ -- Robert Millan <rmh at debian.org>  Sat, 28 Apr 2012 01:26:33 +0200
 
 kfreebsd-9 (9.0-2) unstable; urgency=low
 

Added: trunk/kfreebsd-9/debian/patches/amd64_increase_DFLDSIZ.diff
===================================================================
--- trunk/kfreebsd-9/debian/patches/amd64_increase_DFLDSIZ.diff	                        (rev 0)
+++ trunk/kfreebsd-9/debian/patches/amd64_increase_DFLDSIZ.diff	2012-04-27 23:29:11 UTC (rev 4243)
@@ -0,0 +1,21 @@
+------------------------------------------------------------------------
+r234743 | rmh | 2012-04-28 00:27:21 +0200 (ds, 28 abr 2012) | 5 lines
+
+Increase DFLDSIZ from 128 MiB to 32 GiB.  On amd64 there's plenty of virtual
+memory available, so there is no need to be so conservative about it.
+
+Reviewed by:    arch
+
+------------------------------------------------------------------------
+
+--- a/sys/amd64/include/vmparam.h
++++ b/sys/amd64/include/vmparam.h
+@@ -54,7 +54,7 @@
+  */
+ #define	MAXTSIZ		(128UL*1024*1024)	/* max text size */
+ #ifndef DFLDSIZ
+-#define	DFLDSIZ		(128UL*1024*1024)	/* initial data size limit */
++#define	DFLDSIZ		(32768UL*1024*1024)	/* initial data size limit */
+ #endif
+ #ifndef MAXDSIZ
+ #define	MAXDSIZ		(32768UL*1024*1024)	/* max data size */

Modified: trunk/kfreebsd-9/debian/patches/series
===================================================================
--- trunk/kfreebsd-9/debian/patches/series	2012-04-27 22:43:45 UTC (rev 4242)
+++ trunk/kfreebsd-9/debian/patches/series	2012-04-27 23:29:11 UTC (rev 4243)
@@ -1,6 +1,7 @@
 # Patches from (or merged in) upstream
 improve_tmpfs_mem_info.diff
 remove_tmpfs_warning.diff
+amd64_increase_DFLDSIZ.diff
 
 # Other patches that might or might not be mergeable
 001_misc.diff




More information about the Glibc-bsd-commits mailing list