From mboxrd@z Thu Jan 1 00:00:00 1970 From: "David S. Miller" Subject: Re: [PATCH] select appropriate skb size in tcp_sendmsg when TSO is used Date: Tue, 26 Oct 2004 17:03:44 -0700 Sender: netdev-bounce@oss.sgi.com Message-ID: <20041026170344.262bb3ec.davem@davemloft.net> References: <20041020163510.6d13e9c7.davem@davemloft.net> <20041026111912.GA18095@gondor.apana.org.au> <20041026235126.GA4733@gondor.apana.org.au> <417EE3BB.6040902@pobox.com> <20041027000724.GA4869@gondor.apana.org.au> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: jgarzik@pobox.com, thomas.spatzier@de.ibm.com, netdev@oss.sgi.com Return-path: To: Herbert Xu In-Reply-To: <20041027000724.GA4869@gondor.apana.org.au> Errors-to: netdev-bounce@oss.sgi.com List-Id: netdev.vger.kernel.org On Wed, 27 Oct 2004 10:07:24 +1000 Herbert Xu wrote: > On Tue, Oct 26, 2004 at 07:54:35PM -0400, Jeff Garzik wrote: > > Herbert Xu wrote: > > >+static int __ethtool_set_sg(struct net_device *dev, u32 data) > > >+{ > > >+ int err; > > >+ > > >+ if (!data && dev->ethtool_ops->set_tso) { > > >+ err = dev->ethtool_ops->set_tso(dev, 0); > > >+ if (err) > > >+ return err; > > >+ } > > >+ > > >+ return dev->ethtool_ops->set_sg(dev, data); > > >+} > > > > you want to disable tx-csum also > > IMHO it is valid to disable SG without disabling checksums, no? Yes and no. SG support requires TX csum support. See the tests we make at register_netdev() time. So as long as you enforce that rule, which I believe you are, things are fine.