Searched defs:available (Results 1 - 3 of 3) sorted by relevance
/systemd/src/journal/ |
H A D | journald-rate-limit.c | 181 static unsigned burst_modulate(unsigned burst, uint64_t available) { argument 184 /* Modulates the burst rate a bit with the amount of available 187 k = u64log2(available); 209 int journal_rate_limit_test(JournalRateLimit *r, const char *id, int priority, uint64_t available) { argument 225 burst = burst_modulate(r->burst, available);
|
H A D | journald-server.c | 95 uint64_t *available, 114 if (available) 115 *available = s->cached_space_available; 195 if (available) 196 *available = s->cached_space_available; 203 static int determine_space(Server *s, bool verbose, bool patch_min_use, uint64_t *available, uint64_t *limit) { argument 219 return determine_space_for(s, metrics, path, name, verbose, patch_min_use, available, limit); 922 uint64_t available = 0; local 962 (void) determine_space(s, false, false, &available, NULL); 963 rl = journal_rate_limit_test(s->rate_limit, path, priority & LOG_PRIMASK, available); 88 determine_space_for( Server *s, JournalMetrics *metrics, const char *path, const char *name, bool verbose, bool patch_min_use, uint64_t *available, uint64_t *limit) argument [all...] |
H A D | journal-file.c | 424 uint64_t available; local 426 available = LESS_BY((uint64_t) svfs.f_bfree * (uint64_t) svfs.f_bsize, f->metrics.keep_free); 428 if (new_size - old_size > available)
|
Completed in 24 milliseconds