Răsfoiți Sursa

Merge pull request #21028 from karalabe/memfix-32bit-arch

cmd/geth: handle memfixes on 32bit arch with large RAM
Péter Szilágyi 5 ani în urmă
părinte
comite
292570ad6c
1 a modificat fișierele cu 4 adăugiri și 0 ștergeri
  1. 4 0
      cmd/geth/main.go

+ 4 - 0
cmd/geth/main.go

@@ -314,6 +314,10 @@ func prepare(ctx *cli.Context) {
 	// Check https://github.com/elastic/gosigar#supported-platforms
 	if runtime.GOOS != "openbsd" {
 		if err := mem.Get(); err == nil {
+			if 32<<(^uintptr(0)>>63) == 32 && mem.Total > 2*1024*1024*1024 {
+				log.Warn("Lowering memory allowance on 32bit arch", "available", mem.Total/1024/1024, "addressable", 2*1024)
+				mem.Total = 2 * 1024 * 1024 * 1024
+			}
 			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)