| Submitter | Wang Sheng-Hui |
|---|---|
| Date | Aug. 20, 2012, 8:07 a.m. |
| Message ID | <5031F04C.60808@gmail.com> |
| Download | mbox | patch |
| Permalink | /patch/178699/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/fs/ext4/mballoc.c b/fs/ext4/mballoc.c index 8eae947..f83b145 100644 --- a/fs/ext4/mballoc.c +++ b/fs/ext4/mballoc.c @@ -2510,7 +2510,7 @@ static void ext4_mb_cleanup_pa(struct ext4_group_info *grp) kmem_cache_free(ext4_pspace_cachep, pa); } if (count) - mb_debug(1, "mballoc: %u PAs left\n", count); + mb_debug(1, "mballoc: %u PAs freed\n", count); }
The count records the PAs freed, not left. Change the debug description. Signed-off-by: Wang Sheng-Hui <shhuiw@gmail.com> --- fs/ext4/mballoc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)