Track memory usage statistics for cached data.
[bluesky.git] / bluesky / debug.c
1 /* Blue Sky: File Systems in the Cloud
2  *
3  * Copyright (C) 2009  The Regents of the University of California
4  * Written by Michael Vrable <mvrable@cs.ucsd.edu>
5  *
6  * TODO: Licensing
7  */
8
9 #include <stdint.h>
10 #include <stdlib.h>
11 #include <inttypes.h>
12 #include <glib.h>
13 #include <string.h>
14
15 #include "bluesky-private.h"
16
17 /* Debugging support for BlueSky. */
18
19 static void inode_dump(gpointer key, gpointer value, gpointer user_data)
20 {
21     BlueSkyInode *inode = (BlueSkyInode *)value;
22
23     g_print("Inode %"PRIu64":\n", inode->inum);
24
25     gboolean locked = TRUE;
26     if (g_mutex_trylock(inode->lock)) {
27         locked = FALSE;
28         g_mutex_unlock(inode->lock);
29     }
30     g_print("    Locked: %c   Refcount: %d\n",
31             locked ? 'T' : 'F', inode->refcount);
32
33     g_print("    Type: %d   Mode: %o\n", inode->type, inode->mode);
34     g_print("    change_count = %"PRIu64", change_commit = %"PRIu64"\n",
35             inode->change_count, inode->change_commit);
36 }
37
38 /* Dump a summary of filesystem state as it is cached in memory. */
39 void bluesky_debug_dump(BlueSkyFS *fs)
40 {
41     g_print("*** DEBUG DUMP FOR FILESYSTEM %s ***\n", fs->name);
42     g_print("Cached blocks: %d\tDirty blocks: %d\n",
43             g_atomic_int_get(&fs->cache_total),
44             g_atomic_int_get(&fs->cache_dirty));
45     g_print("Cached inodes: %u\tNext inode: %"PRIu64"\n",
46             g_hash_table_size(fs->inodes), fs->next_inum);
47
48     g_hash_table_foreach(fs->inodes, inode_dump, fs);
49 }