1 #include <linux/module.h>
4 #include "transaction.h"
6 int btrfs_insert_inode(struct btrfs_trans_handle *trans, struct btrfs_root
7 *root, u64 objectid, struct btrfs_inode_item
10 struct btrfs_path *path;
13 key.objectid = objectid;
15 btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
18 path = btrfs_alloc_path();
20 btrfs_init_path(path);
21 ret = btrfs_insert_item(trans, root, &key, inode_item,
23 btrfs_release_path(root, path);
24 btrfs_free_path(path);
25 if (ret == 0 && objectid > root->highest_inode)
26 root->highest_inode = objectid;
30 int btrfs_lookup_inode(struct btrfs_trans_handle *trans, struct btrfs_root
31 *root, struct btrfs_path *path,
32 struct btrfs_key *location, int mod)
34 int ins_len = mod < 0 ? -1 : 0;
38 struct btrfs_leaf *leaf;
39 struct btrfs_key found_key;
41 ret = btrfs_search_slot(trans, root, location, path, ins_len, cow);
42 if (ret > 0 && btrfs_key_type(location) == BTRFS_ROOT_ITEM_KEY &&
43 location->offset == (u64)-1 && path->slots[0] != 0) {
44 slot = path->slots[0] - 1;
45 leaf = btrfs_buffer_leaf(path->nodes[0]);
46 btrfs_disk_key_to_cpu(&found_key, &leaf->items[slot].key);
47 if (found_key.objectid == location->objectid &&
48 btrfs_key_type(&found_key) == btrfs_key_type(location)) {