ext4: rework reserved cluster accounting when invalidating pages
authorEric Whitney <enwlinux@gmail.com>
Fri, 23 Aug 2019 03:22:14 +0000 (23:22 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Fri, 23 Aug 2019 03:22:14 +0000 (23:22 -0400)
commit8fcc3a580651cceb94a9f48e1914491400d5146b
treef61ee2cc93d56ea3cf12d0de7b8073d6b8986c4a
parent219db95bbe796277c739cca17fe134f6c2ce6676
ext4: rework reserved cluster accounting when invalidating pages

The goal of this patch is to remove two references to the buffer delay
bit in ext4_da_page_release_reservation() as part of a larger effort
to remove all such references from ext4.  These two references are
principally used to reduce the reserved block/cluster count when pages
are invalidated as a result of truncating, punching holes, or
collapsing a block range in a file.  The entire function is removed
and replaced with code in ext4_es_remove_extent() that reduces the
reserved count as a side effect of removing a block range from delayed
and not unwritten extents in the extent status tree as is done when
truncating, punching holes, or collapsing ranges.

The code is written to minimize the number of searches descending from
rb tree roots for scalability.

Signed-off-by: Eric Whitney <enwlinux@gmail.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
fs/ext4/ext4.h
fs/ext4/extents_status.c
fs/ext4/extents_status.h
fs/ext4/inode.c