chiark / gitweb /
journald: invoking fstatvfs() is now redundant in the vacuuming code
[elogind.git] / src / journal / journal-vacuum.c
index 086b40f9438b092f7c9892ee7853c2631c04200f..891b6bb848939525c7754481fa7d14afec0b9a35 100644 (file)
@@ -292,13 +292,6 @@ int journal_directory_vacuum(
         qsort_safe(list, n_list, sizeof(struct vacuum_info), vacuum_compare);
 
         for (i = 0; i < n_list; i++) {
-                struct statvfs ss;
-
-                if (fstatvfs(dirfd(d), &ss) < 0) {
-                        r = -errno;
-                        goto finish;
-                }
-
                 if ((max_retention_usec <= 0 || list[i].realtime >= retention_limit) &&
                     (max_use <= 0 || sum <= max_use))
                         break;