DPDK patches and discussions
 help / color / mirror / Atom feed
From: Wei Zhao <wei.zhao1@intel.com>
To: dev@dpdk.org
Cc: wenzhuo.lu@intel.com, stable@dpdk.org, Wei Zhao <wei.zhao1@intel.com>
Subject: [dpdk-dev] [PATCH] net/ixgbe: fix mask bits register set error for FDIR
Date: Wed, 13 Jun 2018 16:12:10 +0800	[thread overview]
Message-ID: <1528877530-5133-1-git-send-email-wei.zhao1@intel.com> (raw)

MAC address bits in mask registers should be set to zero
when the is mac mask is 0xFF, otherwise if it is 0x0
these bits should be to 0x3F.

Fixes: 82fb702077f6 ("ixgbe: support new flow director modes for X550")

Signed-off-by: Wei Zhao <wei.zhao1@intel.com>
---
 drivers/net/ixgbe/ixgbe_fdir.c | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/drivers/net/ixgbe/ixgbe_fdir.c b/drivers/net/ixgbe/ixgbe_fdir.c
index 3feb815..6d97aa3 100644
--- a/drivers/net/ixgbe/ixgbe_fdir.c
+++ b/drivers/net/ixgbe/ixgbe_fdir.c
@@ -394,9 +394,15 @@ fdir_set_input_mask_x550(struct rte_eth_dev *dev)
 				IXGBE_FDIRIP6M_TNI_VNI;
 
 	if (mode == RTE_FDIR_MODE_PERFECT_TUNNEL) {
-		mac_mask = info->mask.mac_addr_byte_mask;
-		fdiripv6m |= (mac_mask << IXGBE_FDIRIP6M_INNER_MAC_SHIFT)
-				& IXGBE_FDIRIP6M_INNER_MAC;
+		mac_mask = info->mask.mac_addr_byte_mask & 0x3F;
+		if (mac_mask == 0x3F)
+			fdiripv6m &= ~IXGBE_FDIRIP6M_INNER_MAC;
+		else if (mac_mask == 0)
+			fdiripv6m |= IXGBE_FDIRIP6M_INNER_MAC;
+		else{
+			PMD_INIT_LOG(ERR, "invalid mac_addr_byte_mask");
+			return -EINVAL;
+		}
 
 		switch (info->mask.tunnel_type_mask) {
 		case 0:
-- 
2.7.5

             reply	other threads:[~2018-06-13  8:32 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-13  8:12 Wei Zhao [this message]
2018-06-14  0:52 ` Lu, Wenzhuo
2018-06-14  1:52   ` Zhao1, Wei
2018-06-14  7:21 ` [dpdk-dev] [PATCH v2] " Wei Zhao
2018-06-15  2:30   ` [dpdk-dev] [PATCH v3] " Wei Zhao
2018-06-15  3:10     ` [dpdk-dev] [PATCH v4] " Wei Zhao
2018-06-15  6:08       ` [dpdk-dev] [PATCH v5] " Wei Zhao
2018-06-19  0:57         ` Lu, Wenzhuo
2018-06-21 14:12           ` Zhang, Qi Z

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1528877530-5133-1-git-send-email-wei.zhao1@intel.com \
    --to=wei.zhao1@intel.com \
    --cc=dev@dpdk.org \
    --cc=stable@dpdk.org \
    --cc=wenzhuo.lu@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).