The patch titled lib/rbtree.c: export the augmented rbtree helper functions has been removed from the -mm tree. Its filename was lib-rbtreec-export-the-augmented-rbtree-helper-functions.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: lib/rbtree.c: export the augmented rbtree helper functions From: Andreas Gruenbacher <agruen@xxxxxxxxxx> 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@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/rbtree.c | 3 +++ 1 file changed, 3 insertions(+) diff -puN lib/rbtree.c~lib-rbtreec-export-the-augmented-rbtree-helper-functions lib/rbtree.c --- a/lib/rbtree.c~lib-rbtreec-export-the-augmented-rbtree-helper-functions +++ a/lib/rbtree.c @@ -315,6 +315,7 @@ void rb_augment_insert(struct rb_node *n 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(s 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 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. _ Patches currently in -mm which might be from agruen@xxxxxxxxxx are origin.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html