Skip to content

Commit

Permalink
ext4: fix comments in ext4_swap_extents()
Browse files Browse the repository at this point in the history
"mark_unwritten" in comment and "unwritten" in the function arguments
is mismatched.

Signed-off-by: zhenwei.pi <[email protected]>
Signed-off-by: Theodore Ts'o <[email protected]>
  • Loading branch information
zhenwei.pi authored and tytso committed Mar 26, 2018
1 parent 043d20d commit dcae058
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fs/ext4/extents.c
Original file line number Diff line number Diff line change
Expand Up @@ -5742,7 +5742,7 @@ int ext4_insert_range(struct inode *inode, loff_t offset, loff_t len)
* @lblk1: Start block for first inode
* @lblk2: Start block for second inode
* @count: Number of blocks to swap
* @mark_unwritten: Mark second inode's extents as unwritten after swap
* @unwritten: Mark second inode's extents as unwritten after swap
* @erp: Pointer to save error value
*
* This helper routine does exactly what is promise "swap extents". All other
Expand All @@ -5756,7 +5756,7 @@ int ext4_insert_range(struct inode *inode, loff_t offset, loff_t len)
*/
int
ext4_swap_extents(handle_t *handle, struct inode *inode1,
struct inode *inode2, ext4_lblk_t lblk1, ext4_lblk_t lblk2,
struct inode *inode2, ext4_lblk_t lblk1, ext4_lblk_t lblk2,
ext4_lblk_t count, int unwritten, int *erp)
{
struct ext4_ext_path *path1 = NULL;
Expand Down

0 comments on commit dcae058

Please sign in to comment.