aboutsummaryrefslogtreecommitdiff
path: root/www/chromium/files/patch-base_allocator_partition__allocator_page__allocator__internals__posix.h
blob: 91f9b30c0ca204f0802ccc65efcb24fe5efd3ab7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
--- base/allocator/partition_allocator/page_allocator_internals_posix.h.orig	2021-04-14 18:40:48 UTC
+++ base/allocator/partition_allocator/page_allocator_internals_posix.h
@@ -28,12 +28,16 @@
 #if defined(OS_ANDROID)
 #include <sys/prctl.h>
 #endif
-#if defined(OS_LINUX) || defined(OS_CHROMEOS)
+#if defined(OS_LINUX) || defined(OS_CHROMEOS) || defined(OS_BSD)
 #include <sys/resource.h>
 
 #include <algorithm>
 #endif
 
+#if defined(OS_FREEBSD)
+#include <fcntl.h>
+#endif
+
 #include "base/allocator/partition_allocator/page_allocator.h"
 
 #ifndef MAP_ANONYMOUS
@@ -153,12 +157,19 @@ void* SystemAllocPagesInternal(void* hint,
   PA_DCHECK(PageTag::kFirst <= page_tag);
   PA_DCHECK(PageTag::kLast >= page_tag);
   int fd = VM_MAKE_TAG(static_cast<int>(page_tag));
+#elif defined(OS_FREEBSD)
+  int fd = HANDLE_EINTR(open("/dev/zero", O_RDWR | O_CLOEXEC));
+  PA_PCHECK(fd != -1);
 #else
   int fd = -1;
 #endif
 
   int access_flag = GetAccessFlags(accessibility);
+#if defined(OS_FREEBSD)
+  int map_flags = MAP_PRIVATE;
+#else
   int map_flags = MAP_ANONYMOUS | MAP_PRIVATE;
+#endif
 
 #if defined(OS_APPLE)
   // On macOS 10.14 and higher, executables that are code signed with the
@@ -185,6 +196,8 @@ void* SystemAllocPagesInternal(void* hint,
     prctl(PR_SET_VMA, PR_SET_VMA_ANON_NAME, ret, length,
           PageTagToName(page_tag));
   }
+#elif defined(OS_FREEBSD)
+  HANDLE_EINTR(close(fd));
 #endif
 
   return ret;
@@ -317,6 +330,8 @@ void DiscardSystemPagesInternal(void* address, size_t 
     ret = madvise(address, length, MADV_DONTNEED);
   }
   PA_PCHECK(ret == 0);
+#elif defined(OS_FREEBSD)
+  PA_PCHECK(0 == madvise(address, length, MADV_FREE));
 #else
   // We have experimented with other flags, but with suboptimal results.
   //