Btrfs: create special free space cache inode
In order to save free space cache, we need an inode to hold the data, and we
need a special item to point at the right inode for the right block group. So
first, create a special item that will point to the right inode, and the number
of extent entries we will have and the number of bitmaps we will have. We
truncate and pre-allocate space everytime to make sure it's uptodate.
This feature will be turned on as soon as you mount with -o space_cache, however
it is safe to boot into old kernels, they will just generate the cache the old
fashion way. When you boot back into a newer kernel we will notice that we
modified and not the cache and automatically discard the cache.
Signed-off-by:
Josef Bacik <josef@redhat.com>
Showing
- fs/btrfs/ctree.h 68 additions, 6 deletionsfs/btrfs/ctree.h
- fs/btrfs/disk-io.c 2 additions, 1 deletionfs/btrfs/disk-io.c
- fs/btrfs/extent-tree.c 225 additions, 6 deletionsfs/btrfs/extent-tree.c
- fs/btrfs/free-space-cache.c 155 additions, 0 deletionsfs/btrfs/free-space-cache.c
- fs/btrfs/free-space-cache.h 11 additions, 0 deletionsfs/btrfs/free-space-cache.h
- fs/btrfs/inode.c 78 additions, 17 deletionsfs/btrfs/inode.c
- fs/btrfs/relocation.c 87 additions, 4 deletionsfs/btrfs/relocation.c
- fs/btrfs/super.c 6 additions, 1 deletionfs/btrfs/super.c
- fs/btrfs/transaction.c 32 additions, 11 deletionsfs/btrfs/transaction.c
- fs/btrfs/transaction.h 4 additions, 0 deletionsfs/btrfs/transaction.h
Loading
Please register or sign in to comment