Runtime: remove unused field kernelVersion

This commit is contained in:
Solomon Hykes 2013-10-23 00:44:57 -06:00
parent b0515a7016
commit 7e4d008403
1 changed files with 0 additions and 2 deletions

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())
}