aboutsummaryrefslogtreecommitdiff
path: root/src/libstore
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstore')
-rw-r--r--src/libstore/build.cc11
-rw-r--r--src/libstore/gc.cc5
-rw-r--r--src/libstore/local-store.hh3
-rw-r--r--src/libstore/remote-store.cc2
-rw-r--r--src/libstore/store-api.hh4
5 files changed, 9 insertions, 16 deletions
diff --git a/src/libstore/build.cc b/src/libstore/build.cc
index 290635695..91f235b7a 100644
--- a/src/libstore/build.cc
+++ b/src/libstore/build.cc
@@ -606,18 +606,17 @@ void getOwnership(const Path & path)
}
-void deletePathWrapped(const Path & path,
- unsigned long long & bytesFreed, unsigned long long & blocksFreed)
+void deletePathWrapped(const Path & path, unsigned long long & bytesFreed)
{
try {
/* First try to delete it ourselves. */
- deletePath(path, bytesFreed, blocksFreed);
+ deletePath(path, bytesFreed);
} catch (SysError & e) {
/* If this failed due to a permission error, then try it with
the setuid helper. */
if (haveBuildUsers() && !amPrivileged()) {
getOwnership(path);
- deletePath(path, bytesFreed, blocksFreed);
+ deletePath(path, bytesFreed);
} else
throw;
}
@@ -626,8 +625,8 @@ void deletePathWrapped(const Path & path,
void deletePathWrapped(const Path & path)
{
- unsigned long long dummy1, dummy2;
- deletePathWrapped(path, dummy1, dummy2);
+ unsigned long long dummy1;
+ deletePathWrapped(path, dummy1);
}
diff --git a/src/libstore/gc.cc b/src/libstore/gc.cc
index 7753b3fe2..a1bb4051c 100644
--- a/src/libstore/gc.cc
+++ b/src/libstore/gc.cc
@@ -425,10 +425,9 @@ bool LocalStore::isActiveTempFile(const GCState & state,
void LocalStore::deleteGarbage(GCState & state, const Path & path)
{
printMsg(lvlInfo, format("deleting `%1%'") % path);
- unsigned long long bytesFreed, blocksFreed;
- deletePathWrapped(path, bytesFreed, blocksFreed);
+ unsigned long long bytesFreed;
+ deletePathWrapped(path, bytesFreed);
state.results.bytesFreed += bytesFreed;
- state.results.blocksFreed += blocksFreed;
}
diff --git a/src/libstore/local-store.hh b/src/libstore/local-store.hh
index 50910f353..721cc6afb 100644
--- a/src/libstore/local-store.hh
+++ b/src/libstore/local-store.hh
@@ -304,8 +304,7 @@ void getOwnership(const Path & path);
/* Like deletePath(), but changes the ownership of `path' using the
setuid wrapper if necessary (and possible). */
-void deletePathWrapped(const Path & path,
- unsigned long long & bytesFreed, unsigned long long & blocksFreed);
+void deletePathWrapped(const Path & path, unsigned long long & bytesFreed);
void deletePathWrapped(const Path & path);
diff --git a/src/libstore/remote-store.cc b/src/libstore/remote-store.cc
index cbb70b2fd..5e7f02749 100644
--- a/src/libstore/remote-store.cc
+++ b/src/libstore/remote-store.cc
@@ -494,7 +494,7 @@ void RemoteStore::collectGarbage(const GCOptions & options, GCResults & results)
results.paths = readStrings<PathSet>(from);
results.bytesFreed = readLongLong(from);
- results.blocksFreed = readLongLong(from);
+ readLongLong(from); // obsolete
}
diff --git a/src/libstore/store-api.hh b/src/libstore/store-api.hh
index c0fb50f23..79ae0170d 100644
--- a/src/libstore/store-api.hh
+++ b/src/libstore/store-api.hh
@@ -65,13 +65,9 @@ struct GCResults
number of bytes that would be or was freed. */
unsigned long long bytesFreed;
- /* The number of file system blocks that would be or was freed. */
- unsigned long long blocksFreed;
-
GCResults()
{
bytesFreed = 0;
- blocksFreed = 0;
}
};