]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
FreeBSD: make amd64 aspace max mem 128Gbytes
authorPaul Floyd <pjfloyd@wanadoo.fr>
Thu, 22 Dec 2022 08:30:45 +0000 (09:30 +0100)
committerPaul Floyd <pjfloyd@wanadoo.fr>
Thu, 22 Dec 2022 08:30:45 +0000 (09:30 +0100)
NEWS
coregrind/m_aspacemgr/aspacemgr-linux.c

diff --git a/NEWS b/NEWS
index 40603494b5304c7df18ed555fb3b044c205deccc..2fb98e3aba6b485ce9fae8d036ff3f9d2ee7129b 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -10,6 +10,8 @@ AMD64/macOS 10.13 and nanoMIPS/Linux.
 
 * ==================== CORE CHANGES ===================
 
+* Make the address space limit on FreeBSD amd64 128Gbytes
+  (the same as Linux and Solaris, it was 32Gbytes)
 
 * ==================== FIXED BUGS ====================
 
index 933d6d9de20d75df192b5ac8d1d7e36c43f72b97..00a42ffe6ebaf808fb8f7c8a7a701f5c9ba41581 100644 (file)
@@ -1662,7 +1662,7 @@ Addr VG_(am_startup) ( Addr sp_at_startup )
 
    aspacem_maxAddr = VG_PGROUNDDN( sp_at_startup ) - 1;
 # else
-   aspacem_maxAddr = (Addr) (Addr)0x800000000UL - 1; // 32G
+   aspacem_maxAddr = (Addr)0x2000000000ULL - 1; // 128G
 #  ifdef ENABLE_INNER
    { Addr cse = VG_PGROUNDDN( sp_at_startup ) - 1;
      if (aspacem_maxAddr > cse)