The patch titled forcedeth config: tso has been added to the -mm tree. Its filename is forcedeth-config-tso.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: forcedeth config: tso From: Ayaz Abdulla <aabdulla@xxxxxxxxxx> This patch allows for configurable TSO through ethtool support. Signed-off-by: Ayaz Abdulla <aabdulla@xxxxxxxxxx> Cc: Manfred Spraul <manfred@xxxxxxxxxxxxxxxx> Cc: Jeff Garzik <jeff@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/net/forcedeth.c | 16 ++++++++++++++++ 1 files changed, 16 insertions(+) diff -puN drivers/net/forcedeth.c~forcedeth-config-tso drivers/net/forcedeth.c --- 25/drivers/net/forcedeth.c~forcedeth-config-tso Fri Jun 2 15:58:02 2006 +++ 25-akpm/drivers/net/forcedeth.c Fri Jun 2 15:58:02 2006 @@ -3091,6 +3091,18 @@ static int nv_set_sg(struct net_device * return -EOPNOTSUPP; } +#ifdef NETIF_F_TSO +static int nv_set_tso(struct net_device *dev, u32 data) +{ + struct fe_priv *np = netdev_priv(dev); + + if (np->driver_data & DEV_HAS_CHECKSUM) + return ethtool_op_set_tso(dev, data); + else + return -EOPNOTSUPP; +} +#endif + static struct ethtool_ops ops = { .get_drvinfo = nv_get_drvinfo, .get_link = ethtool_op_get_link, @@ -3116,6 +3128,10 @@ static struct ethtool_ops ops = { .set_tx_csum = nv_set_tx_csum, .get_sg = ethtool_op_get_sg, .set_sg = nv_set_sg, +#ifdef NETIF_F_TSO + .get_tso = ethtool_op_get_tso, + .set_tso = nv_set_tso, +#endif }; static void nv_vlan_rx_register(struct net_device *dev, struct vlan_group *grp) _ Patches currently in -mm which might be from aabdulla@xxxxxxxxxx are implement-get--set-tso-for-forcedeth-driver.patch git-netdev-all.patch forcedeth-config-ring-sizes.patch forcedeth-config-flow-control.patch forcedeth-config-phy.patch forcedeth-config-wol.patch forcedeth-config-csum.patch forcedeth-config-tso.patch forcedeth-config-statistics.patch forcedeth-config-diagnostics.patch forcedeth-config-module-parameters.patch forcedeth-config-version.patch forcedeth-new-device-ids.patch lock-validator-forcedethc-fix.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html