transaction handles everywhere
[btrfs-progs-unstable.git] / transaction.h
blob3adb6e69fe43d832e252244d60cda7708426ec98
1 #ifndef __TRANSACTION__
2 #define __TRANSACTION__
4 struct btrfs_trans_handle {
5 u64 transid;
6 unsigned long blocks_reserved;
7 unsigned long blocks_used;
8 };
10 static inline struct btrfs_trans_handle *
11 btrfs_start_transaction(struct btrfs_root *root, int num_blocks)
13 struct btrfs_trans_handle *h = malloc(sizeof(*h));
14 h->transid = root->root_key.offset;
15 h->blocks_reserved = num_blocks;
16 h->blocks_used = 0;
17 return h;
20 static inline void btrfs_free_transaction(struct btrfs_root *root,
21 struct btrfs_trans_handle *handle)
23 memset(handle, 0, sizeof(*handle));
24 free(handle);
27 #endif