cmd/geth: wrong memory size sanitizing on OpenBSD (#19793)

This commit is contained in:
Guillaume Ballet 2019-07-05 12:13:21 +02:00 committed by Péter Szilágyi
parent d9c75cd10e
commit dcc4adfcd7
2 changed files with 11 additions and 6 deletions

@ -21,6 +21,7 @@ import (
"fmt" "fmt"
"math" "math"
"os" "os"
"runtime"
godebug "runtime/debug" godebug "runtime/debug"
"sort" "sort"
"strconv" "strconv"
@ -256,11 +257,15 @@ func init() {
} }
// Cap the cache allowance and tune the garbage collector // Cap the cache allowance and tune the garbage collector
var mem gosigar.Mem var mem gosigar.Mem
if err := mem.Get(); err == nil { // Workaround until OpenBSD support lands into gosigar
allowance := int(mem.Total / 1024 / 1024 / 3) // Check https://github.com/elastic/gosigar#supported-platforms
if cache := ctx.GlobalInt(utils.CacheFlag.Name); cache > allowance { if runtime.GOOS != "openbsd" {
log.Warn("Sanitizing cache to Go's GC limits", "provided", cache, "updated", allowance) if err := mem.Get(); err == nil {
ctx.GlobalSet(utils.CacheFlag.Name, strconv.Itoa(allowance)) allowance := int(mem.Total / 1024 / 1024 / 3)
if cache := ctx.GlobalInt(utils.CacheFlag.Name); cache > allowance {
log.Warn("Sanitizing cache to Go's GC limits", "provided", cache, "updated", allowance)
ctx.GlobalSet(utils.CacheFlag.Name, strconv.Itoa(allowance))
}
} }
} }
// Ensure Go's GC ignores the database cache for trigger percentage // Ensure Go's GC ignores the database cache for trigger percentage

@ -70,7 +70,7 @@ func NewSyncBloom(memory uint64, database ethdb.Iteratee) *SyncBloom {
// Create the bloom filter to track known trie nodes // Create the bloom filter to track known trie nodes
bloom, err := bloomfilter.New(memory*1024*1024*8, 3) bloom, err := bloomfilter.New(memory*1024*1024*8, 3)
if err != nil { if err != nil {
panic(fmt.Sprintf("failed to create bloom: %v", err)) // Can't happen, here for sanity panic(fmt.Sprintf("failed to create bloom: %v", err))
} }
log.Info("Allocated fast sync bloom", "size", common.StorageSize(memory*1024*1024)) log.Info("Allocated fast sync bloom", "size", common.StorageSize(memory*1024*1024))