ordered-data.h 1.5 KB
Newer Older
C
Chris Mason 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
/*
 * Copyright (C) 2007 Oracle.  All rights reserved.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public
 * License v2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 021110-1307, USA.
 */

#ifndef __BTRFS_ORDERED_DATA__
#define __BTRFS_ORDERED_DATA__

struct btrfs_ordered_inode_tree {
	rwlock_t lock;
	struct rb_root tree;
};

static inline void
btrfs_ordered_inode_tree_init(struct btrfs_ordered_inode_tree *t)
{
	rwlock_init(&t->lock);
	t->tree.rb_node = NULL;
}

int btrfs_add_ordered_inode(struct inode *inode);
int btrfs_find_del_first_ordered_inode(struct btrfs_ordered_inode_tree *tree,
36 37
				       u64 *root_objectid, u64 *objectid,
				       struct inode **inode);
C
Chris Mason 已提交
38
int btrfs_find_first_ordered_inode(struct btrfs_ordered_inode_tree *tree,
39 40
				       u64 *root_objectid, u64 *objectid,
				       struct inode **inode);
41
void btrfs_del_ordered_inode(struct inode *inode, int force);
42
int btrfs_ordered_throttle(struct btrfs_root *root, struct inode *inode);
C
Chris Mason 已提交
43
#endif