Commit 19350e76 authored by Boaz Harrosh's avatar Boaz Harrosh

exofs: Print less in r4w

In debug mode exofs is too verbose. Hiding the real problems
remove some trivial stuff.

Also fix some other prints.
Signed-off-by: default avatarBoaz Harrosh <bharrosh@panasas.com>
parent c8592fcc
...@@ -577,7 +577,7 @@ static struct page *__r4w_get_page(void *priv, u64 offset, bool *uptodate) ...@@ -577,7 +577,7 @@ static struct page *__r4w_get_page(void *priv, u64 offset, bool *uptodate)
if (offset >= i_size) { if (offset >= i_size) {
*uptodate = true; *uptodate = true;
EXOFS_DBGMSG("offset >= i_size index=0x%lx\n", index); EXOFS_DBGMSG2("offset >= i_size index=0x%lx\n", index);
return ZERO_PAGE(0); return ZERO_PAGE(0);
} }
...@@ -596,10 +596,10 @@ static struct page *__r4w_get_page(void *priv, u64 offset, bool *uptodate) ...@@ -596,10 +596,10 @@ static struct page *__r4w_get_page(void *priv, u64 offset, bool *uptodate)
*uptodate = true; *uptodate = true;
else else
*uptodate = PageUptodate(page); *uptodate = PageUptodate(page);
EXOFS_DBGMSG("index=0x%lx uptodate=%d\n", index, *uptodate); EXOFS_DBGMSG2("index=0x%lx uptodate=%d\n", index, *uptodate);
return page; return page;
} else { } else {
EXOFS_DBGMSG("YES that_locked_page index=0x%lx\n", EXOFS_DBGMSG2("YES that_locked_page index=0x%lx\n",
pcol->that_locked_page->index); pcol->that_locked_page->index);
*uptodate = true; *uptodate = true;
return pcol->that_locked_page; return pcol->that_locked_page;
...@@ -611,11 +611,11 @@ static void __r4w_put_page(void *priv, struct page *page) ...@@ -611,11 +611,11 @@ static void __r4w_put_page(void *priv, struct page *page)
struct page_collect *pcol = priv; struct page_collect *pcol = priv;
if ((pcol->that_locked_page != page) && (ZERO_PAGE(0) != page)) { if ((pcol->that_locked_page != page) && (ZERO_PAGE(0) != page)) {
EXOFS_DBGMSG("index=0x%lx\n", page->index); EXOFS_DBGMSG2("index=0x%lx\n", page->index);
page_cache_release(page); page_cache_release(page);
return; return;
} }
EXOFS_DBGMSG("that_locked_page index=0x%lx\n", EXOFS_DBGMSG2("that_locked_page index=0x%lx\n",
ZERO_PAGE(0) == page ? -1 : page->index); ZERO_PAGE(0) == page ? -1 : page->index);
} }
...@@ -1018,7 +1018,7 @@ static int _do_truncate(struct inode *inode, loff_t newsize) ...@@ -1018,7 +1018,7 @@ static int _do_truncate(struct inode *inode, loff_t newsize)
if (likely(!ret)) if (likely(!ret))
truncate_setsize(inode, newsize); truncate_setsize(inode, newsize);
EXOFS_DBGMSG("(0x%lx) size=0x%llx ret=>%d\n", EXOFS_DBGMSG2("(0x%lx) size=0x%llx ret=>%d\n",
inode->i_ino, newsize, ret); inode->i_ino, newsize, ret);
return ret; return ret;
} }
...@@ -1108,7 +1108,7 @@ static int exofs_get_inode(struct super_block *sb, struct exofs_i_info *oi, ...@@ -1108,7 +1108,7 @@ static int exofs_get_inode(struct super_block *sb, struct exofs_i_info *oi,
ret = extract_attr_from_ios(ios, &attrs[0]); ret = extract_attr_from_ios(ios, &attrs[0]);
if (ret) { if (ret) {
EXOFS_ERR("%s: extract_attr of inode_data failed\n", __func__); EXOFS_ERR("%s: extract_attr 0 of inode failed\n", __func__);
goto out; goto out;
} }
WARN_ON(attrs[0].len != EXOFS_INO_ATTR_SIZE); WARN_ON(attrs[0].len != EXOFS_INO_ATTR_SIZE);
...@@ -1116,7 +1116,7 @@ static int exofs_get_inode(struct super_block *sb, struct exofs_i_info *oi, ...@@ -1116,7 +1116,7 @@ static int exofs_get_inode(struct super_block *sb, struct exofs_i_info *oi,
ret = extract_attr_from_ios(ios, &attrs[1]); ret = extract_attr_from_ios(ios, &attrs[1]);
if (ret) { if (ret) {
EXOFS_ERR("%s: extract_attr of inode_data failed\n", __func__); EXOFS_ERR("%s: extract_attr 1 of inode failed\n", __func__);
goto out; goto out;
} }
if (attrs[1].len) { if (attrs[1].len) {
...@@ -1131,7 +1131,7 @@ static int exofs_get_inode(struct super_block *sb, struct exofs_i_info *oi, ...@@ -1131,7 +1131,7 @@ static int exofs_get_inode(struct super_block *sb, struct exofs_i_info *oi,
ret = extract_attr_from_ios(ios, &attrs[2]); ret = extract_attr_from_ios(ios, &attrs[2]);
if (ret) { if (ret) {
EXOFS_ERR("%s: extract_attr of inode_data failed\n", __func__); EXOFS_ERR("%s: extract_attr 2 of inode failed\n", __func__);
goto out; goto out;
} }
if (attrs[2].len) { if (attrs[2].len) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment