From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrey Chilikin Subject: [PATCH] i40e: fix wrong copy-paste which led to one bit missing from I40E_INSET_FLEX_PAYLOAD mask Date: Wed, 2 Dec 2015 15:52:13 +0000 Message-ID: <1449071533-9023-1-git-send-email-andrey.chilikin@intel.com> To: dev@dpdk.org Return-path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id C17175913 for ; Wed, 2 Dec 2015 16:52:29 +0100 (CET) List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Fix wrong copy-paste which led to one bit missing from I40E_INSET_FLEX_PAYLOAD mask Signed-off-by: Andrey Chilikin --- drivers/net/i40e/i40e_ethdev.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i40e_ethdev.c index 5cd6e88..7e03a1f 100644 --- a/drivers/net/i40e/i40e_ethdev.c +++ b/drivers/net/i40e/i40e_ethdev.c @@ -194,7 +194,7 @@ #define I40E_INSET_FLEX_PAYLOAD_W8 0x8000000000000000ULL #define I40E_INSET_FLEX_PAYLOAD \ (I40E_INSET_FLEX_PAYLOAD_W1 | I40E_INSET_FLEX_PAYLOAD_W2 | \ - I40E_INSET_FLEX_PAYLOAD_W3 | I40E_INSET_FLEX_PAYLOAD_W3 | \ + I40E_INSET_FLEX_PAYLOAD_W3 | I40E_INSET_FLEX_PAYLOAD_W4 | \ I40E_INSET_FLEX_PAYLOAD_W5 | I40E_INSET_FLEX_PAYLOAD_W6 | \ I40E_INSET_FLEX_PAYLOAD_W7 | I40E_INSET_FLEX_PAYLOAD_W8) -- 1.7.4.1