| Submitter | Eric Sandeen |
|---|---|
| Date | Nov. 28, 2012, 8:51 p.m. |
| Message ID | <50B67949.60104@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/202546/ |
| State | Superseded |
| Headers | show |
Comments
Patch
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index 80928f7..b441daa 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c @@ -3229,6 +3229,10 @@ int ext4_calculate_overhead(struct super_block *sb) memset(buf, 0, PAGE_SIZE); cond_resched(); } + /* Add the journal blocks as well */ + if (sbi->s_journal) + overhead += sbi->s_journal->j_maxlen; + sbi->s_overhead = overhead; smp_wmb(); free_page((unsigned long) buf);