diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2005-09-13 12:11:05 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2005-09-13 12:11:05 +0000 |
commit | e3f2075749379ea50fffb8a4590e38627fa43f9e (patch) | |
tree | df3f7b04bb39448b6d6e366416436ac1e1a38694 /sys/dev/isa | |
parent | 9f7a761da34f11b13cabc604aeef3eb6b708481f (diff) |
replace the node hash table with a red-black tree. this fixes some
bugs in the node table (like duplicate nodes in hostap mode), we get
rid of possible hash collisions, and it simplifies the code.
tested by many, ok damien@, jsg@
Diffstat (limited to 'sys/dev/isa')
-rw-r--r-- | sys/dev/isa/if_an_isapnp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/isa/if_an_isapnp.c b/sys/dev/isa/if_an_isapnp.c index e4ad19bc992..e9de12f726b 100644 --- a/sys/dev/isa/if_an_isapnp.c +++ b/sys/dev/isa/if_an_isapnp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_an_isapnp.c,v 1.4 2005/06/20 22:42:29 jsg Exp $ */ +/* $OpenBSD: if_an_isapnp.c,v 1.5 2005/09/13 12:11:03 reyk Exp $ */ /* * Copyright (c) 2003 Michael Shalayeff @@ -31,6 +31,7 @@ #include <sys/device.h> #include <sys/timeout.h> #include <sys/socket.h> +#include <sys/mbuf.h> #include <net/if.h> #include <net/if_dl.h> |