Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 19 May 2012 21:45:11 +0000 (UTC)
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r235664 - stable/9/sys/ofed/drivers/net/mlx4
Message-ID:  <201205192145.q4JLjBIl047232@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bz
Date: Sat May 19 21:45:11 2012
New Revision: 235664
URL: http://svn.freebsd.org/changeset/base/235664

Log:
  MFC r234618:
  
   Do not announce IPv6 TSO support yet.  The driver seems to make assumptions
   based on IPv4 header parsing only.

Modified:
  stable/9/sys/ofed/drivers/net/mlx4/en_netdev.c
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/ofed/drivers/net/mlx4/en_netdev.c
==============================================================================
--- stable/9/sys/ofed/drivers/net/mlx4/en_netdev.c	Sat May 19 21:36:52 2012	(r235663)
+++ stable/9/sys/ofed/drivers/net/mlx4/en_netdev.c	Sat May 19 21:45:11 2012	(r235664)
@@ -1561,7 +1561,7 @@ int mlx4_en_init_netdev(struct mlx4_en_d
 	dev->if_capabilities |= IFCAP_VLAN_HWCSUM | IFCAP_VLAN_HWFILTER;
 	dev->if_capabilities |= IFCAP_LINKSTATE | IFCAP_JUMBO_MTU;
 	if (mdev->LSO_support)
-		dev->if_capabilities |= IFCAP_TSO | IFCAP_VLAN_HWTSO;
+		dev->if_capabilities |= IFCAP_TSO4 | IFCAP_VLAN_HWTSO;
 	if (mdev->profile.num_lro)
 		dev->if_capabilities |= IFCAP_LRO;
 	dev->if_capenable = dev->if_capabilities;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201205192145.q4JLjBIl047232>