summaryrefslogtreecommitdiff
path: root/dir-test.c
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.com>2016-09-13 11:58:21 +0200
committerDavid Sterba <dsterba@suse.com>2016-10-03 11:33:15 +0200
commit555743075b5cc924021dd1e1a4a4697ee91441d8 (patch)
tree42ed0d0db2e550ed10dcc0268c6f9624288987c7 /dir-test.c
parentea84d54121c228d0526404a97ac0cdd197f46ccb (diff)
btrfs-progs: cleanup, kill trivial btrfs_set_key_type helper
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'dir-test.c')
-rw-r--r--dir-test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/dir-test.c b/dir-test.c
index a54b7773..24f2c2e3 100644
--- a/dir-test.c
+++ b/dir-test.c
@@ -87,7 +87,7 @@ static int ins_one(struct btrfs_trans_handle *trans, struct btrfs_root *root,
inode_map.objectid = objectid;
inode_map.flags = 0;
- btrfs_set_key_type(&inode_map, BTRFS_INODE_ITEM_KEY);
+ inode_map.type = BTRFS_INODE_ITEM_KEY;
inode_map.offset = 0;
initial_inode_init(root, &inode_item);
@@ -158,7 +158,7 @@ static int insert_dup(struct btrfs_trans_handle *trans, struct btrfs_root
key.objectid = file_oid;
key.flags = 0;
- btrfs_set_key_type(&key, BTRFS_INODE_ITEM_KEY);
+ key.type = BTRFS_INODE_ITEM_KEY;
key.offset = 0;
ret = btrfs_insert_dir_item(trans, root, buf, strlen(buf), dir_oid,
&key, BTRFS_FT_UNKNOWN);
@@ -312,7 +312,7 @@ static int empty_tree(struct btrfs_trans_handle *trans, struct btrfs_root
key.offset = (u64)-1;
key.flags = 0;
- btrfs_set_key_type(&key, BTRFS_DIR_ITEM_KEY);
+ key.type = BTRFS_DIR_ITEM_KEY;
key.objectid = dir_oid;
while(nr-- >= 0) {
btrfs_init_path(&path);