X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=free-space-cache.c;h=f933f9f1cf3f9f046b726dbac97b8aef64af5e9c;hb=bb338fb0f0ac780e5f2806e0b50ef27e84701b7c;hp=99ad4200e21a8c3115d8aa6147b40a856576517a;hpb=97bf00f5955e9431b1d07c2b3040b20d33b9b33b;p=platform%2Fupstream%2Fbtrfs-progs.git diff --git a/free-space-cache.c b/free-space-cache.c index 99ad420..f933f9f 100644 --- a/free-space-cache.c +++ b/free-space-cache.c @@ -24,6 +24,8 @@ #include "extent_io.h" #include "crc32c.h" #include "bitops.h" +#include "internal.h" +#include "utils.h" /* * Kernel always uses PAGE_CACHE_SIZE for sectorsize, but we don't have @@ -31,7 +33,7 @@ * filesystem */ #define BITS_PER_BITMAP(sectorsize) ((sectorsize) * 8) -#define MAX_CACHE_BYTES_PER_GIG (32 * 1024) +#define MAX_CACHE_BYTES_PER_GIG SZ_32K static int link_free_space(struct btrfs_free_space_ctl *ctl, struct btrfs_free_space *info); @@ -52,7 +54,7 @@ static int io_ctl_init(struct io_ctl *io_ctl, u64 size, u64 ino, struct btrfs_root *root) { memset(io_ctl, 0, sizeof(struct io_ctl)); - io_ctl->num_pages = (size + root->sectorsize - 1) / root->sectorsize; + io_ctl->num_pages = DIV_ROUND_UP(size, root->fs_info->sectorsize); io_ctl->buffer = kzalloc(size, GFP_NOFS); if (!io_ctl->buffer) return -ENOMEM; @@ -79,11 +81,12 @@ static void io_ctl_unmap_page(struct io_ctl *io_ctl) static void io_ctl_map_page(struct io_ctl *io_ctl, int clear) { BUG_ON(io_ctl->index >= io_ctl->num_pages); - io_ctl->cur = io_ctl->buffer + (io_ctl->index++ * io_ctl->root->sectorsize); + io_ctl->cur = io_ctl->buffer + (io_ctl->index++ * + io_ctl->root->fs_info->sectorsize); io_ctl->orig = io_ctl->cur; - io_ctl->size = io_ctl->root->sectorsize; + io_ctl->size = io_ctl->root->fs_info->sectorsize; if (clear) - memset(io_ctl->cur, 0, io_ctl->root->sectorsize); + memset(io_ctl->cur, 0, io_ctl->root->fs_info->sectorsize); } static void io_ctl_drop_pages(struct io_ctl *io_ctl) @@ -107,7 +110,8 @@ static int io_ctl_prepare_pages(struct io_ctl *io_ctl, struct btrfs_root *root, ret = btrfs_search_slot(NULL, root, &key, path, 0, 0); if (ret) { - printf("Couldn't find file extent item for free space inode" + fprintf(stderr, + "Couldn't find file extent item for free space inode" " %Lu\n", ino); btrfs_release_path(path); return -EINVAL; @@ -138,7 +142,7 @@ static int io_ctl_prepare_pages(struct io_ctl *io_ctl, struct btrfs_root *root, struct btrfs_file_extent_item); if (btrfs_file_extent_type(path->nodes[0], fi) != BTRFS_FILE_EXTENT_REG) { - printf("Not the file extent type we wanted\n"); + fprintf(stderr, "Not the file extent type we wanted\n"); ret = -EINVAL; break; } @@ -207,8 +211,9 @@ static int io_ctl_check_crc(struct io_ctl *io_ctl, int index) val = *tmp; io_ctl_map_page(io_ctl, 0); - crc = crc32c(crc, io_ctl->orig + offset, io_ctl->root->sectorsize - offset); - btrfs_csum_final(crc, (char *)&crc); + crc = crc32c(crc, io_ctl->orig + offset, + io_ctl->root->fs_info->sectorsize - offset); + btrfs_csum_final(crc, (u8 *)&crc); if (val != crc) { printk("btrfs: csum mismatch on free space cache\n"); io_ctl_unmap_page(io_ctl); @@ -254,7 +259,7 @@ static int io_ctl_read_bitmap(struct io_ctl *io_ctl, if (ret) return ret; - memcpy(entry->bitmap, io_ctl->cur, io_ctl->root->sectorsize); + memcpy(entry->bitmap, io_ctl->cur, io_ctl->root->fs_info->sectorsize); io_ctl_unmap_page(io_ctl); return 0; @@ -307,7 +312,7 @@ static int __load_free_space_cache(struct btrfs_root *root, ret = btrfs_search_slot(NULL, root, &inode_location, path, 0, 0); if (ret) { - printf("Couldn't find free space inode %d\n", ret); + fprintf(stderr, "Couldn't find free space inode %d\n", ret); return 0; } @@ -322,7 +327,8 @@ static int __load_free_space_cache(struct btrfs_root *root, } if (btrfs_inode_generation(leaf, inode_item) != generation) { - printf("free space inode generation (%llu) did not match " + fprintf(stderr, + "free space inode generation (%llu) did not match " "free space cache generation (%llu)\n", (unsigned long long)btrfs_inode_generation(leaf, inode_item), @@ -372,7 +378,8 @@ static int __load_free_space_cache(struct btrfs_root *root, if (type == BTRFS_FREE_SPACE_EXTENT) { ret = link_free_space(ctl, e); if (ret) { - printf("Duplicate entries in free space cache, dumping"); + fprintf(stderr, + "Duplicate entries in free space cache\n"); free(e); goto free_cache; } @@ -387,7 +394,8 @@ static int __load_free_space_cache(struct btrfs_root *root, ret = link_free_space(ctl, e); ctl->total_bitmaps++; if (ret) { - printf("Duplicate entries in free space cache, dumping"); + fprintf(stderr, + "Duplicate entries in free space cache\n"); free(e->bitmap); free(e); goto free_cache; @@ -428,7 +436,9 @@ int load_free_space_cache(struct btrfs_fs_info *fs_info, { struct btrfs_free_space_ctl *ctl = block_group->free_space_ctl; struct btrfs_path *path; + u64 used = btrfs_block_group_used(&block_group->item); int ret = 0; + int matched; path = btrfs_alloc_path(); if (!path) @@ -438,11 +448,22 @@ int load_free_space_cache(struct btrfs_fs_info *fs_info, block_group->key.objectid); btrfs_free_path(path); + matched = (ctl->free_space == (block_group->key.offset - used - + block_group->bytes_super)); + if (ret == 1 && !matched) { + __btrfs_remove_free_space_cache(ctl); + fprintf(stderr, + "block group %llu has wrong amount of free space\n", + block_group->key.objectid); + ret = -1; + } + if (ret < 0) { ret = 0; - printf("failed to load free space cache for block group %llu\n", - block_group->key.objectid); + fprintf(stderr, + "failed to load free space cache for block group %llu\n", + block_group->key.objectid); } return ret; @@ -785,8 +806,8 @@ void btrfs_remove_free_space_cache(struct btrfs_block_group_cache *block_group) __btrfs_remove_free_space_cache(block_group->free_space_ctl); } -static int btrfs_add_free_space(struct btrfs_free_space_ctl *ctl, u64 offset, - u64 bytes) +int btrfs_add_free_space(struct btrfs_free_space_ctl *ctl, u64 offset, + u64 bytes) { struct btrfs_free_space *info; int ret = 0; @@ -859,3 +880,129 @@ next: prev = e; } } + +int btrfs_clear_free_space_cache(struct btrfs_fs_info *fs_info, + struct btrfs_block_group_cache *bg) +{ + struct btrfs_trans_handle *trans; + struct btrfs_root *tree_root = fs_info->tree_root; + struct btrfs_path path; + struct btrfs_key key; + struct btrfs_disk_key location; + struct btrfs_free_space_header *sc_header; + struct extent_buffer *node; + u64 ino; + int slot; + int ret; + + trans = btrfs_start_transaction(tree_root, 1); + if (IS_ERR(trans)) + return PTR_ERR(trans); + + btrfs_init_path(&path); + + key.objectid = BTRFS_FREE_SPACE_OBJECTID; + key.type = 0; + key.offset = bg->key.objectid; + + ret = btrfs_search_slot(trans, tree_root, &key, &path, -1, 1); + if (ret > 0) { + ret = 0; + goto out; + } + if (ret < 0) + goto out; + + node = path.nodes[0]; + slot = path.slots[0]; + sc_header = btrfs_item_ptr(node, slot, struct btrfs_free_space_header); + btrfs_free_space_key(node, sc_header, &location); + ino = btrfs_disk_key_objectid(&location); + + /* Delete the free space header, as we have the ino to continue */ + ret = btrfs_del_item(trans, tree_root, &path); + if (ret < 0) { + error("failed to remove free space header for block group %llu: %d", + bg->key.objectid, ret); + goto out; + } + btrfs_release_path(&path); + + /* Iterate from the end of the free space cache inode */ + key.objectid = ino; + key.type = BTRFS_EXTENT_DATA_KEY; + key.offset = (u64)-1; + ret = btrfs_search_slot(trans, tree_root, &key, &path, -1, 1); + if (ret < 0) { + error("failed to locate free space cache extent for block group %llu: %d", + bg->key.objectid, ret); + goto out; + } + while (1) { + struct btrfs_file_extent_item *fi; + u64 disk_bytenr; + u64 disk_num_bytes; + + ret = btrfs_previous_item(tree_root, &path, ino, + BTRFS_EXTENT_DATA_KEY); + if (ret > 0) { + ret = 0; + break; + } + if (ret < 0) { + error( + "failed to locate free space cache extent for block group %llu: %d", + bg->key.objectid, ret); + goto out; + } + node = path.nodes[0]; + slot = path.slots[0]; + btrfs_item_key_to_cpu(node, &key, slot); + fi = btrfs_item_ptr(node, slot, struct btrfs_file_extent_item); + disk_bytenr = btrfs_file_extent_disk_bytenr(node, fi); + disk_num_bytes = btrfs_file_extent_disk_num_bytes(node, fi); + + ret = btrfs_free_extent(trans, tree_root, disk_bytenr, + disk_num_bytes, 0, tree_root->objectid, + ino, key.offset); + if (ret < 0) { + error("failed to remove backref for disk bytenr %llu: %d", + disk_bytenr, ret); + goto out; + } + ret = btrfs_del_item(trans, tree_root, &path); + if (ret < 0) { + error( + "failed to remove free space extent data for ino %llu offset %llu: %d", + ino, key.offset, ret); + goto out; + } + } + btrfs_release_path(&path); + + /* Now delete free space cache inode item */ + key.objectid = ino; + key.type = BTRFS_INODE_ITEM_KEY; + key.offset = 0; + + ret = btrfs_search_slot(trans, tree_root, &key, &path, -1, 1); + if (ret > 0) + warning("free space inode %llu not found, ignore", ino); + if (ret < 0) { + error( + "failed to locate free space cache inode %llu for block group %llu: %d", + ino, bg->key.objectid, ret); + goto out; + } + ret = btrfs_del_item(trans, tree_root, &path); + if (ret < 0) { + error( + "failed to delete free space cache inode %llu for block group %llu: %d", + ino, bg->key.objectid, ret); + } +out: + btrfs_release_path(&path); + if (!ret) + btrfs_commit_transaction(trans, tree_root); + return ret; +}