From ba365f725a91bcd3dcfae1d8311f9f148ce69055 Mon Sep 17 00:00:00 2001 From: Amar Tumballi Date: Tue, 12 Apr 2011 10:30:24 +0000 Subject: remove excessive logs due to log enhancement Signed-off-by: Amar Tumballi Signed-off-by: Anand Avati BUG: 2346 (Log message enhancements in GlusterFS - phase 1) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2346 --- xlators/performance/io-cache/src/page.c | 3 ++- xlators/performance/stat-prefetch/src/stat-prefetch.c | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'xlators/performance') diff --git a/xlators/performance/io-cache/src/page.c b/xlators/performance/io-cache/src/page.c index b50b245ac0b..0721f5f04a3 100644 --- a/xlators/performance/io-cache/src/page.c +++ b/xlators/performance/io-cache/src/page.c @@ -85,7 +85,8 @@ ioc_page_destroy (ioc_page_t *page) GF_VALIDATE_OR_GOTO ("io-cache", page, out); - page_size = iobref_size (page->iobref); + if (page->iobref) + page_size = iobref_size (page->iobref); if (page->waitq) { /* frames waiting on this page, do not destroy this page */ diff --git a/xlators/performance/stat-prefetch/src/stat-prefetch.c b/xlators/performance/stat-prefetch/src/stat-prefetch.c index 7717e3d727c..b99c91bce64 100644 --- a/xlators/performance/stat-prefetch/src/stat-prefetch.c +++ b/xlators/performance/stat-prefetch/src/stat-prefetch.c @@ -894,7 +894,8 @@ sp_lookup_cbk (call_frame_t *frame, void *cookie, xlator_t *this, goto out; } - if (op_ret == -1) { + /* For '/' Entry is never cached, don't try to remove it */ + if ((op_ret == -1) && local->loc.parent) { sp_remove_caches_from_all_fds_opened (this, local->loc.parent, (char *)local->loc.name); } -- cgit