This also brings in these PRs from swarmkit: - https://github.com/docker/swarmkit/pull/2691 - https://github.com/docker/swarmkit/pull/2744 - https://github.com/docker/swarmkit/pull/2732 - https://github.com/docker/swarmkit/pull/2729 - https://github.com/docker/swarmkit/pull/2748 Signed-off-by: Tibor Vass <tibor@docker.com> Upstream-commit: cce1763d57b5c8fc446b0863517bb5313e7e53be Component: engine
23 lines
594 B
Go
23 lines
594 B
Go
package fs
|
|
|
|
import "context"
|
|
|
|
// Usage of disk information
|
|
type Usage struct {
|
|
Inodes int64
|
|
Size int64
|
|
}
|
|
|
|
// DiskUsage counts the number of inodes and disk usage for the resources under
|
|
// path.
|
|
func DiskUsage(ctx context.Context, roots ...string) (Usage, error) {
|
|
return diskUsage(ctx, roots...)
|
|
}
|
|
|
|
// DiffUsage counts the numbers of inodes and disk usage in the
|
|
// diff between the 2 directories. The first path is intended
|
|
// as the base directory and the second as the changed directory.
|
|
func DiffUsage(ctx context.Context, a, b string) (Usage, error) {
|
|
return diffUsage(ctx, a, b)
|
|
}
|