summaryrefslogtreecommitdiff
path: root/Zend
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2016-03-22 21:48:11 +0100
committerAnatol Belski <ab@php.net>2016-03-22 21:48:11 +0100
commit76d612129bb6b67171308f43c19d7e4791d7919e (patch)
treef533eb018b178ffd843f46937dfb7de8c1b64c24 /Zend
parent94812fa6cde18f67adeb13adcb138c7895a62c38 (diff)
parent241ba9dcb195160e323847757413603a3cc72a1f (diff)
downloadphp-git-76d612129bb6b67171308f43c19d7e4791d7919e.tar.gz
Merge branch 'PHP-7.0'
* PHP-7.0: if there's no JIT support, no RINIT is really needed Disable huge pages in the Zend allocator by default As per the discussion on internals, this is an expert feature that needs special system-level configuration and care.
Diffstat (limited to 'Zend')
-rw-r--r--Zend/zend_alloc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_alloc.c b/Zend/zend_alloc.c
index 4cf1178c57..1876559317 100644
--- a/Zend/zend_alloc.c
+++ b/Zend/zend_alloc.c
@@ -201,7 +201,7 @@ typedef struct _zend_mm_huge_list zend_mm_huge_list;
#endif
#ifdef MAP_HUGETLB
-int zend_mm_use_huge_pages = 1;
+int zend_mm_use_huge_pages = 0;
#endif
/*
@@ -2654,8 +2654,8 @@ static void alloc_globals_ctor(zend_alloc_globals *alloc_globals)
#endif
#ifdef MAP_HUGETLB
tmp = getenv("USE_ZEND_ALLOC_HUGE_PAGES");
- if (tmp && !zend_atoi(tmp, 0)) {
- zend_mm_use_huge_pages = 0;
+ if (tmp && zend_atoi(tmp, 0)) {
+ zend_mm_use_huge_pages = 1;
}
#endif
ZEND_TSRMLS_CACHE_UPDATE();