diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2011-03-30 06:18:58 -0400 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2011-05-13 12:23:53 -0400 |
commit | 8c3067e445fb25119761356c88abc39dacfb9524 (patch) | |
tree | 832aafb6b5c0d5d621d014ee346c99c3c8eb9efd /fs/ubifs/debug.c | |
parent | 8ff83089f8bcbd9a2e898b68f1a46487c8b6e38c (diff) |
UBIFS: rearrange the budget dump
Re-arrange the budget dump and make sure we first dump all
the 'struct ubifs_budg_info' fields, and then the other information.
Additionally, print the 'uncommitted_idx' variable.
This change is required for to the following dumping function
enhancement where it will be possible to dump saved
'struct ubifs_budg_info' objects, not only the current one.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'fs/ubifs/debug.c')
-rw-r--r-- | fs/ubifs/debug.c | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/fs/ubifs/debug.c b/fs/ubifs/debug.c index aad4fb80d187..8e8bba937331 100644 --- a/fs/ubifs/debug.c +++ b/fs/ubifs/debug.c | |||
@@ -612,22 +612,28 @@ void dbg_dump_budg(struct ubifs_info *c) | |||
612 | 612 | ||
613 | spin_lock(&c->space_lock); | 613 | spin_lock(&c->space_lock); |
614 | spin_lock(&dbg_lock); | 614 | spin_lock(&dbg_lock); |
615 | printk(KERN_DEBUG "(pid %d) Budgeting info: budg_data_growth %lld, " | 615 | printk(KERN_DEBUG "(pid %d) Budgeting info: data budget sum %lld, " |
616 | "budg_dd_growth %lld, budg_idx_growth %lld\n", current->pid, | 616 | "total budget sum %lld\n", current->pid, |
617 | c->bi.data_growth, c->bi.dd_growth, c->bi.idx_growth); | 617 | c->bi.data_growth + c->bi.dd_growth, |
618 | printk(KERN_DEBUG "\tdata budget sum %lld, total budget sum %lld, " | 618 | c->bi.data_growth + c->bi.dd_growth + c->bi.idx_growth); |
619 | "freeable_cnt %d\n", c->bi.data_growth + c->bi.dd_growth, | 619 | printk(KERN_DEBUG "\tbudg_data_growth %lld, budg_dd_growth %lld, " |
620 | c->bi.data_growth + c->bi.dd_growth + c->bi.idx_growth, | 620 | "budg_idx_growth %lld\n", c->bi.data_growth, c->bi.dd_growth, |
621 | c->freeable_cnt); | 621 | c->bi.idx_growth); |
622 | printk(KERN_DEBUG "\tmin_idx_lebs %d, old_idx_sz %lld, " | 622 | printk(KERN_DEBUG "\tmin_idx_lebs %d, old_idx_sz %llu, " |
623 | "calc_idx_sz %lld, idx_gc_cnt %d\n", c->bi.min_idx_lebs, | 623 | "uncommitted_idx %lld\n", c->bi.min_idx_lebs, c->bi.old_idx_sz, |
624 | c->bi.old_idx_sz, c->calc_idx_sz, c->idx_gc_cnt); | 624 | c->bi.uncommitted_idx); |
625 | printk(KERN_DEBUG "\tpage_budget %d, inode_budget %d, dent_budget %d\n", | ||
626 | c->bi.page_budget, c->bi.inode_budget, c->bi.dent_budget); | ||
627 | printk(KERN_DEBUG "\tnospace %u, nospace_rp %u\n", | ||
628 | c->bi.nospace, c->bi.nospace_rp); | ||
629 | printk(KERN_DEBUG "\tdark_wm %d, dead_wm %d, max_idx_node_sz %d\n", | ||
630 | c->dark_wm, c->dead_wm, c->max_idx_node_sz); | ||
631 | printk(KERN_DEBUG "\tfreeable_cnt %d, calc_idx_sz %lld, idx_gc_cnt %d\n", | ||
632 | c->freeable_cnt, c->calc_idx_sz, c->idx_gc_cnt); | ||
625 | printk(KERN_DEBUG "\tdirty_pg_cnt %ld, dirty_zn_cnt %ld, " | 633 | printk(KERN_DEBUG "\tdirty_pg_cnt %ld, dirty_zn_cnt %ld, " |
626 | "clean_zn_cnt %ld\n", atomic_long_read(&c->dirty_pg_cnt), | 634 | "clean_zn_cnt %ld\n", atomic_long_read(&c->dirty_pg_cnt), |
627 | atomic_long_read(&c->dirty_zn_cnt), | 635 | atomic_long_read(&c->dirty_zn_cnt), |
628 | atomic_long_read(&c->clean_zn_cnt)); | 636 | atomic_long_read(&c->clean_zn_cnt)); |
629 | printk(KERN_DEBUG "\tdark_wm %d, dead_wm %d, max_idx_node_sz %d\n", | ||
630 | c->dark_wm, c->dead_wm, c->max_idx_node_sz); | ||
631 | printk(KERN_DEBUG "\tgc_lnum %d, ihead_lnum %d\n", | 637 | printk(KERN_DEBUG "\tgc_lnum %d, ihead_lnum %d\n", |
632 | c->gc_lnum, c->ihead_lnum); | 638 | c->gc_lnum, c->ihead_lnum); |
633 | /* If we are in R/O mode, journal heads do not exist */ | 639 | /* If we are in R/O mode, journal heads do not exist */ |