| Yan Zheng | 31153d8 | 2008-07-28 15:32:19 -0400 | [diff] [blame] | 1 | /* | 
|  | 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 Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 20 | #include <linux/slab.h> | 
| Chris Mason | bd56b30 | 2009-02-04 09:27:02 -0500 | [diff] [blame] | 21 | #include <linux/sort.h> | 
| Yan Zheng | 31153d8 | 2008-07-28 15:32:19 -0400 | [diff] [blame] | 22 | #include "ctree.h" | 
|  | 23 | #include "ref-cache.h" | 
|  | 24 | #include "transaction.h" | 
|  | 25 |  | 
| Chris Mason | 017e536 | 2008-07-28 15:32:51 -0400 | [diff] [blame] | 26 | static struct rb_node *tree_insert(struct rb_root *root, u64 bytenr, | 
| Yan Zheng | 31153d8 | 2008-07-28 15:32:19 -0400 | [diff] [blame] | 27 | struct rb_node *node) | 
|  | 28 | { | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 29 | struct rb_node **p = &root->rb_node; | 
|  | 30 | struct rb_node *parent = NULL; | 
| Yan Zheng | 31153d8 | 2008-07-28 15:32:19 -0400 | [diff] [blame] | 31 | struct btrfs_leaf_ref *entry; | 
| Yan Zheng | 31153d8 | 2008-07-28 15:32:19 -0400 | [diff] [blame] | 32 |  | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 33 | while (*p) { | 
| Yan Zheng | 31153d8 | 2008-07-28 15:32:19 -0400 | [diff] [blame] | 34 | parent = *p; | 
|  | 35 | entry = rb_entry(parent, struct btrfs_leaf_ref, rb_node); | 
| Yan Zheng | 31153d8 | 2008-07-28 15:32:19 -0400 | [diff] [blame] | 36 |  | 
| Chris Mason | 017e536 | 2008-07-28 15:32:51 -0400 | [diff] [blame] | 37 | if (bytenr < entry->bytenr) | 
| Yan Zheng | 31153d8 | 2008-07-28 15:32:19 -0400 | [diff] [blame] | 38 | p = &(*p)->rb_left; | 
| Chris Mason | 017e536 | 2008-07-28 15:32:51 -0400 | [diff] [blame] | 39 | else if (bytenr > entry->bytenr) | 
| Yan Zheng | 31153d8 | 2008-07-28 15:32:19 -0400 | [diff] [blame] | 40 | p = &(*p)->rb_right; | 
|  | 41 | else | 
|  | 42 | return parent; | 
|  | 43 | } | 
| Yan | bcc63ab | 2008-07-30 16:29:20 -0400 | [diff] [blame] | 44 |  | 
| Yan Zheng | 31153d8 | 2008-07-28 15:32:19 -0400 | [diff] [blame] | 45 | entry = rb_entry(node, struct btrfs_leaf_ref, rb_node); | 
| Yan Zheng | 31153d8 | 2008-07-28 15:32:19 -0400 | [diff] [blame] | 46 | rb_link_node(node, parent, p); | 
|  | 47 | rb_insert_color(node, root); | 
|  | 48 | return NULL; | 
|  | 49 | } | 
|  | 50 |  | 
| Chris Mason | 017e536 | 2008-07-28 15:32:51 -0400 | [diff] [blame] | 51 | static struct rb_node *tree_search(struct rb_root *root, u64 bytenr) | 
| Yan Zheng | 31153d8 | 2008-07-28 15:32:19 -0400 | [diff] [blame] | 52 | { | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 53 | struct rb_node *n = root->rb_node; | 
| Yan Zheng | 31153d8 | 2008-07-28 15:32:19 -0400 | [diff] [blame] | 54 | struct btrfs_leaf_ref *entry; | 
| Yan Zheng | 31153d8 | 2008-07-28 15:32:19 -0400 | [diff] [blame] | 55 |  | 
| Chris Mason | d397712 | 2009-01-05 21:25:51 -0500 | [diff] [blame] | 56 | while (n) { | 
| Yan Zheng | 31153d8 | 2008-07-28 15:32:19 -0400 | [diff] [blame] | 57 | entry = rb_entry(n, struct btrfs_leaf_ref, rb_node); | 
|  | 58 | WARN_ON(!entry->in_tree); | 
|  | 59 |  | 
| Chris Mason | 017e536 | 2008-07-28 15:32:51 -0400 | [diff] [blame] | 60 | if (bytenr < entry->bytenr) | 
| Yan Zheng | 31153d8 | 2008-07-28 15:32:19 -0400 | [diff] [blame] | 61 | n = n->rb_left; | 
| Chris Mason | 017e536 | 2008-07-28 15:32:51 -0400 | [diff] [blame] | 62 | else if (bytenr > entry->bytenr) | 
| Yan Zheng | 31153d8 | 2008-07-28 15:32:19 -0400 | [diff] [blame] | 63 | n = n->rb_right; | 
|  | 64 | else | 
|  | 65 | return n; | 
|  | 66 | } | 
|  | 67 | return NULL; | 
|  | 68 | } |