From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 5D785374C for ; Fri, 7 Apr 2017 10:15:08 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=intel.com; i=@intel.com; q=dns/txt; s=intel; t=1491552908; x=1523088908; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=2XmdWHYxSEMQPmHBABuAAHIZpiR2QD9flKt3dXtP+Q4=; b=sRllfyEZVA0CAasmjJMrYQulqOqVG2pS/MVq9ROX+KqnxBpcvYEe3BD5 +g5PJ6/JPzNP8ogDVfsIeVVZh2GQrw==; Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 07 Apr 2017 01:15:07 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.37,164,1488873600"; d="scan'208";a="953273444" Received: from yliu-dev.sh.intel.com ([10.239.67.162]) by orsmga003.jf.intel.com with ESMTP; 07 Apr 2017 01:15:06 -0700 From: Yuanhan Liu To: Jerin Jacob Cc: Yuanhan Liu , Sunil Kulkarni , Jianbo Liu , dpdk stable Date: Fri, 7 Apr 2017 16:11:38 +0800 Message-Id: <1491552724-3034-21-git-send-email-yuanhan.liu@linux.intel.com> X-Mailer: git-send-email 1.9.0 In-Reply-To: <1491552724-3034-1-git-send-email-yuanhan.liu@linux.intel.com> References: <1491552724-3034-1-git-send-email-yuanhan.liu@linux.intel.com> Subject: [dpdk-stable] patch 'net/i40e: fix incorrect packet index reference' has been queued to LTS release 16.11.2 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Apr 2017 08:15:08 -0000 Hi, FYI, your patch has been queued to LTS release 16.11.2 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 04/11/17. So please shout if anyone has objections. Thanks. --yliu --- >>From 8500eb33421545e96bfda1db980d826e9a79a479 Mon Sep 17 00:00:00 2001 From: Jerin Jacob Date: Sat, 4 Mar 2017 17:30:32 +0530 Subject: [PATCH] net/i40e: fix incorrect packet index reference [ upstream commit 45290ddae88f98bf355c17669aa21273e80fb19d ] Fixes: ae0eb310f253 ("net/i40e: implement vector PMD for ARM") Signed-off-by: Jerin Jacob Signed-off-by: Sunil Kulkarni Acked-by: Jianbo Liu --- drivers/net/i40e/i40e_rxtx_vec_neon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/i40e/i40e_rxtx_vec_neon.c b/drivers/net/i40e/i40e_rxtx_vec_neon.c index 011c54e..d235daa 100644 --- a/drivers/net/i40e/i40e_rxtx_vec_neon.c +++ b/drivers/net/i40e/i40e_rxtx_vec_neon.c @@ -205,7 +205,7 @@ desc_to_ptype_v(uint64x2_t descs[4], struct rte_mbuf **rx_pkts) for (i = 0; i < 4; i++) { tmp = vreinterpretq_u8_u64(vshrq_n_u64(descs[i], 30)); ptype = vgetq_lane_u8(tmp, 8); - rx_pkts[0]->packet_type = i40e_rxd_pkt_type_mapping(ptype); + rx_pkts[i]->packet_type = i40e_rxd_pkt_type_mapping(ptype); } } -- 1.9.0