1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #2349 from shykes/runtime-cleanup

Runtime: remove unused field kernelVersion
This commit is contained in:
Victor Vieux 2013-10-23 09:54:00 -07:00
commit 894a68d2ee

View file

@ -32,7 +32,6 @@ type Runtime struct {
repositories *TagStore
idIndex *utils.TruncIndex
capabilities *Capabilities
kernelVersion *utils.KernelVersionInfo
autoRestart bool
volumes *Graph
srv *Server
@ -440,7 +439,6 @@ func NewRuntime(flGraphPath string, autoRestart bool, dns []string) (*Runtime, e
if k, err := utils.GetKernelVersion(); err != nil {
log.Printf("WARNING: %s\n", err)
} else {
runtime.kernelVersion = k
if utils.CompareKernelVersion(k, &utils.KernelVersionInfo{Kernel: 3, Major: 8, Minor: 0}) < 0 {
log.Printf("WARNING: You are running linux kernel version %s, which might be unstable running docker. Please upgrade your kernel to 3.8.0.", k.String())
}