aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2019-08-29 14:49:58 +0200
committerEelco Dolstra <edolstra@gmail.com>2019-08-29 14:49:58 +0200
commita2c4fcd5e9782dc8d2998773380c7171ee53b813 (patch)
tree8ded004bb7d06f44dd28c08c922771238cc85cea /src
parent31f5ecfaa5bce2282f50daed1e4f477c64705fb3 (diff)
Don't rely on st_blocks
It doesn't seem very reliable on ZFS.
Diffstat (limited to 'src')
-rw-r--r--src/libstore/gc.cc7
-rw-r--r--src/libutil/util.cc2
2 files changed, 4 insertions, 5 deletions
diff --git a/src/libstore/gc.cc b/src/libstore/gc.cc
index f73601679..a166f4ee2 100644
--- a/src/libstore/gc.cc
+++ b/src/libstore/gc.cc
@@ -690,9 +690,8 @@ void LocalStore::removeUnusedLinks(const GCState & state)
throw SysError(format("statting '%1%'") % path);
if (st.st_nlink != 1) {
- unsigned long long size = st.st_blocks * 512ULL;
- actualSize += size;
- unsharedSize += (st.st_nlink - 1) * size;
+ actualSize += st.st_size;
+ unsharedSize += (st.st_nlink - 1) * st.st_size;
continue;
}
@@ -701,7 +700,7 @@ void LocalStore::removeUnusedLinks(const GCState & state)
if (unlink(path.c_str()) == -1)
throw SysError(format("deleting '%1%'") % path);
- state.results.bytesFreed += st.st_blocks * 512ULL;
+ state.results.bytesFreed += st.st_size;
}
struct stat st;
diff --git a/src/libutil/util.cc b/src/libutil/util.cc
index 44fa72482..1b7449991 100644
--- a/src/libutil/util.cc
+++ b/src/libutil/util.cc
@@ -397,7 +397,7 @@ static void _deletePath(const Path & path, unsigned long long & bytesFreed)
}
if (!S_ISDIR(st.st_mode) && st.st_nlink == 1)
- bytesFreed += st.st_blocks * 512;
+ bytesFreed += st.st_size;
if (S_ISDIR(st.st_mode)) {
/* Make the directory accessible. */