I just took a look (not in-depth though) at the patch and can't follow
your conclusion. It is not ready to go into svn in its current state.
Even though it is called a radix trie it doesn't look like one. On first
impression it looks much more like an AA tree. A radix trie, which we
already have in our network routing table code, is a variable length
(mask) tree that does path compression. See net/radix.[ch] and
http://en.wikipedia.org/wiki/Radix_tree
Extrapolating in a complete guesstimating way from the lookup function
I'd say it may perform only slightly better in an ideal case than a RB
tree but with the added overall expense of requiring external memory to
store the index and branch nodes. This is probably a nasty disadvantage.
--
Andre
_______________________________________________
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org"