Re: [PATCH v7 net-next 4/5] ixgbe: Add support for ndo_ll_poll

2013-05-30 Thread Cong Wang
On Thu, May 30, 2013 at 7:41 PM, Eliezer Tamir wrote: > +#else /* CONFIG_NET_LL_RX_POLL */ > +static inline void ixgbe_qv_init_lock(struct ixgbe_q_vector *q_vector) > +{ > +} > + > +static inline int ixgbe_qv_lock_napi(struct ixgbe_q_vector *q_vector) > +{ > + return true; > +} > + > +s

[PATCH v7 net-next 4/5] ixgbe: Add support for ndo_ll_poll

2013-05-30 Thread Eliezer Tamir
Add the ixgbe driver code implementing ndo_ll_poll. Adds ndo_ll_poll method and locking between it and the napi poll. When receiving a packet we use skb_mark_ll to record the napi it came from. Signed-off-by: Alexander Duyck Signed-off-by: Jesse Brandeburg Tested-by: Willem de Bruijn Signed-off