aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/ggc-page.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 6f99d5f..886ba44 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2011-10-08 Andi Kleen <ak@linux.intel.com>
+
+ * ggc-page.c (GGC_QUIRE_SIZE): Increase to 512
+
2011-10-13 Andi Kleen <ak@linux.intel.com>
* toplev.c (compile_file): Rename __gnu_slim_lto to __gnu_lto_slim.
diff --git a/gcc/ggc-page.c b/gcc/ggc-page.c
index 624f029..a218f76 100644
--- a/gcc/ggc-page.c
+++ b/gcc/ggc-page.c
@@ -462,7 +462,7 @@ static struct globals
can override this by defining GGC_QUIRE_SIZE explicitly. */
#ifndef GGC_QUIRE_SIZE
# ifdef USING_MMAP
-# define GGC_QUIRE_SIZE 256
+# define GGC_QUIRE_SIZE 512 /* 2MB for 4K pages */
# else
# define GGC_QUIRE_SIZE 16
# endif