Re: [ovs-dev] [net-next RFC 00/14] Convert OVS tunnel vports to use regular net_devices

2015-06-02 Thread Eric W. Biederman
Thomas Graf writes: > This is the first series in a greater effort to bring the scalability > and programmability advantages of OVS to the rest of the network > stack and to get rid of as much OVS specific code as possible. > > This first series focuses on getting rid of OVS tunnel vports and use

Re: [ovs-dev] [patch net-next RFC 07/12] dsa: implement ndo_swdev_get_id

2014-08-23 Thread Eric W. Biederman
Jiri Pirko writes: > Thu, Aug 21, 2014 at 06:56:13PM CEST, f.faine...@gmail.com wrote: >>2014-08-21 9:19 GMT-07:00 Jiri Pirko : >>> Signed-off-by: Jiri Pirko >>> --- >>> net/dsa/Kconfig | 2 +- >>> net/dsa/slave.c | 16 >>> 2 files changed, 17 insertions(+), 1 deletion(-) >>>

Re: [ovs-dev] [PATCH 02/16] user_ns: use new hashtable implementation

2012-08-14 Thread Eric W. Biederman
Sasha Levin writes: > On 08/15/2012 03:08 AM, Eric W. Biederman wrote: >>> I can offer the following: I'll write a small module that will hash >>> 1...1 >>> > into a hashtable which uses 7 bits (just like user_ns) and post the >>> > di

Re: [ovs-dev] [PATCH 02/16] user_ns: use new hashtable implementation

2012-08-14 Thread Eric W. Biederman
Sasha Levin writes: > On 08/15/2012 01:52 AM, Eric W. Biederman wrote: >> Sasha Levin writes: >> >>> Switch user_ns to use the new hashtable implementation. This reduces the >>> amount of >>> generic unrelated code in user_ns. >> >>

Re: [ovs-dev] [PATCH 02/16] user_ns: use new hashtable implementation

2012-08-14 Thread Eric W. Biederman
Sasha Levin writes: > Switch user_ns to use the new hashtable implementation. This reduces the > amount of > generic unrelated code in user_ns. Two concerns here. 1) When adding a new entry you recompute the hash where previously that was not done. I believe that will slow down adding of ne