mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
a0a473125b
After moving libnetwork to this repo, we need to update all the import paths for libnetwork to point to docker/docker/libnetwork instead of docker/libnetwork. This change implements that. Signed-off-by: Brian Goff <cpuguy83@gmail.com>
23 lines
591 B
Go
23 lines
591 B
Go
package overlay
|
|
|
|
import (
|
|
"strconv"
|
|
|
|
"github.com/docker/docker/libnetwork/osl/kernel"
|
|
)
|
|
|
|
var ovConfig = map[string]*kernel.OSValue{
|
|
"net.ipv4.neigh.default.gc_thresh1": {Value: "8192", CheckFn: checkHigher},
|
|
"net.ipv4.neigh.default.gc_thresh2": {Value: "49152", CheckFn: checkHigher},
|
|
"net.ipv4.neigh.default.gc_thresh3": {Value: "65536", CheckFn: checkHigher},
|
|
}
|
|
|
|
func checkHigher(val1, val2 string) bool {
|
|
val1Int, _ := strconv.ParseInt(val1, 10, 32)
|
|
val2Int, _ := strconv.ParseInt(val2, 10, 32)
|
|
return val1Int < val2Int
|
|
}
|
|
|
|
func applyOStweaks() {
|
|
kernel.ApplyOSTweaks(ovConfig)
|
|
}
|