diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-01-19 17:01:15 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-01-19 20:24:09 +0100 |
commit | c19de71113f956809995fc68817e055e9f61f607 (patch) | |
tree | bf2df35651e663d96e5677a719cb38bd5e0c9d4a /src/shared/machine-image.h | |
parent | 1c7dd82563ff2e71a067aea20d2acb2d0553644b (diff) |
machined: refer to the disk space allocated for an image to "usage" rather than "size"
After all, it's closer to the "du"-reported value than to the file
sizes...
Diffstat (limited to 'src/shared/machine-image.h')
-rw-r--r-- | src/shared/machine-image.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/machine-image.h b/src/shared/machine-image.h index c15b034321..75fa5f4533 100644 --- a/src/shared/machine-image.h +++ b/src/shared/machine-image.h @@ -41,8 +41,8 @@ typedef struct Image { usec_t crtime; usec_t mtime; - uint64_t size; - uint64_t size_exclusive; + uint64_t usage; + uint64_t usage_exclusive; uint64_t limit; uint64_t limit_exclusive; } Image; |