Commit e4d7f2d3 authored by Keyur Patel's avatar Keyur Patel Committed by Theodore Ts'o

ext4: fix spelling mistakes in extents.c

Fix spelling issues over the comments in the code.

requsted ==> requested
deterimined ==> determined
insde ==> inside
neet ==> need
somthing ==> something
Signed-off-by: default avatarKeyur Patel <iamkeyur96@gmail.com>
Reviewed-by: default avatarJan Kara <jack@suse.cz>
Link: https://lore.kernel.org/r/20200611031947.165079-1-iamkeyur96@gmail.comSigned-off-by: default avatarTheodore Ts'o <tytso@mit.edu>
parent dcb7fd82
...@@ -1915,7 +1915,7 @@ static unsigned int ext4_ext_check_overlap(struct ext4_sb_info *sbi, ...@@ -1915,7 +1915,7 @@ static unsigned int ext4_ext_check_overlap(struct ext4_sb_info *sbi,
/* /*
* ext4_ext_insert_extent: * ext4_ext_insert_extent:
* tries to merge requsted extent into the existing extent or * tries to merge requested extent into the existing extent or
* inserts requested extent as new one into the tree, * inserts requested extent as new one into the tree,
* creating new leaf in the no-space case. * creating new leaf in the no-space case.
*/ */
...@@ -3125,7 +3125,7 @@ static int ext4_ext_zeroout(struct inode *inode, struct ext4_extent *ex) ...@@ -3125,7 +3125,7 @@ static int ext4_ext_zeroout(struct inode *inode, struct ext4_extent *ex)
* *
* *
* Splits extent [a, b] into two extents [a, @split) and [@split, b], states * Splits extent [a, b] into two extents [a, @split) and [@split, b], states
* of which are deterimined by split_flag. * of which are determined by split_flag.
* *
* There are two cases: * There are two cases:
* a> the extent are splitted into two extent. * a> the extent are splitted into two extent.
...@@ -3650,7 +3650,7 @@ static int ext4_split_convert_extents(handle_t *handle, ...@@ -3650,7 +3650,7 @@ static int ext4_split_convert_extents(handle_t *handle,
eof_block = map->m_lblk + map->m_len; eof_block = map->m_lblk + map->m_len;
/* /*
* It is safe to convert extent to initialized via explicit * It is safe to convert extent to initialized via explicit
* zeroout only if extent is fully insde i_size or new_size. * zeroout only if extent is fully inside i_size or new_size.
*/ */
depth = ext_depth(inode); depth = ext_depth(inode);
ex = path[depth].p_ext; ex = path[depth].p_ext;
...@@ -4495,7 +4495,7 @@ static long ext4_zero_range(struct file *file, loff_t offset, ...@@ -4495,7 +4495,7 @@ static long ext4_zero_range(struct file *file, loff_t offset,
} }
/* /*
* Round up offset. This is not fallocate, we neet to zero out * Round up offset. This is not fallocate, we need to zero out
* blocks, so convert interior block aligned part of the range to * blocks, so convert interior block aligned part of the range to
* unwritten and possibly manually zero out unaligned parts of the * unwritten and possibly manually zero out unaligned parts of the
* range. * range.
...@@ -5579,7 +5579,7 @@ ext4_swap_extents(handle_t *handle, struct inode *inode1, ...@@ -5579,7 +5579,7 @@ ext4_swap_extents(handle_t *handle, struct inode *inode1,
} }
ex1 = path1[path1->p_depth].p_ext; ex1 = path1[path1->p_depth].p_ext;
ex2 = path2[path2->p_depth].p_ext; ex2 = path2[path2->p_depth].p_ext;
/* Do we have somthing to swap ? */ /* Do we have something to swap ? */
if (unlikely(!ex2 || !ex1)) if (unlikely(!ex2 || !ex1))
goto finish; goto finish;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment