From owner-svn-src-head@FreeBSD.ORG Tue Jul 13 12:46:57 2010 Return-Path: Delivered-To: svn-src-head@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0BA881065672; Tue, 13 Jul 2010 12:46:57 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from cell.glebius.int.ru (glebius.int.ru [81.19.64.117]) by mx1.freebsd.org (Postfix) with ESMTP id 89C588FC1B; Tue, 13 Jul 2010 12:46:56 +0000 (UTC) Received: from cell.glebius.int.ru (localhost [127.0.0.1]) by cell.glebius.int.ru (8.14.4/8.14.4) with ESMTP id o6DCktpU031883; Tue, 13 Jul 2010 16:46:55 +0400 (MSD) (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by cell.glebius.int.ru (8.14.4/8.14.4/Submit) id o6DCktvh031882; Tue, 13 Jul 2010 16:46:55 +0400 (MSD) (envelope-from glebius@FreeBSD.org) X-Authentication-Warning: cell.glebius.int.ru: glebius set sender to glebius@FreeBSD.org using -f Date: Tue, 13 Jul 2010 16:46:55 +0400 From: Gleb Smirnoff To: Jack F Vogel Message-ID: <20100713124655.GG63689@FreeBSD.org> References: <201007091711.o69HBUDP096886@svn.freebsd.org> <20100713123912.GF63689@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <20100713123912.GF63689@FreeBSD.org> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r209859 - head/sys/dev/e1000 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jul 2010 12:46:57 -0000 On Tue, Jul 13, 2010 at 04:39:13PM +0400, Gleb Smirnoff wrote: T> On Fri, Jul 09, 2010 at 05:11:30PM +0000, Jack F Vogel wrote: T> J> Author: jfv T> J> Date: Fri Jul 9 17:11:29 2010 T> J> New Revision: 209859 T> J> URL: http://svn.freebsd.org/changeset/base/209859 T> J> T> J> Log: T> J> Fix of a VLAN problem by jhb, the checksum capability T> J> got lost along the way. T> J> T> J> MFC: asap T> J> T> J> Modified: T> J> head/sys/dev/e1000/if_igb.c T> J> T> J> Modified: head/sys/dev/e1000/if_igb.c T> J> ============================================================================== T> J> --- head/sys/dev/e1000/if_igb.c Fri Jul 9 16:19:51 2010 (r209858) T> J> +++ head/sys/dev/e1000/if_igb.c Fri Jul 9 17:11:29 2010 (r209859) T> J> @@ -2679,7 +2679,7 @@ igb_setup_interface(device_t dev, struct T> J> T> J> ifp->if_capabilities = ifp->if_capenable = 0; T> J> T> J> - ifp->if_capabilities = IFCAP_HWCSUM | IFCAP_VLAN_MTU; T> J> + ifp->if_capabilities = IFCAP_HWCSUM | IFCAP_VLAN_HWCSUM; T> J> ifp->if_capabilities |= IFCAP_TSO4; T> J> ifp->if_capabilities |= IFCAP_JUMBO_MTU; T> J> if (igb_header_split) T> T> And now the IFCAP_VLAN_MTU got lost along the way, didn't it? Oops, sorry. Now I read the entire file. -- Totus tuus, Glebius.