From patchwork Fri Jun 24 03:38:38 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Shan Wei X-Patchwork-Id: 101715 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 2D67AB6F90 for ; Fri, 24 Jun 2011 13:38:05 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751436Ab1FXDhr (ORCPT ); Thu, 23 Jun 2011 23:37:47 -0400 Received: from cn.fujitsu.com ([222.73.24.84]:64135 "EHLO song.cn.fujitsu.com" rhost-flags-OK-FAIL-OK-OK) by vger.kernel.org with ESMTP id S1751374Ab1FXDho (ORCPT ); Thu, 23 Jun 2011 23:37:44 -0400 Received: from tang.cn.fujitsu.com (tang.cn.fujitsu.com [10.167.250.3]) by song.cn.fujitsu.com (Postfix) with ESMTP id 09634170121; Fri, 24 Jun 2011 11:37:36 +0800 (CST) Received: from mailserver.fnst.cn.fujitsu.com (tang.cn.fujitsu.com [127.0.0.1]) by tang.cn.fujitsu.com (8.14.3/8.13.1) with ESMTP id p5O3bZHP027630; Fri, 24 Jun 2011 11:37:35 +0800 Received: from [10.167.225.31] ([10.167.225.31]) by mailserver.fnst.cn.fujitsu.com (Lotus Domino Release 8.5.1FP4) with ESMTP id 2011062411371050-659589 ; Fri, 24 Jun 2011 11:37:10 +0800 Message-ID: <4E0406BE.50900@cn.fujitsu.com> Date: Fri, 24 Jun 2011 11:38:38 +0800 From: Shan Wei User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.17) Gecko/20110516 Thunderbird/3.1.10 MIME-Version: 1.0 To: =?UTF-8?B?5Y2V5Y2r?= , David Miller , netdev , Eric Dumazet , =?UTF-8?B?TWljaGHFgiBNaXJvc8WCYXc=?= , "therbert@google.com" , Ben Hutchings Subject: [RFC][NET-NEXT PATCH 2/2] net: Add GSO to vlan_features initialization X-MIMETrack: Itemize by SMTP Server on mailserver/fnst(Release 8.5.1FP4|July 25, 2010) at 2011-06-24 11:37:10, Serialize by Router on mailserver/fnst(Release 8.5.1FP4|July 25, 2010) at 2011-06-24 11:37:10, Serialize complete at 2011-06-24 11:37:10 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org This patch is not a bug fix. Just add GSO to vlan_features initialization, and update comments. Signed-off-by: Shan Wei --- net/core/dev.c | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/net/core/dev.c b/net/core/dev.c index 6b6ef14..becc1e5 100644 --- a/net/core/dev.c +++ b/net/core/dev.c @@ -5478,11 +5478,12 @@ int register_netdevice(struct net_device *dev) dev->features |= NETIF_F_NOCACHE_COPY; } - /* Enable GRO and NETIF_F_HIGHDMA for vlans by default, - * vlan_dev_init() will do the dev->features check, so these features - * are enabled only if supported by underlying device. + /* Enable GSO, GRO and NETIF_F_HIGHDMA for vlans by default, + * vlan_dev_fix_features() will do the features check, + * so NETIF_F_HIGHDMA feature is enabled only if supported + * by underlying device. */ - dev->vlan_features |= (NETIF_F_GRO | NETIF_F_HIGHDMA); + dev->vlan_features |= (NETIF_F_SOFT_FEATURES | NETIF_F_HIGHDMA); ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev); ret = notifier_to_errno(ret);