aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/os_linux.go
diff options
context:
space:
mode:
authorAustin Clements <austin@google.com>2017-12-30 19:35:46 -0500
committerAustin Clements <austin@google.com>2018-02-15 21:12:24 +0000
commit51ae88ee2f9a1063c272a497527751d786291c89 (patch)
tree94baf271ae262909ee77c0a475fa538b4808e5d2 /src/runtime/os_linux.go
parent2b415549b813ba36caafa34fc34d72e47ee8335c (diff)
downloadgo-51ae88ee2f9a1063c272a497527751d786291c89.tar.gz
go-51ae88ee2f9a1063c272a497527751d786291c89.zip
runtime: remove non-reserved heap logic
Currently large sysReserve calls on some OSes don't actually reserve the memory, but just check that it can be reserved. This was important when we called sysReserve to "reserve" many gigabytes for the heap up front, but now that we map memory in small increments as we need it, this complication is no longer necessary. This has one curious side benefit: currently, on Linux, allocations that are large enough to be rejected by mmap wind up freezing the application for a long time before it panics. This happens because sysReserve doesn't reserve the memory, so sysMap calls mmap_fixed, which calls mmap, which fails because the mapping is too large. However, mmap_fixed doesn't inspect *why* mmap fails, so it falls back to probing every page in the desired region individually with mincore before performing an (otherwise dangerous) MAP_FIXED mapping, which will also fail. This takes a long time for a large region. Now this logic is gone, so the mmap failure leads to an immediate panic. Updates #10460. Change-Id: I8efe88c611871cdb14f99fadd09db83e0161ca2e Reviewed-on: https://go-review.googlesource.com/85888 Run-TryBot: Austin Clements <austin@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Rick Hudson <rlh@golang.org>
Diffstat (limited to 'src/runtime/os_linux.go')
-rw-r--r--src/runtime/os_linux.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/runtime/os_linux.go b/src/runtime/os_linux.go
index 7231cf1226..69850a9ccb 100644
--- a/src/runtime/os_linux.go
+++ b/src/runtime/os_linux.go
@@ -194,6 +194,8 @@ const (
var procAuxv = []byte("/proc/self/auxv\x00")
+var addrspace_vec [1]byte
+
func mincore(addr unsafe.Pointer, n uintptr, dst *byte) int32
func sysargs(argc int32, argv **byte) {