mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Move getKernelVersion to utils package
This commit is contained in:
parent
10e19e4b97
commit
f3bab52df4
5 changed files with 88 additions and 9 deletions
|
@ -251,7 +251,7 @@ func NewRuntime(autoRestart bool) (*Runtime, error) {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
if k, err := GetKernelVersion(); err != nil {
|
if k, err := utils.GetKernelVersion(); err != nil {
|
||||||
log.Printf("WARNING: %s\n", err)
|
log.Printf("WARNING: %s\n", err)
|
||||||
} else {
|
} else {
|
||||||
runtime.kernelVersion = k
|
runtime.kernelVersion = k
|
||||||
|
|
8
utils.go
8
utils.go
|
@ -1,9 +1,5 @@
|
||||||
package docker
|
package docker
|
||||||
|
|
||||||
import (
|
|
||||||
"github.com/dotcloud/docker/utils"
|
|
||||||
)
|
|
||||||
|
|
||||||
// Compare two Config struct. Do not compare the "Image" nor "Hostname" fields
|
// Compare two Config struct. Do not compare the "Image" nor "Hostname" fields
|
||||||
// If OpenStdin is set, then it differs
|
// If OpenStdin is set, then it differs
|
||||||
func CompareConfig(a, b *Config) bool {
|
func CompareConfig(a, b *Config) bool {
|
||||||
|
@ -51,7 +47,3 @@ func CompareConfig(a, b *Config) bool {
|
||||||
|
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
func GetKernelVersion() (*utils.KernelVersionInfo, error) {
|
|
||||||
return getKernelVersion()
|
|
||||||
}
|
|
||||||
|
|
10
utils/uname_darwin.go
Normal file
10
utils/uname_darwin.go
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
package utils
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
"syscall"
|
||||||
|
)
|
||||||
|
|
||||||
|
func uname() (*syscall.Utsname, error) {
|
||||||
|
return nil, errors.New("Kernel version detection is not available on darwin")
|
||||||
|
}
|
15
utils/uname_linux.go
Normal file
15
utils/uname_linux.go
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
package utils
|
||||||
|
|
||||||
|
import (
|
||||||
|
"syscall"
|
||||||
|
)
|
||||||
|
|
||||||
|
// FIXME: Move this to utils package
|
||||||
|
func uname() (*syscall.Utsname, error) {
|
||||||
|
uts := &syscall.Utsname{}
|
||||||
|
|
||||||
|
if err := syscall.Uname(uts); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return uts, nil
|
||||||
|
}
|
|
@ -14,6 +14,7 @@ import (
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"runtime"
|
"runtime"
|
||||||
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
@ -468,3 +469,64 @@ func FindCgroupMountpoint(cgroupType string) (string, error) {
|
||||||
|
|
||||||
return "", fmt.Errorf("cgroup mountpoint not found for %s", cgroupType)
|
return "", fmt.Errorf("cgroup mountpoint not found for %s", cgroupType)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func GetKernelVersion() (*KernelVersionInfo, error) {
|
||||||
|
var (
|
||||||
|
flavor string
|
||||||
|
kernel, major, minor int
|
||||||
|
err error
|
||||||
|
)
|
||||||
|
|
||||||
|
uts, err := uname()
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
release := make([]byte, len(uts.Release))
|
||||||
|
|
||||||
|
i := 0
|
||||||
|
for _, c := range uts.Release {
|
||||||
|
release[i] = byte(c)
|
||||||
|
i++
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove the \x00 from the release for Atoi to parse correctly
|
||||||
|
release = release[:bytes.IndexByte(release, 0)]
|
||||||
|
|
||||||
|
tmp := strings.SplitN(string(release), "-", 2)
|
||||||
|
tmp2 := strings.SplitN(tmp[0], ".", 3)
|
||||||
|
|
||||||
|
if len(tmp2) > 0 {
|
||||||
|
kernel, err = strconv.Atoi(tmp2[0])
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(tmp2) > 1 {
|
||||||
|
major, err = strconv.Atoi(tmp2[1])
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(tmp2) > 2 {
|
||||||
|
minor, err = strconv.Atoi(tmp2[2])
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(tmp) == 2 {
|
||||||
|
flavor = tmp[1]
|
||||||
|
} else {
|
||||||
|
flavor = ""
|
||||||
|
}
|
||||||
|
|
||||||
|
return &KernelVersionInfo{
|
||||||
|
Kernel: kernel,
|
||||||
|
Major: major,
|
||||||
|
Minor: minor,
|
||||||
|
Flavor: flavor,
|
||||||
|
}, nil
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue