Export the augmented rbtree helper functions

The augmented rbtree helper functions are not exported to modules right
now.

(We have started using augmented rbtrees in the upcoming version of
drbd.)

Signed-off-by: Andreas Gruenbacher <agruen@linbit.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Andreas Gruenbacher and committed by Linus Torvalds 0b6bb66d b12ece7d

+3
+3
lib/rbtree.c
··· 315 315 316 316 rb_augment_path(node, func, data); 317 317 } 318 + EXPORT_SYMBOL(rb_augment_insert); 318 319 319 320 /* 320 321 * before removing the node, find the deepest node on the rebalance path ··· 341 340 342 341 return deepest; 343 342 } 343 + EXPORT_SYMBOL(rb_augment_erase_begin); 344 344 345 345 /* 346 346 * after removal, update the tree to account for the removed entry ··· 352 350 if (node) 353 351 rb_augment_path(node, func, data); 354 352 } 353 + EXPORT_SYMBOL(rb_augment_erase_end); 355 354 356 355 /* 357 356 * This function returns the first node (in sort order) of the tree.