mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 07:01:57 +00:00
ext4: correct the debug message in ext4_ext_insert_extent
The debug message in ext4_ext_insert_extent before moving extent is incorrect (the "from xx to xx"). Signed-off-by: Robin Dong <sanbai@taobao.com> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
This commit is contained in:
parent
5718789da5
commit
0737964bc9
@ -1806,7 +1806,7 @@ has_space:
|
|||||||
ext4_ext_pblock(newext),
|
ext4_ext_pblock(newext),
|
||||||
ext4_ext_is_uninitialized(newext),
|
ext4_ext_is_uninitialized(newext),
|
||||||
ext4_ext_get_actual_len(newext),
|
ext4_ext_get_actual_len(newext),
|
||||||
nearex, len, nearex + 1, nearex + 2);
|
nearex, len, nearex, nearex + 1);
|
||||||
memmove(nearex + 1, nearex, len);
|
memmove(nearex + 1, nearex, len);
|
||||||
path[depth].p_ext = nearex;
|
path[depth].p_ext = nearex;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user