From ec826ad5c7f97de814529d3b3bae7950f91d9a5d Mon Sep 17 00:00:00 2001 From: qingli Date: Mon, 15 Dec 2008 06:10:57 +0000 Subject: This main goals of this project are: 1. separating L2 tables (ARP, NDP) from the L3 routing tables 2. removing as much locking dependencies among these layers as possible to allow for some parallelism in the search operations 3. simplify the logic in the routing code, The most notable end result is the obsolescent of the route cloning (RTF_CLONING) concept, which translated into code reduction in both IPv4 ARP and IPv6 NDP related modules, and size reduction in struct rtentry{}. The change in design obsoletes the semantics of RTF_CLONING, RTF_WASCLONE and RTF_LLINFO routing flags. The userland applications such as "arp" and "ndp" have been modified to reflect those changes. The output from "netstat -r" shows only the routing entries. Quite a few developers have contributed to this project in the past: Glebius Smirnoff, Luigi Rizzo, Alessandro Cerri, and Andre Oppermann. And most recently: - Kip Macy revised the locking code completely, thus completing the last piece of the puzzle, Kip has also been conducting active functional testing - Sam Leffler has helped me improving/refactoring the code, and provided valuable reviews - Julian Elischer setup the perforce tree for me and has helped me maintaining that branch before the svn conversion --- sys/conf/NOTES | 2 +- sys/conf/files | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'sys/conf') diff --git a/sys/conf/NOTES b/sys/conf/NOTES index 4c66d14..6825dd4 100644 --- a/sys/conf/NOTES +++ b/sys/conf/NOTES @@ -1958,7 +1958,7 @@ device fatm #Fore PCA200E device hatm #Fore/Marconi HE155/622 device patm #IDT77252 cards (ProATM and IDT) device utopia #ATM PHY driver -options NATM #native ATM +#options NATM #native ATM options LIBMBPOOL #needed by patm, iatm diff --git a/sys/conf/files b/sys/conf/files index d09ead4..633b411 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -2172,6 +2172,7 @@ net/if_gre.c optional gre net/if_iso88025subr.c optional token net/if_lagg.c optional lagg net/if_loop.c optional loop +net/if_llatbl.c standard net/if_media.c standard net/if_mib.c standard net/if_ppp.c optional ppp -- cgit v1.1