struct btrfs_inode_map_item *mi;
struct btrfs_inode_item *ii;
struct btrfs_file_extent_item *fi;
+ char *p;
u32 type;
printf("leaf %Lu ptrs %d free space %d parent %Lu generation %Lu\n",
btrfs_inode_size(ii),
btrfs_inode_mode(ii));
break;
+ case BTRFS_INLINE_DATA_KEY:
+ p = btrfs_item_ptr(l, i, char);
+ printf("\t\tinline data %.*s\n", 10, p);
+ break;
case BTRFS_DIR_ITEM_KEY:
di = btrfs_item_ptr(l, i, struct btrfs_dir_item);
printf("\t\tdir oid %Lu flags %u type %u\n",
struct btrfs_root *root;
struct btrfs_trans_handle *trans;
+ buf = malloc(512);
+ memset(buf, 0, 512);
+
radix_tree_init();
root = open_ctree(av[1], &super);
ins.flags = 0;
btrfs_set_key_type(&ins, BTRFS_STRING_ITEM_KEY);
for (i = 0; i < run_size; i++) {
- buf = malloc(64);
num = next_key(i, max_key);
// num = i;
sprintf(buf, "string-%d", num);
fprintf(stderr, "insert %d:%d\n", num, i);
ins.objectid = num;
ins.offset = 0;
- ret = btrfs_insert_item(trans, root, &ins, buf, strlen(buf));
+ ret = btrfs_insert_item(trans, root, &ins, buf, 512);
if (!ret)
tree_size++;
- free(buf);
if (i == run_size - 5) {
btrfs_commit_transaction(trans, root, &super);
}
}
close_ctree(root, &super);
- exit(1);
-
- root = open_ctree("dbfile", &super);
+ root = open_ctree(av[1], &super);
printf("starting search\n");
srand(55);
for (i = 0; i < run_size; i++) {
btrfs_release_path(root, &path);
}
close_ctree(root, &super);
- root = open_ctree("dbfile", &super);
+ root = open_ctree(av[1], &super);
printf("node %p level %d total ptrs %d free spc %lu\n", root->node,
btrfs_header_level(&root->node->node.header),
btrfs_header_nritems(&root->node->node.header),
btrfs_release_path(root, &path);
}
close_ctree(root, &super);
- root = open_ctree("dbfile", &super);
+ root = open_ctree(av[1], &super);
srand(128);
for (i = 0; i < run_size; i++) {
- buf = malloc(64);
num = next_key(i, max_key);
sprintf(buf, "string-%d", num);
ins.objectid = num;
if (i % 10000 == 0)
fprintf(stderr, "insert %d:%d\n", num, i);
- ret = btrfs_insert_item(trans, root, &ins, buf, strlen(buf));
+ ret = btrfs_insert_item(trans, root, &ins, buf, 512);
if (!ret)
tree_size++;
- free(buf);
}
close_ctree(root, &super);
- root = open_ctree("dbfile", &super);
+ root = open_ctree(av[1], &super);
srand(128);
printf("starting search2\n");
for (i = 0; i < run_size; i++) {