Home
last modified time | relevance | path

Searched refs:g_journal_cache_used (Results 1 – 1 of 1) sorted by relevance

/freebsd/sys/geom/journal/
H A Dg_journal.c138 static u_long g_journal_cache_used = 0; variable
150 &g_journal_cache_used, 0, "Number of allocated bytes");
272 g_journal_cache_used + size > g_journal_cache_low) { in gj_malloc()
278 g_journal_cache_used + size > g_journal_cache_limit) { in gj_malloc()
283 g_journal_cache_used += size; in gj_malloc()
307 KASSERT(g_journal_cache_used >= size, ("Freeing too much?")); in gj_free()
308 g_journal_cache_used -= size; in gj_free()
331 g_journal_cache_used -= oldsize; in gj_realloc()
332 g_journal_cache_used += size; in gj_realloc()
3013 "limit=%jd).", (intmax_t)g_journal_cache_used, in g_journal_switcher()