From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp1.linux-foundation.org (smtp1.linux-foundation.org [140.211.169.13]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "smtp.linux-foundation.org", Issuer "CA Cert Signing Authority" (verified OK)) by ozlabs.org (Postfix) with ESMTPS id 629F3DDF32 for ; Fri, 21 Mar 2008 08:55:29 +1100 (EST) Date: Thu, 20 Mar 2008 14:54:56 -0700 From: Andrew Morton To: Thomas Klein Subject: Re: [PATCH] ehea: Fix IPv6 support Message-Id: <20080320145456.f0b6d101.akpm@linux-foundation.org> In-Reply-To: <200803191355.44266.osstklei@de.ibm.com> References: <200803191355.44266.osstklei@de.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Cc: jeff@garzik.org, themann@de.ibm.com, netdev@vger.kernel.org, hering2@de.ibm.com, linux-kernel@vger.kernel.org, linuxppc-dev@ozlabs.org, raisch@de.ibm.com, stefan.roscher@de.ibm.com, stable@kernel.org List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Wed, 19 Mar 2008 13:55:43 +0100 Thomas Klein wrote: > Indicate that HEA calculates IPv4 checksums only > > Signed-off-by: Thomas Klein > > --- > diff -Nurp -X dontdiff linux-2.6.25-rc6/drivers/net/ehea/ehea.h patched_kernel/drivers/net/ehea/ehea.h > --- linux-2.6.25-rc6/drivers/net/ehea/ehea.h 2008-03-17 00:32:14.000000000 +0100 > +++ patched_kernel/drivers/net/ehea/ehea.h 2008-03-19 08:58:07.000000000 +0100 > @@ -40,7 +40,7 @@ > #include > > #define DRV_NAME "ehea" > -#define DRV_VERSION "EHEA_0087" > +#define DRV_VERSION "EHEA_0089" > > /* eHEA capability flags */ > #define DLPAR_PORT_ADD_REM 1 > diff -Nurp -X dontdiff linux-2.6.25-rc6/drivers/net/ehea/ehea_main.c patched_kernel/drivers/net/ehea/ehea_main.c > --- linux-2.6.25-rc6/drivers/net/ehea/ehea_main.c 2008-03-17 00:32:14.000000000 +0100 > +++ patched_kernel/drivers/net/ehea/ehea_main.c 2008-03-19 08:58:07.000000000 +0100 > @@ -3108,7 +3108,7 @@ struct ehea_port *ehea_setup_single_port > dev->vlan_rx_add_vid = ehea_vlan_rx_add_vid; > dev->vlan_rx_kill_vid = ehea_vlan_rx_kill_vid; > dev->features = NETIF_F_SG | NETIF_F_FRAGLIST | NETIF_F_TSO > - | NETIF_F_HIGHDMA | NETIF_F_HW_CSUM | NETIF_F_HW_VLAN_TX > + | NETIF_F_HIGHDMA | NETIF_F_IP_CSUM | NETIF_F_HW_VLAN_TX > | NETIF_F_HW_VLAN_RX | NETIF_F_HW_VLAN_FILTER > | NETIF_F_LLTX; > dev->tx_timeout = &ehea_tx_watchdog; That looks like a pretty significant fix to me? Should it be backported to 2.6.24.x?