On 11/3/21 10:31 pm, fdman...@kernel.org wrote:
From: Filipe Manana <fdman...@suse.com>
The tree modification log, which records modifications done to btrees, is
quite large and currently spread all over ctree.c, which is a huge file
already.
To make things better organized, move all that code into its own separate
source and header files. Functions and definitions that are used outside
of the module (mostly by ctree.c) are renamed so that they start with a
"btrfs_" prefix. Everything else remains unchanged.
This makes it easier to go over the tree modification log code everytime
I need to go read it to fix a bug.
Signed-off-by: Filipe Manana <fdman...@suse.com>
Reviewed-by: Anand Jain <anand.j...@oracle.com>