738eebd110095c2c9398d738104d3d3081a2ba9c
[platform/upstream/btrfs-progs.git] / transaction.h
1 /*
2  * Copyright (C) 2007 Oracle.  All rights reserved.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public
6  * License v2 as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public
14  * License along with this program; if not, write to the
15  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16  * Boston, MA 021110-1307, USA.
17  */
18
19 #ifndef __BTRFS_TRANSACTION_H__
20 #define __BTRFS_TRANSACTION_H__
21
22 #include "kerncompat.h"
23 #include "ctree.h"
24
25 #include "messages.h"
26
27 struct btrfs_trans_handle {
28         u64 transid;
29         u64 alloc_exclude_start;
30         u64 alloc_exclude_nr;
31         unsigned long blocks_reserved;
32         unsigned long blocks_used;
33         struct btrfs_block_group_cache *block_group;
34 };
35
36 static inline struct btrfs_trans_handle *
37 btrfs_start_transaction(struct btrfs_root *root, int num_blocks)
38 {
39         struct btrfs_fs_info *fs_info = root->fs_info;
40         struct btrfs_trans_handle *h = malloc(sizeof(*h));
41
42         if (!h)
43                 return ERR_PTR(-ENOMEM);
44         if (root->commit_root) {
45                 error("commit_root aleady set when starting transaction");
46                 kfree(h);
47                 return ERR_PTR(-EINVAL);
48         }
49         if (fs_info->running_transaction) {
50                 error("attempt to start transaction over already running one");
51                 kfree(h);
52                 return ERR_PTR(-EINVAL);
53         }
54         fs_info->running_transaction = h;
55         fs_info->generation++;
56         h->transid = fs_info->generation;
57         h->alloc_exclude_start = 0;
58         h->alloc_exclude_nr = 0;
59         h->blocks_reserved = num_blocks;
60         h->blocks_used = 0;
61         h->block_group = NULL;
62         root->last_trans = h->transid;
63         root->commit_root = root->node;
64         extent_buffer_get(root->node);
65         return h;
66 }
67
68 #endif