summaryrefslogtreecommitdiff
path: root/libdiskfs
diff options
context:
space:
mode:
Diffstat (limited to 'libdiskfs')
-rw-r--r--libdiskfs/name-cache.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/libdiskfs/name-cache.c b/libdiskfs/name-cache.c
index e5158e08..60f6c3fb 100644
--- a/libdiskfs/name-cache.c
+++ b/libdiskfs/name-cache.c
@@ -46,6 +46,14 @@ struct lookup_cache
/* Cache itself */
static struct lookup_cache *lookup_cache_head, *lookup_cache_tail;
+/* Buffer to hold statistics */
+static struct
+{
+ long pos_hits;
+ long neg_hits;
+ long miss;
+} statistics;
+
/* Node NP has just been found in DIR with NAME. If NP is null, that
means that this name has been confirmed as absent in the directory. */
void
@@ -153,15 +161,18 @@ diskfs_check_cache (struct node *dir, char *name)
if (lc->np)
{
lc->np->references++;
+ statistics.pos_hits++;
spin_unlock (&diskfs_node_refcnt_lock);
return lc->np;
}
else
{
+ statistics.neg_hits++;
spin_unlock (&diskfs_node_refcnt_lock);
return (struct node *) -1;
}
}
+ statistics.miss++;
spin_unlock (&diskfs_node_refcnt_lock);
return 0;
}