]> git.karo-electronics.de Git - karo-tx-uboot.git/commit
ext4: remove duplicated block release code for extents
authorStefan Brüns <stefan.bruens@rwth-aachen.de>
Tue, 6 Sep 2016 02:36:54 +0000 (04:36 +0200)
committerTom Rini <trini@konsulko.com>
Fri, 23 Sep 2016 13:02:43 +0000 (09:02 -0400)
commitb779e0290a4a6ac589bfac7192b4f8e677d3bf8a
tree8ab39f894d81f97334371b1d54112d5d34c44f6c
parent87f9fdc08d927f8e0e346c27620e2e4d0acbb061
ext4: remove duplicated block release code for extents

The data blocks are identical for files using traditional direct/indirect
block allocation scheme and extent trees, thus this code part can be
common. Only the code to deallocate the indirect blocks to record the
used blocks has to be seperate, respectively the code to release extent
tree index blocks.

Actually the code to release the extent tree index blocks is still missing,
but at least add a FIXME at the appropriate place.

Signed-off-by: Stefan Brüns <stefan.bruens@rwth-aachen.de>
fs/ext4/ext4_write.c