From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cong Wang Subject: Re: [v3 Patch 2/2] mlx4: add dynamic LRO disable support Date: Mon, 21 Jun 2010 10:23:00 +0800 Message-ID: <4C1ECD04.20609@redhat.com> References: <20100618105935.6496.4725.sendpatchset@localhost.localdomain> <20100618105945.6496.67648.sendpatchset@localhost.localdomain> <20100618110910.GA4347@dhcp-lab-161.englab.brq.redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: netdev@vger.kernel.org, nhorman@redhat.com, herbert.xu@redhat.com, bhutchings@solarflare.com, Ramkrishna.Vepa@exar.com, davem@davemloft.net To: Stanislaw Gruszka Return-path: Received: from mx1.redhat.com ([209.132.183.28]:29706 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757767Ab0FUCTB (ORCPT ); Sun, 20 Jun 2010 22:19:01 -0400 In-Reply-To: <20100618110910.GA4347@dhcp-lab-161.englab.brq.redhat.com> Sender: netdev-owner@vger.kernel.org List-ID: On 06/18/10 19:09, Stanislaw Gruszka wrote: > On Fri, Jun 18, 2010 at 06:55:38AM -0400, Amerigo Wang wrote: >> +static int mlx4_ethtool_op_set_flags(struct net_device *dev, u32 data) >> +{ >> + struct mlx4_en_priv *priv = netdev_priv(dev); >> + struct mlx4_en_dev *mdev = priv->mdev; >> + int rc = 0; >> + int changed = 0; >> + >> + if (data& (ETH_FLAG_NTUPLE | ETH_FLAG_RXHASH)) >> + return -EOPNOTSUPP; >> + >> + if (data& ETH_FLAG_LRO) { >> + if (!(dev->features& NETIF_F_LRO)) >> + changed = 1; >> + } else if (dev->features& NETIF_F_LRO) { >> + changed = 1; >> + mdev->profile.num_lro = 0; > > Everything fine except that, what for you zero num_lro value? > > If we set it to zero it will stay zero and we will not create > proper number of lro descriptors in mlx4_en_create_rx_ring() > (called from mlx4_en_set_ringparam() -> mlx4_en_alloc_resources()) > when someone enable LRO again on. > Huh? Isn't ->num_lro which controls LRO of mlx4 driver?