.. | .. |
---|
32 | 32 | newext.ee_block = cpu_to_le32(lb->first_block); |
---|
33 | 33 | newext.ee_len = cpu_to_le16(lb->last_block - lb->first_block + 1); |
---|
34 | 34 | ext4_ext_store_pblock(&newext, lb->first_pblock); |
---|
35 | | - /* Locking only for convinience since we are operating on temp inode */ |
---|
| 35 | + /* Locking only for convenience since we are operating on temp inode */ |
---|
36 | 36 | down_write(&EXT4_I(inode)->i_data_sem); |
---|
37 | 37 | path = ext4_find_extent(inode, lb->first_block, NULL, 0); |
---|
38 | 38 | if (IS_ERR(path)) { |
---|
.. | .. |
---|
43 | 43 | |
---|
44 | 44 | /* |
---|
45 | 45 | * Calculate the credit needed to inserting this extent |
---|
46 | | - * Since we are doing this in loop we may accumalate extra |
---|
47 | | - * credit. But below we try to not accumalate too much |
---|
| 46 | + * Since we are doing this in loop we may accumulate extra |
---|
| 47 | + * credit. But below we try to not accumulate too much |
---|
48 | 48 | * of them by restarting the journal. |
---|
49 | 49 | */ |
---|
50 | 50 | needed = ext4_ext_calc_credits_for_single_extent(inode, |
---|