svn commit: r209859 - head/sys/dev/e1000

Gleb Smirnoff glebius at FreeBSD.org
Tue Jul 13 12:39:15 UTC 2010


On Fri, Jul 09, 2010 at 05:11:30PM +0000, Jack F Vogel wrote:
J> Author: jfv
J> Date: Fri Jul  9 17:11:29 2010
J> New Revision: 209859
J> URL: http://svn.freebsd.org/changeset/base/209859
J> 
J> Log:
J>   Fix of a VLAN problem by jhb, the checksum capability
J>   got lost along the way.
J>   
J>   MFC: asap
J> 
J> Modified:
J>   head/sys/dev/e1000/if_igb.c
J> 
J> Modified: head/sys/dev/e1000/if_igb.c
J> ==============================================================================
J> --- head/sys/dev/e1000/if_igb.c	Fri Jul  9 16:19:51 2010	(r209858)
J> +++ head/sys/dev/e1000/if_igb.c	Fri Jul  9 17:11:29 2010	(r209859)
J> @@ -2679,7 +2679,7 @@ igb_setup_interface(device_t dev, struct
J>  
J>  	ifp->if_capabilities = ifp->if_capenable = 0;
J>  
J> -	ifp->if_capabilities = IFCAP_HWCSUM | IFCAP_VLAN_MTU;
J> +	ifp->if_capabilities = IFCAP_HWCSUM | IFCAP_VLAN_HWCSUM;
J>  	ifp->if_capabilities |= IFCAP_TSO4;
J>  	ifp->if_capabilities |= IFCAP_JUMBO_MTU;
J>  	if (igb_header_split)

And now the IFCAP_VLAN_MTU got lost along the way, didn't it?

-- 
Totus tuus, Glebius.


More information about the svn-src-head mailing list