X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fjournal%2Fmmap-cache.c;h=117dc2f3a5b81c27cf5b8838de001e3cceda3340;hb=bf807d4dbf27c783db8dfd7f4eca321ae4be5b00;hp=6c9194a1a5faa9ca24161f1a8d34d747e176f1e7;hpb=b8e891e699e1336c5527f8203e4e8f67c9bbeb84;p=elogind.git diff --git a/src/journal/mmap-cache.c b/src/journal/mmap-cache.c index 6c9194a1a..117dc2f3a 100644 --- a/src/journal/mmap-cache.c +++ b/src/journal/mmap-cache.c @@ -72,6 +72,9 @@ struct MMapCache { int n_ref; unsigned n_windows; + unsigned n_hit, n_missed; + + Hashmap *fds; Hashmap *contexts; @@ -542,13 +545,19 @@ int mmap_cache_get( /* Check whether the current context is the right one already */ r = try_context(m, fd, prot, context, keep_always, offset, size, ret); - if (r != 0) + if (r != 0) { + m->n_hit ++; return r; + } /* Search for a matching mmap */ r = find_mmap(m, fd, prot, context, keep_always, offset, size, ret); - if (r != 0) + if (r != 0) { + m->n_hit ++; return r; + } + + m->n_missed++; /* Create a new mmap */ return add_mmap(m, fd, prot, context, keep_always, offset, size, st, ret); @@ -578,3 +587,15 @@ void mmap_cache_close_context(MMapCache *m, unsigned context) { context_free(c); } + +unsigned mmap_cache_get_hit(MMapCache *m) { + assert(m); + + return m->n_hit; +} + +unsigned mmap_cache_get_missed(MMapCache *m) { + assert(m); + + return m->n_missed; +}