diff options
author | Boaz Harrosh <bharrosh@panasas.com> | 2009-12-15 12:34:17 -0500 |
---|---|---|
committer | Boaz Harrosh <bharrosh@panasas.com> | 2010-02-28 06:35:25 -0500 |
commit | 34ce4e7c23e3da578e459b05c6fb17edecb19e6b (patch) | |
tree | 94713d94514b3d0e89dd05e727eaaae98369b28a /fs/exofs/inode.c | |
parent | abe94c756c08d50566c09a65b9c7fe72f83071c5 (diff) |
exofs: debug print even less
* Last debug trimming left in some stupid print, remove them.
Fixup some other prints
* Shift printing from inode.c to ios.c
* Add couple of prints when memory allocation fails.
Signed-off-by: Boaz Harrosh <bharrosh@panasas.com>
Diffstat (limited to 'fs/exofs/inode.c')
-rw-r--r-- | fs/exofs/inode.c | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/fs/exofs/inode.c b/fs/exofs/inode.c index 2afbcebeda71..c88a0c5250cb 100644 --- a/fs/exofs/inode.c +++ b/fs/exofs/inode.c | |||
@@ -193,7 +193,7 @@ static int __readpages_done(struct page_collect *pcol, bool do_unlock) | |||
193 | else | 193 | else |
194 | good_bytes = pcol->length - resid; | 194 | good_bytes = pcol->length - resid; |
195 | 195 | ||
196 | EXOFS_DBGMSG("readpages_done(0x%lx) good_bytes=0x%llx" | 196 | EXOFS_DBGMSG2("readpages_done(0x%lx) good_bytes=0x%llx" |
197 | " length=0x%lx nr_pages=%u\n", | 197 | " length=0x%lx nr_pages=%u\n", |
198 | pcol->inode->i_ino, _LLU(good_bytes), pcol->length, | 198 | pcol->inode->i_ino, _LLU(good_bytes), pcol->length, |
199 | pcol->nr_pages); | 199 | pcol->nr_pages); |
@@ -222,7 +222,7 @@ static int __readpages_done(struct page_collect *pcol, bool do_unlock) | |||
222 | } | 222 | } |
223 | 223 | ||
224 | pcol_free(pcol); | 224 | pcol_free(pcol); |
225 | EXOFS_DBGMSG("readpages_done END\n"); | 225 | EXOFS_DBGMSG2("readpages_done END\n"); |
226 | return ret; | 226 | return ret; |
227 | } | 227 | } |
228 | 228 | ||
@@ -290,7 +290,7 @@ static int read_exec(struct page_collect *pcol, bool is_sync) | |||
290 | 290 | ||
291 | atomic_inc(&pcol->sbi->s_curr_pending); | 291 | atomic_inc(&pcol->sbi->s_curr_pending); |
292 | 292 | ||
293 | EXOFS_DBGMSG("read_exec obj=0x%llx start=0x%llx length=0x%lx\n", | 293 | EXOFS_DBGMSG2("read_exec obj=0x%llx start=0x%llx length=0x%lx\n", |
294 | ios->obj.id, _LLU(ios->offset), pcol->length); | 294 | ios->obj.id, _LLU(ios->offset), pcol->length); |
295 | 295 | ||
296 | /* pages ownership was passed to pcol_copy */ | 296 | /* pages ownership was passed to pcol_copy */ |
@@ -462,7 +462,7 @@ static void writepages_done(struct exofs_io_state *ios, void *p) | |||
462 | else | 462 | else |
463 | good_bytes = pcol->length - resid; | 463 | good_bytes = pcol->length - resid; |
464 | 464 | ||
465 | EXOFS_DBGMSG("writepages_done(0x%lx) good_bytes=0x%llx" | 465 | EXOFS_DBGMSG2("writepages_done(0x%lx) good_bytes=0x%llx" |
466 | " length=0x%lx nr_pages=%u\n", | 466 | " length=0x%lx nr_pages=%u\n", |
467 | pcol->inode->i_ino, _LLU(good_bytes), pcol->length, | 467 | pcol->inode->i_ino, _LLU(good_bytes), pcol->length, |
468 | pcol->nr_pages); | 468 | pcol->nr_pages); |
@@ -490,7 +490,7 @@ static void writepages_done(struct exofs_io_state *ios, void *p) | |||
490 | 490 | ||
491 | pcol_free(pcol); | 491 | pcol_free(pcol); |
492 | kfree(pcol); | 492 | kfree(pcol); |
493 | EXOFS_DBGMSG("writepages_done END\n"); | 493 | EXOFS_DBGMSG2("writepages_done END\n"); |
494 | } | 494 | } |
495 | 495 | ||
496 | static int write_exec(struct page_collect *pcol) | 496 | static int write_exec(struct page_collect *pcol) |
@@ -527,7 +527,7 @@ static int write_exec(struct page_collect *pcol) | |||
527 | } | 527 | } |
528 | 528 | ||
529 | atomic_inc(&pcol->sbi->s_curr_pending); | 529 | atomic_inc(&pcol->sbi->s_curr_pending); |
530 | EXOFS_DBGMSG("write_exec(0x%lx, 0x%llx) start=0x%llx length=0x%lx\n", | 530 | EXOFS_DBGMSG2("write_exec(0x%lx, 0x%llx) start=0x%llx length=0x%lx\n", |
531 | pcol->inode->i_ino, pcol->pg_first, _LLU(ios->offset), | 531 | pcol->inode->i_ino, pcol->pg_first, _LLU(ios->offset), |
532 | pcol->length); | 532 | pcol->length); |
533 | /* pages ownership was passed to pcol_copy */ | 533 | /* pages ownership was passed to pcol_copy */ |
@@ -616,7 +616,7 @@ try_again: | |||
616 | 616 | ||
617 | ret = pcol_add_page(pcol, page, len); | 617 | ret = pcol_add_page(pcol, page, len); |
618 | if (unlikely(ret)) { | 618 | if (unlikely(ret)) { |
619 | EXOFS_DBGMSG("Failed pcol_add_page " | 619 | EXOFS_DBGMSG2("Failed pcol_add_page " |
620 | "nr_pages=%u total_length=0x%lx\n", | 620 | "nr_pages=%u total_length=0x%lx\n", |
621 | pcol->nr_pages, pcol->length); | 621 | pcol->nr_pages, pcol->length); |
622 | 622 | ||
@@ -663,7 +663,7 @@ static int exofs_writepages(struct address_space *mapping, | |||
663 | if (expected_pages < 32L) | 663 | if (expected_pages < 32L) |
664 | expected_pages = 32L; | 664 | expected_pages = 32L; |
665 | 665 | ||
666 | EXOFS_DBGMSG("inode(0x%lx) wbc->start=0x%llx wbc->end=0x%llx " | 666 | EXOFS_DBGMSG2("inode(0x%lx) wbc->start=0x%llx wbc->end=0x%llx " |
667 | "nrpages=%lu start=0x%lx end=0x%lx expected_pages=%ld\n", | 667 | "nrpages=%lu start=0x%lx end=0x%lx expected_pages=%ld\n", |
668 | mapping->host->i_ino, wbc->range_start, wbc->range_end, | 668 | mapping->host->i_ino, wbc->range_start, wbc->range_end, |
669 | mapping->nrpages, start, end, expected_pages); | 669 | mapping->nrpages, start, end, expected_pages); |
@@ -1170,8 +1170,10 @@ static int exofs_update_inode(struct inode *inode, int do_sync) | |||
1170 | int ret; | 1170 | int ret; |
1171 | 1171 | ||
1172 | args = kzalloc(sizeof(*args), GFP_KERNEL); | 1172 | args = kzalloc(sizeof(*args), GFP_KERNEL); |
1173 | if (!args) | 1173 | if (!args) { |
1174 | EXOFS_DBGMSG("Faild kzalloc of args\n"); | ||
1174 | return -ENOMEM; | 1175 | return -ENOMEM; |
1176 | } | ||
1175 | 1177 | ||
1176 | fcb = &args->fcb; | 1178 | fcb = &args->fcb; |
1177 | 1179 | ||
@@ -1234,7 +1236,8 @@ static int exofs_update_inode(struct inode *inode, int do_sync) | |||
1234 | free_args: | 1236 | free_args: |
1235 | kfree(args); | 1237 | kfree(args); |
1236 | out: | 1238 | out: |
1237 | EXOFS_DBGMSG("ret=>%d\n", ret); | 1239 | EXOFS_DBGMSG("(0x%lx) do_sync=%d ret=>%d\n", |
1240 | inode->i_ino, do_sync, ret); | ||
1238 | return ret; | 1241 | return ret; |
1239 | } | 1242 | } |
1240 | 1243 | ||