Searched defs:keep_free (Results 1 - 2 of 2) sorted by relevance

/systemd/src/coredump/
H A Dcoredump-vacuum.c87 static bool vacuum_necessary(int fd, uint64_t sum, uint64_t keep_free, uint64_t max_use) { argument
116 if (keep_free == (uint64_t) -1) {
119 keep_free = PAGE_ALIGN((fs_size * 3) / 20); /* 15% */
121 if (keep_free > DEFAULT_KEEP_FREE_UPPER)
122 keep_free = DEFAULT_KEEP_FREE_UPPER;
124 keep_free = DEFAULT_KEEP_FREE;
126 keep_free = PAGE_ALIGN(keep_free);
128 if (keep_free > 0 && fs_free < keep_free)
134 coredump_vacuum(int exclude_fd, uint64_t keep_free, uint64_t max_use) argument
[all...]
/systemd/src/journal/
H A Djournal-file.h41 uint64_t max_use; /* how much disk space to use in total at max, keep_free permitting */
42 uint64_t min_use; /* how much disk space to use in total at least, even if keep_free says not to */
43 uint64_t keep_free; /* how much to keep free on disk */ member in struct:JournalMetrics

Completed in 9 milliseconds