Make powerpc not use static page sizes in mozjemalloc
authorMike Hommey <mh@glandium.org>
Wed, 25 Feb 2015 01:41:37 +0000 (10:41 +0900)
committerMike Hommey <glandium@debian.org>
Sun, 14 Feb 2016 09:25:51 +0000 (09:25 +0000)
Closes: #763900
Gbp-Pq: Topic porting
Gbp-Pq: Name Make-powerpc-not-use-static-page-sizes-in-mozjemallo.patch

memory/mozjemalloc/jemalloc.c

index 7e64ff5d72b856d1261ab54dbab67c7ab91b851f..deac0707a25967d92e5698ae3bc3be68756f5bda 100644 (file)
@@ -1087,7 +1087,7 @@ static const bool config_recycle = false;
  * controlling the malloc behavior are defined as compile-time constants
  * for best performance and cannot be altered at runtime.
  */
-#if !defined(__ia64__) && !defined(__sparc__) && !defined(__mips__)
+#if !defined(__ia64__) && !defined(__sparc__) && !defined(__mips__) && !defined(__powerpc__)
 #define MALLOC_STATIC_SIZES 1
 #endif