[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1365175872.3405.3.camel@edumazet-glaptop>
Date: Fri, 05 Apr 2013 08:31:12 -0700
From: Eric Dumazet <eric.dumazet@...il.com>
To: Erik Hugne <erik.hugne@...csson.com>
Cc: sathya.perla@...lex.com, subbu.seetharaman@...lex.com,
ajit.khaparde@...lex.com, netdev@...r.kernel.org
Subject: Re: be2net: GRO for non-inet protocols
On Fri, 2013-04-05 at 08:28 -0700, Eric Dumazet wrote:
> /* Process the RX completion indicated by rxcp when GRO is disabled */
> -static void be_rx_compl_process(struct be_rx_obj *rxo,
> +static void be_rx_compl_process(struct be_rx_obj *rxo, struct napi_struct *napi,
> struct be_rx_compl_info *rxcp)
> {
> struct be_adapter *adapter = rxo->adapter;
> @@ -1385,7 +1385,7 @@ static void be_rx_compl_process(struct be_rx_obj *rxo,
> if (rxcp->vlanf)
> __vlan_hwaccel_put_tag(skb, rxcp->vlan_tag);
>
> - netif_receive_skb(skb);
> + napi_gro_receive(&napi, skb);
That would be : napi_gro_receive(napi, skb);
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists