Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 18 May 2015 06:03:22 +0000 (UTC)
From:      Andrew Rybchenko <arybchik@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r283049 - head/sys/dev/sfxge
Message-ID:  <201505180603.t4I63MJe081486@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: arybchik
Date: Mon May 18 06:03:21 2015
New Revision: 283049
URL: https://svnweb.freebsd.org/changeset/base/283049

Log:
  sfxge: allow to disable checksum offloads over VLAN
  
  It just affects capabilities of the created VLAN interface.
  
  Sponsored by:   Solarflare Communications, Inc.
  MFC after:      2 days
  Differential Revision: https://reviews.freebsd.org/D2563

Modified:
  head/sys/dev/sfxge/sfxge.c

Modified: head/sys/dev/sfxge/sfxge.c
==============================================================================
--- head/sys/dev/sfxge/sfxge.c	Mon May 18 06:02:22 2015	(r283048)
+++ head/sys/dev/sfxge/sfxge.c	Mon May 18 06:03:21 2015	(r283049)
@@ -65,7 +65,7 @@ __FBSDID("$FreeBSD$");
 		   IFCAP_JUMBO_MTU | IFCAP_LRO |			\
 		   IFCAP_VLAN_HWTSO | IFCAP_LINKSTATE | IFCAP_HWSTATS)
 #define	SFXGE_CAP_ENABLE SFXGE_CAP
-#define	SFXGE_CAP_FIXED (IFCAP_VLAN_MTU | IFCAP_VLAN_HWCSUM |		\
+#define	SFXGE_CAP_FIXED (IFCAP_VLAN_MTU |				\
 			 IFCAP_JUMBO_MTU | IFCAP_LINKSTATE | IFCAP_HWSTATS)
 
 MALLOC_DEFINE(M_SFXGE, "sfxge", "Solarflare 10GigE driver");



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