mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
bd33a99acf
Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
41 lines
1 KiB
Go
41 lines
1 KiB
Go
// +build linux freebsd solaris
|
|
|
|
package daemon
|
|
|
|
import (
|
|
"github.com/Sirupsen/logrus"
|
|
)
|
|
|
|
// getSize returns the real size & virtual size of the container.
|
|
func (daemon *Daemon) getSize(containerID string) (int64, int64) {
|
|
var (
|
|
sizeRw, sizeRootfs int64
|
|
err error
|
|
)
|
|
|
|
rwlayer, err := daemon.layerStore.GetRWLayer(containerID)
|
|
if err != nil {
|
|
logrus.Errorf("Failed to compute size of container rootfs %v: %v", containerID, err)
|
|
return sizeRw, sizeRootfs
|
|
}
|
|
defer daemon.layerStore.ReleaseRWLayer(rwlayer)
|
|
|
|
sizeRw, err = rwlayer.Size()
|
|
if err != nil {
|
|
logrus.Errorf("Driver %s couldn't return diff size of container %s: %s",
|
|
daemon.GraphDriverName(), containerID, err)
|
|
// FIXME: GetSize should return an error. Not changing it now in case
|
|
// there is a side-effect.
|
|
sizeRw = -1
|
|
}
|
|
|
|
if parent := rwlayer.Parent(); parent != nil {
|
|
sizeRootfs, err = parent.Size()
|
|
if err != nil {
|
|
sizeRootfs = -1
|
|
} else if sizeRw != -1 {
|
|
sizeRootfs += sizeRw
|
|
}
|
|
}
|
|
return sizeRw, sizeRootfs
|
|
}
|