blob: 3adb6e69fe43d832e252244d60cda7708426ec98 [file] [log] [blame]
Chris Masone089f052007-03-16 16:20:31 -04001#ifndef __TRANSACTION__
2#define __TRANSACTION__
3
4struct btrfs_trans_handle {
5 u64 transid;
6 unsigned long blocks_reserved;
7 unsigned long blocks_used;
8};
9
10static inline struct btrfs_trans_handle *
11btrfs_start_transaction(struct btrfs_root *root, int num_blocks)
12{
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;
18}
19
20static inline void btrfs_free_transaction(struct btrfs_root *root,
21 struct btrfs_trans_handle *handle)
22{
23 memset(handle, 0, sizeof(*handle));
24 free(handle);
25}
26
27#endif