blob: f37dab87de16979bc5b6f4c4c9ffd3597ca61a3c [file] [log] [blame]
Chris Mason2e635a22007-03-21 11:12:56 -04001#include <linux/module.h>
Chris Mason3768f362007-03-13 16:47:54 -04002#include "ctree.h"
3#include "disk-io.h"
4#include "print-tree.h"
5
6int btrfs_find_last_root(struct btrfs_root *root, u64 objectid,
7 struct btrfs_root_item *item, struct btrfs_key *key)
8{
9 struct btrfs_path path;
10 struct btrfs_key search_key;
11 struct btrfs_leaf *l;
12 int ret;
13 int slot;
14
15 search_key.objectid = objectid;
16 search_key.flags = (u32)-1;
17 search_key.offset = (u32)-1;
18
19 btrfs_init_path(&path);
Chris Masone089f052007-03-16 16:20:31 -040020 ret = btrfs_search_slot(NULL, root, &search_key, &path, 0, 0);
Chris Mason3768f362007-03-13 16:47:54 -040021 if (ret < 0)
22 goto out;
23 BUG_ON(ret == 0);
Chris Masone20d96d2007-03-22 12:13:20 -040024 l = btrfs_buffer_leaf(path.nodes[0]);
Chris Mason3768f362007-03-13 16:47:54 -040025 BUG_ON(path.slots[0] == 0);
26 slot = path.slots[0] - 1;
Chris Mason62e27492007-03-15 12:56:47 -040027 if (btrfs_disk_key_objectid(&l->items[slot].key) != objectid) {
Chris Mason3768f362007-03-13 16:47:54 -040028 ret = 1;
29 goto out;
30 }
Chris Mason123abc82007-03-14 14:14:43 -040031 memcpy(item, btrfs_item_ptr(l, slot, struct btrfs_root_item),
Chris Mason3768f362007-03-13 16:47:54 -040032 sizeof(*item));
33 btrfs_disk_key_to_cpu(key, &l->items[slot].key);
34 btrfs_release_path(root, &path);
35 ret = 0;
36out:
37 return ret;
38}
39
Chris Masone089f052007-03-16 16:20:31 -040040int btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root
41 *root, struct btrfs_key *key, struct btrfs_root_item
42 *item)
Chris Mason3768f362007-03-13 16:47:54 -040043{
44 struct btrfs_path path;
45 struct btrfs_leaf *l;
46 int ret;
47 int slot;
Chris Masond6025572007-03-30 14:27:56 -040048 struct btrfs_root_item *update_item;
Chris Mason3768f362007-03-13 16:47:54 -040049
50 btrfs_init_path(&path);
Chris Masone089f052007-03-16 16:20:31 -040051 ret = btrfs_search_slot(trans, root, key, &path, 0, 1);
Chris Mason3768f362007-03-13 16:47:54 -040052 if (ret < 0)
53 goto out;
54 BUG_ON(ret != 0);
Chris Masone20d96d2007-03-22 12:13:20 -040055 l = btrfs_buffer_leaf(path.nodes[0]);
Chris Mason3768f362007-03-13 16:47:54 -040056 slot = path.slots[0];
Chris Masond6025572007-03-30 14:27:56 -040057 update_item = btrfs_item_ptr(l, slot, struct btrfs_root_item);
58 btrfs_memcpy(root, l, update_item, item, sizeof(*item));
59 btrfs_mark_buffer_dirty(path.nodes[0]);
Chris Mason3768f362007-03-13 16:47:54 -040060out:
61 btrfs_release_path(root, &path);
62 return ret;
63}
64
Chris Masone089f052007-03-16 16:20:31 -040065int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root
66 *root, struct btrfs_key *key, struct btrfs_root_item
67 *item)
Chris Mason3768f362007-03-13 16:47:54 -040068{
69 int ret;
Chris Masone089f052007-03-16 16:20:31 -040070 ret = btrfs_insert_item(trans, root, key, item, sizeof(*item));
Chris Mason3768f362007-03-13 16:47:54 -040071 BUG_ON(ret);
72 return ret;
73}
74
Chris Masone089f052007-03-16 16:20:31 -040075int btrfs_del_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
76 struct btrfs_key *key)
Chris Mason3768f362007-03-13 16:47:54 -040077{
78 struct btrfs_path path;
79 int ret;
80
81 btrfs_init_path(&path);
Chris Masone089f052007-03-16 16:20:31 -040082 ret = btrfs_search_slot(trans, root, key, &path, -1, 1);
Chris Mason3768f362007-03-13 16:47:54 -040083 if (ret < 0)
84 goto out;
85 BUG_ON(ret != 0);
Chris Masone089f052007-03-16 16:20:31 -040086 ret = btrfs_del_item(trans, root, &path);
Chris Mason3768f362007-03-13 16:47:54 -040087out:
88 btrfs_release_path(root, &path);
89 return ret;
90}