transaction.h (3063d29f2a4d4a4e9fa1ec77c124514f287c6da7) transaction.h (d1310b2e0cd98eb1348553e69b73827b436dca7b)
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,

--- 15 unchanged lines hidden (view full) ---

24struct btrfs_transaction {
25 u64 transid;
26 unsigned long num_writers;
27 unsigned long num_joined;
28 int in_commit;
29 int use_count;
30 int commit_done;
31 struct list_head list;
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,

--- 15 unchanged lines hidden (view full) ---

24struct btrfs_transaction {
25 u64 transid;
26 unsigned long num_writers;
27 unsigned long num_joined;
28 int in_commit;
29 int use_count;
30 int commit_done;
31 struct list_head list;
32 struct extent_map_tree dirty_pages;
32 struct extent_io_tree dirty_pages;
33 unsigned long start_time;
34 struct btrfs_ordered_inode_tree ordered_inode_tree;
35 wait_queue_head_t writer_wait;
36 wait_queue_head_t commit_wait;
37 struct list_head pending_snapshots;
38};
39
40struct btrfs_trans_handle {

--- 64 unchanged lines hidden ---
33 unsigned long start_time;
34 struct btrfs_ordered_inode_tree ordered_inode_tree;
35 wait_queue_head_t writer_wait;
36 wait_queue_head_t commit_wait;
37 struct list_head pending_snapshots;
38};
39
40struct btrfs_trans_handle {

--- 64 unchanged lines hidden ---