]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
ext4: iterate over buffer heads correctly in move_extent_per_page()
authorEryu Guan <guaneryu@gmail.com>
Sun, 21 Feb 2016 23:38:44 +0000 (18:38 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 1 Jun 2016 19:15:48 +0000 (12:15 -0700)
commitfa5613b1f39ec020671705453eeceaaf57459e49
tree59ad3f2810a91a48d81d029822c7f03a9f0419b6
parenteef1195bb671cd15d30df683bd0aca373943719e
ext4: iterate over buffer heads correctly in move_extent_per_page()

commit 6ffe77bad545f4a7c8edd2a4ee797ccfcd894ab4 upstream.

In commit bcff24887d00 ("ext4: don't read blocks from disk after extents
being swapped") bh is not updated correctly in the for loop and wrong
data has been written to disk. generic/324 catches this on sub-page
block size ext4.

Fixes: bcff24887d00 ("ext4: don't read blocks from disk after extentsbeing swapped")
Signed-off-by: Eryu Guan <guaneryu@gmail.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/ext4/move_extent.c