From patchwork Thu Aug 15 17:46:26 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Michael S. Tsirkin" X-Patchwork-Id: 267417 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 0235C2C00DF for ; Fri, 16 Aug 2013 03:45:00 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758513Ab3HORoq (ORCPT ); Thu, 15 Aug 2013 13:44:46 -0400 Received: from mx1.redhat.com ([209.132.183.28]:42516 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752690Ab3HORop (ORCPT ); Thu, 15 Aug 2013 13:44:45 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r7FHigUq015922 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 15 Aug 2013 13:44:42 -0400 Received: from redhat.com (vpn1-7-162.ams2.redhat.com [10.36.7.162]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with SMTP id r7FHicYS023123; Thu, 15 Aug 2013 13:44:39 -0400 Date: Thu, 15 Aug 2013 20:46:26 +0300 From: "Michael S. Tsirkin" To: linux-kernel@vger.kernel.org Cc: "David S. Miller" , Jason Wang , "Michael S. Tsirkin" , Eric Dumazet , Vlad Yasevich , netdev@vger.kernel.org Subject: [PATCH] macvtap: fix up direction in comment on offloading Message-ID: <20130815174626.GA10874@redhat.com> MIME-Version: 1.0 Content-Disposition: inline X-Scanned-By: MIMEDefang 2.68 on 10.5.11.24 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org It speaks about receiving frames, so while it says GSO, it really means GRO. Signed-off-by: Michael S. Tsirkin Reviewed-by: Amos Kong --- drivers/net/macvtap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/macvtap.c b/drivers/net/macvtap.c index a98fb0e..a98ed9f 100644 --- a/drivers/net/macvtap.c +++ b/drivers/net/macvtap.c @@ -1047,7 +1047,7 @@ static int set_offload(struct macvtap_queue *q, unsigned long arg) * accept TSO frames and turning it off means that user space * does not support TSO. * For macvtap, we have to invert it to mean the same thing. - * When user space turns off TSO, we turn off GSO/LRO so that + * When user space turns off TSO, we turn off GRO/LRO so that * user-space will not receive TSO frames. */ if (feature_mask & (NETIF_F_TSO | NETIF_F_TSO6 | NETIF_F_UFO))