Re: [PATCH v10 net-next 1/6] net: add napi_id and hash

2013-06-10 Thread Willem de Bruijn
On Mon, Jun 10, 2013 at 5:22 AM, Eric Dumazet wrote: > On Mon, 2013-06-10 at 11:39 +0300, Eliezer Tamir wrote: >> Adds a napi_id and a hashing mechanism to lookup a napi by id. >> This will be used by subsequent patches to implement low latency >> Ethernet device polling. >> Based on a code

Re: [PATCH v10 net-next 1/6] net: add napi_id and hash

2013-06-10 Thread Eric Dumazet
On Mon, 2013-06-10 at 11:39 +0300, Eliezer Tamir wrote: > Adds a napi_id and a hashing mechanism to lookup a napi by id. > This will be used by subsequent patches to implement low latency > Ethernet device polling. > Based on a code sample by Eric Dumazet. > > Signed-off-by: Eliezer Tamir > ---

[PATCH v10 net-next 1/6] net: add napi_id and hash

2013-06-10 Thread Eliezer Tamir
Adds a napi_id and a hashing mechanism to lookup a napi by id. This will be used by subsequent patches to implement low latency Ethernet device polling. Based on a code sample by Eric Dumazet. Signed-off-by: Eliezer Tamir --- include/linux/netdevice.h | 29 ++

[PATCH v10 net-next 1/6] net: add napi_id and hash

2013-06-10 Thread Eliezer Tamir
Adds a napi_id and a hashing mechanism to lookup a napi by id. This will be used by subsequent patches to implement low latency Ethernet device polling. Based on a code sample by Eric Dumazet. Signed-off-by: Eliezer Tamir eliezer.ta...@linux.intel.com --- include/linux/netdevice.h | 29

Re: [PATCH v10 net-next 1/6] net: add napi_id and hash

2013-06-10 Thread Eric Dumazet
On Mon, 2013-06-10 at 11:39 +0300, Eliezer Tamir wrote: Adds a napi_id and a hashing mechanism to lookup a napi by id. This will be used by subsequent patches to implement low latency Ethernet device polling. Based on a code sample by Eric Dumazet. Signed-off-by: Eliezer Tamir

Re: [PATCH v10 net-next 1/6] net: add napi_id and hash

2013-06-10 Thread Willem de Bruijn
On Mon, Jun 10, 2013 at 5:22 AM, Eric Dumazet eric.duma...@gmail.com wrote: On Mon, 2013-06-10 at 11:39 +0300, Eliezer Tamir wrote: Adds a napi_id and a hashing mechanism to lookup a napi by id. This will be used by subsequent patches to implement low latency Ethernet device polling. Based on