X-Git-Url: https://git.karo-electronics.de/?a=blobdiff_plain;f=lib%2Frbtree.c;h=a16be19a130545ce44fc4f8c6a3f9fde866b9159;hb=91f017372a48d2d128d08964bcfeafbd98b6d739;hp=4693f79195d3bc4fd118a01cda1128c0ea1f9df9;hpb=0f54088aac3fc744cae0cbc4f021fc377e48a00c;p=mv-sheeva.git diff --git a/lib/rbtree.c b/lib/rbtree.c index 4693f79195d..a16be19a130 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.