blob: 82d569cb62675c76947dfcc580db4bab8347e917 [file] [log] [blame]
Yan Zheng31153d82008-07-28 15:32:19 -04001/*
2 * Copyright (C) 2008 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#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Chris Masonbd56b302009-02-04 09:27:02 -050021#include <linux/sort.h>
Yan Zheng31153d82008-07-28 15:32:19 -040022#include "ctree.h"
23#include "ref-cache.h"
24#include "transaction.h"
25
Chris Mason017e5362008-07-28 15:32:51 -040026static struct rb_node *tree_insert(struct rb_root *root, u64 bytenr,
Yan Zheng31153d82008-07-28 15:32:19 -040027 struct rb_node *node)
28{
Chris Masond3977122009-01-05 21:25:51 -050029 struct rb_node **p = &root->rb_node;
30 struct rb_node *parent = NULL;
Yan Zheng31153d82008-07-28 15:32:19 -040031 struct btrfs_leaf_ref *entry;
Yan Zheng31153d82008-07-28 15:32:19 -040032
Chris Masond3977122009-01-05 21:25:51 -050033 while (*p) {
Yan Zheng31153d82008-07-28 15:32:19 -040034 parent = *p;
35 entry = rb_entry(parent, struct btrfs_leaf_ref, rb_node);
Yan Zheng31153d82008-07-28 15:32:19 -040036
Chris Mason017e5362008-07-28 15:32:51 -040037 if (bytenr < entry->bytenr)
Yan Zheng31153d82008-07-28 15:32:19 -040038 p = &(*p)->rb_left;
Chris Mason017e5362008-07-28 15:32:51 -040039 else if (bytenr > entry->bytenr)
Yan Zheng31153d82008-07-28 15:32:19 -040040 p = &(*p)->rb_right;
41 else
42 return parent;
43 }
Yanbcc63ab2008-07-30 16:29:20 -040044
Yan Zheng31153d82008-07-28 15:32:19 -040045 entry = rb_entry(node, struct btrfs_leaf_ref, rb_node);
Yan Zheng31153d82008-07-28 15:32:19 -040046 rb_link_node(node, parent, p);
47 rb_insert_color(node, root);
48 return NULL;
49}
50
Chris Mason017e5362008-07-28 15:32:51 -040051static struct rb_node *tree_search(struct rb_root *root, u64 bytenr)
Yan Zheng31153d82008-07-28 15:32:19 -040052{
Chris Masond3977122009-01-05 21:25:51 -050053 struct rb_node *n = root->rb_node;
Yan Zheng31153d82008-07-28 15:32:19 -040054 struct btrfs_leaf_ref *entry;
Yan Zheng31153d82008-07-28 15:32:19 -040055
Chris Masond3977122009-01-05 21:25:51 -050056 while (n) {
Yan Zheng31153d82008-07-28 15:32:19 -040057 entry = rb_entry(n, struct btrfs_leaf_ref, rb_node);
58 WARN_ON(!entry->in_tree);
59
Chris Mason017e5362008-07-28 15:32:51 -040060 if (bytenr < entry->bytenr)
Yan Zheng31153d82008-07-28 15:32:19 -040061 n = n->rb_left;
Chris Mason017e5362008-07-28 15:32:51 -040062 else if (bytenr > entry->bytenr)
Yan Zheng31153d82008-07-28 15:32:19 -040063 n = n->rb_right;
64 else
65 return n;
66 }
67 return NULL;
68}