From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <tiwei.bie@intel.com>
Received: from mga11.intel.com (mga11.intel.com [192.55.52.93])
 by dpdk.org (Postfix) with ESMTP id 7394B29CA;
 Thu,  7 Dec 2017 06:32:02 +0100 (CET)
Received: from orsmga003.jf.intel.com ([10.7.209.27])
 by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;
 06 Dec 2017 21:32:01 -0800
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="5.45,371,1508828400"; d="scan'208";a="10284943"
Received: from deepin-15.sh.intel.com (HELO debian-xvivbkq.sh.intel.com)
 ([10.67.104.165])
 by orsmga003.jf.intel.com with ESMTP; 06 Dec 2017 21:32:00 -0800
From: Tiwei Bie <tiwei.bie@intel.com>
To: yliu@fridaylinux.org,
	maxime.coquelin@redhat.com,
	dev@dpdk.org
Cc: stable@dpdk.org
Date: Thu,  7 Dec 2017 13:30:56 +0800
Message-Id: <20171207053059.19487-3-tiwei.bie@intel.com>
X-Mailer: git-send-email 2.13.3
In-Reply-To: <20171207053059.19487-1-tiwei.bie@intel.com>
References: <20171207053059.19487-1-tiwei.bie@intel.com>
Subject: [dpdk-stable] [PATCH 2/5] net/virtio: fix typo in LRO support
X-BeenThere: stable@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: patches for DPDK stable branches <stable.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/stable>,
 <mailto:stable-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/stable/>
List-Post: <mailto:stable@dpdk.org>
List-Help: <mailto:stable-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/stable>,
 <mailto:stable-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Thu, 07 Dec 2017 05:32:03 -0000

Fixes: 86d59b21468a ("net/virtio: support LRO")
Fixes: ec9f3d122a58 ("net/virtio: revert not claiming LRO support")
Cc: stable@dpdk.org

Signed-off-by: Tiwei Bie <tiwei.bie@intel.com>
---
 drivers/net/virtio/virtio_ethdev.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/virtio/virtio_ethdev.c b/drivers/net/virtio/virtio_ethdev.c
index 64a0cc608..9caa133c9 100644
--- a/drivers/net/virtio/virtio_ethdev.c
+++ b/drivers/net/virtio/virtio_ethdev.c
@@ -1754,7 +1754,7 @@ virtio_dev_configure(struct rte_eth_dev *dev)
 
 	if (rxmode->enable_lro &&
 		(!vtpci_with_feature(hw, VIRTIO_NET_F_GUEST_TSO4) ||
-			!vtpci_with_feature(hw, VIRTIO_NET_F_GUEST_TSO4))) {
+			!vtpci_with_feature(hw, VIRTIO_NET_F_GUEST_TSO6))) {
 		PMD_DRV_LOG(ERR,
 			"Large Receive Offload not available on this host");
 		return -ENOTSUP;
-- 
2.13.3