summaryrefslogtreecommitdiffstats
path: root/xlators/performance/stat-prefetch/src
diff options
context:
space:
mode:
authorRaghavendra Bhat <raghavendrabhat@gluster.com>2010-09-02 05:04:32 +0000
committerVijay Bellur <vijay@dev.gluster.com>2010-09-02 05:56:54 -0700
commita2b9b121d2670014fce07e0e3bdc311c587c0f2f (patch)
treeb188e5d8e63f919595a0db239523256196640e30 /xlators/performance/stat-prefetch/src
parent4d14dffa00b134c1092133c90e92689f0ef82374 (diff)
dump total entries cached in stat-prefetch to state-dump file
Signed-off-by: Raghavendra Bhat <raghavendrabhat@gluster.com> Signed-off-by: Vijay Bellur <vijay@dev.gluster.com> BUG: 1059 (enhancements for getting statistics from performance translators) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1059
Diffstat (limited to 'xlators/performance/stat-prefetch/src')
-rw-r--r--xlators/performance/stat-prefetch/src/stat-prefetch.c79
-rw-r--r--xlators/performance/stat-prefetch/src/stat-prefetch.h1
2 files changed, 79 insertions, 1 deletions
diff --git a/xlators/performance/stat-prefetch/src/stat-prefetch.c b/xlators/performance/stat-prefetch/src/stat-prefetch.c
index 2a35aca43f1..0fad5285c24 100644
--- a/xlators/performance/stat-prefetch/src/stat-prefetch.c
+++ b/xlators/performance/stat-prefetch/src/stat-prefetch.c
@@ -18,6 +18,7 @@
*/
#include "stat-prefetch.h"
+#include "statedump.h"
#define GF_SP_CACHE_BUCKETS 1
#define GF_SP_CACHE_ENTRIES_EXPECTED 1048576
@@ -410,12 +411,26 @@ sp_cache_remove_entry (sp_cache_t *cache, char *name, char remove_all)
} else {
rbthash_table_destroy (table);
ret = 0;
+ if (priv) {
+ LOCK (&priv->lock);
+ {
+ priv->entries = 0;
+ }
+ UNLOCK (&priv->lock);
+ }
}
} else {
data = rbthash_remove (cache->table, name,
strlen (name));
GF_FREE (data);
ret = 0;
+ if (priv) {
+ LOCK (&priv->lock);
+ {
+ priv->entries--;
+ }
+ UNLOCK (&priv->lock);
+ }
}
}
UNLOCK (&cache->lock);
@@ -758,7 +773,13 @@ sp_cache_add_entries (sp_cache_t *cache, gf_dirent_t *entries)
gf_dirent_t *entry = NULL, *new = NULL;
int32_t ret = -1;
uint64_t expected_offset = 0;
-
+ xlator_t *this = NULL;
+ sp_private_t *priv = NULL;
+
+ this = cache->this;
+ if (this)
+ priv = this->private;
+
LOCK (&cache->lock);
{
list_for_each_entry (entry, &entries->list, list) {
@@ -785,6 +806,13 @@ sp_cache_add_entries (sp_cache_t *cache, gf_dirent_t *entries)
}
expected_offset = new->d_off;
+ if (priv) {
+ LOCK (&priv->lock);
+ {
+ priv->entries++;
+ }
+ UNLOCK (&priv->lock);
+ }
}
cache->expected_offset = expected_offset;
@@ -3557,6 +3585,37 @@ sp_release (xlator_t *this, fd_t *fd)
return 0;
}
+int
+sp_priv_dump (xlator_t *this)
+{
+ sp_private_t *priv = NULL;
+ uint32_t total_entries = 0;
+ uint32_t ret = -1;
+ char key[GF_DUMP_MAX_BUF_LEN];
+ char key_prefix[GF_DUMP_MAX_BUF_LEN];
+
+
+ priv = this->private;
+ if (!priv)
+ goto out;
+
+ total_entries = priv->entries;
+
+ gf_proc_dump_build_key (key_prefix,
+ "xlator.performance.stat-prefetch",
+ "priv");
+ gf_proc_dump_add_section (key_prefix);
+
+ gf_proc_dump_build_key (key, key_prefix, "max_allowed_entries");
+ gf_proc_dump_write (key, "%lu", GF_SP_CACHE_ENTRIES_EXPECTED);
+ gf_proc_dump_build_key (key, key_prefix, "num_entries_cached");
+ gf_proc_dump_write (key, "%lu",(unsigned long)total_entries);
+ ret = 0;
+
+out:
+ return ret;
+}
+
int32_t
mem_acct_init (xlator_t *this)
{
@@ -3604,6 +3663,20 @@ out:
void
fini (xlator_t *this)
{
+ sp_private_t *priv = NULL;
+
+ if (!this)
+ goto out;
+ else {
+ priv = this->private;
+ if (priv) {
+ if (priv->mem_pool)
+ mem_pool_destroy (priv->mem_pool);
+ LOCK_DESTROY (&priv->lock);
+ GF_FREE (priv);
+ }
+ }
+out:
return;
}
@@ -3645,3 +3718,7 @@ struct xlator_cbks cbks = {
.release = sp_release,
.releasedir = sp_release
};
+
+struct xlator_dumpops dumpops = {
+ .priv = sp_priv_dump,
+};
diff --git a/xlators/performance/stat-prefetch/src/stat-prefetch.h b/xlators/performance/stat-prefetch/src/stat-prefetch.h
index 16edf76aa71..f072b19dc01 100644
--- a/xlators/performance/stat-prefetch/src/stat-prefetch.h
+++ b/xlators/performance/stat-prefetch/src/stat-prefetch.h
@@ -82,6 +82,7 @@ typedef struct sp_inode_ctx sp_inode_ctx_t;
struct sp_private {
struct mem_pool *mem_pool;
+ uint32_t entries;
gf_lock_t lock;
};
typedef struct sp_private sp_private_t;