Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Robin Dong and committed by
Theodore Ts'o
0737964b 5718789d

+1 -1
+1 -1
fs/ext4/extents.c
··· 1806 1806 ext4_ext_pblock(newext), 1807 1807 ext4_ext_is_uninitialized(newext), 1808 1808 ext4_ext_get_actual_len(newext), 1809 - nearex, len, nearex + 1, nearex + 2); 1809 + nearex, len, nearex, nearex + 1); 1810 1810 memmove(nearex + 1, nearex, len); 1811 1811 path[depth].p_ext = nearex; 1812 1812 }