version 1.3, 2015/04/20 01:42:42
|
version 1.10, 2016/04/19 07:48:32
|
Line 12 Ryota Ozaki (ozaki-r)
|
Line 12 Ryota Ozaki (ozaki-r)
|
|
|
## TODO |
## TODO |
* MP-safe networking |
* MP-safe networking |
|
* [done] bridge |
* bpf |
* bpf |
* vlan |
* vlan |
* ifnet |
* ifnet |
* IP forwarding |
* IP forwarding |
* Add ATF tests for networking |
* Add ATF tests for networking |
|
* Already added many tests but not enough yet |
* DTrace |
* DTrace |
* Support more providers |
* Support more providers |
|
* Support more ARM boards |
* Kill kvm(3) users |
* Kill kvm(3) users |
* only netstat? |
* only netstat? |
* Enlarge ifnet#if_flags |
* Enlarge ifnet#if_flags |
* Restructure ifnet |
* Restructure ifnet |
* http://www.mistimed.com/home/BSDNetworking.pdf |
* http://www.mistimed.com/home/BSDNetworking.pdf |
* Refactore ether_output |
* [done] Refactore ether_output |
* http://comments.gmane.org/gmane.os.netbsd.devel.network/13403 |
* http://comments.gmane.org/gmane.os.netbsd.devel.network/13403 |
* Pull out routing lookups from ether_output |
* Pull out routing lookups from ether_output |
* Aggregate interface packet counting |
* Aggregate interface packet counting |
* Counting the number of packets and amount of data at different places is a horrible idea |
* Counting the number of packets and amount of data at different places is a horrible idea |
* Do bpf_mtap at a common place |
* Do bpf_mtap at a common place |
* Regain it from device drivers |
* Regain it from device drivers |
* Make if_link_state_change softint |
* [done] Make if_link_state_change softint |
* It can be called from H/W interrupt context while it does many things including sleep-able operations |
* It can be called from H/W interrupt context while it does many things including sleep-able operations |
* PR kern/49793 |
* PR kern/49793 |
* Make netipsec a rump component |
* Make netipsec a rump component |
|
* vioif(4) |
|
* [done] MSI-X support |
|
* Multi-queue support |
|
* [done] Nexthop cache separation |
|
* http://www.netbsd.org/~matt/smpnet.html#nexthop |
|
* softint-based RX (and TX?) |
|
* Polling mode |
|
* Replace the routing table |
|
* with what? |
|
* Use Poptrie or SAIL for fast lookup |