Worst case performance and "impossibly unlikely" conditions
Posted Jan 12, 2012 1:52 UTC (Thu) by
wahern (subscriber, #37304)
In reply to:
Worst case performance and "impossibly unlikely" conditions by cmccabe
Parent article:
Denial of service via hash collisions
It's easy enough to test. NetBSD, FreeBSD, and OpenBSD all have <sys/tree.h>, containing preprocessor based splay and red-black tree implementations which, other than the algorithm, are implemented almost identically. It's self contained, so you can download the single header file. man 3 tree for the API.
Those kernels tend to rely on RB trees fairly heavily. OpenBSD uses <sys/tree.h> for almost everything, including PF and the VM. It's perhaps not as fast as the radix, etc., trees in Linux, but it's simple and is unlikely to create any surprises in the future.
I wrote a left-leaning RB tree variant which is a drop-in replacement, except the prefix is LLRB instead of RB. LLRBs have a simpler algorithm, so it's easier to hack on if necessary.
(
Log in to post comments)