diff options
author | Paul Mundt <lethal@linux-sh.org> | 2011-02-01 19:38:49 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2011-02-01 19:38:49 +0900 |
commit | 17292ecc07857bb16737c340dda289ab9d219e05 (patch) | |
tree | 214a208af0e4826b835cd4ee770c7f1573c86b04 /lib/rbtree.c | |
parent | cd7bb53ff88a5acef942a87c1d04e6211b6470dc (diff) | |
parent | 0ce08870b8a4895044b6cf2bbdc774a6faaa3656 (diff) | |
download | lwn-17292ecc07857bb16737c340dda289ab9d219e05.tar.gz lwn-17292ecc07857bb16737c340dda289ab9d219e05.zip |
Merge branch 'sh/urgent' into sh-latest
Diffstat (limited to 'lib/rbtree.c')
-rw-r--r-- | lib/rbtree.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/rbtree.c b/lib/rbtree.c index 4693f79195d3..a16be19a1305 100644 --- a/lib/rbtree.c +++ b/lib/rbtree.c @@ -315,6 +315,7 @@ void rb_augment_insert(struct rb_node *node, rb_augment_f func, void *data) rb_augment_path(node, func, data); } +EXPORT_SYMBOL(rb_augment_insert); /* * before removing the node, find the deepest node on the rebalance path @@ -340,6 +341,7 @@ struct rb_node *rb_augment_erase_begin(struct rb_node *node) return deepest; } +EXPORT_SYMBOL(rb_augment_erase_begin); /* * after removal, update the tree to account for the removed entry @@ -350,6 +352,7 @@ void rb_augment_erase_end(struct rb_node *node, rb_augment_f func, void *data) if (node) rb_augment_path(node, func, data); } +EXPORT_SYMBOL(rb_augment_erase_end); /* * This function returns the first node (in sort order) of the tree. |