DPDK patches and discussions
 help / color / mirror / Atom feed
From: "Wei Hu (Xavier)" <huwei013@chinasoftinc.com>
To: <dev@dpdk.org>
Subject: [dpdk-dev] [PATCH v3 4/9] net/hns3: modify custom macro
Date: Sat, 21 Dec 2019 18:32:48 +0800	[thread overview]
Message-ID: <20191221103253.30746-5-huwei013@chinasoftinc.com> (raw)
In-Reply-To: <20191221103253.30746-1-huwei013@chinasoftinc.com>

From: Huisong Li <lihuisong@huawei.com>

This patch replaces custom macro named HNS3_MIN_FRAME_LEN for ethernet
minimum frame length with the macro named RTE_ETHER_MIN_LEN that defined
in dpdk framework.

Signed-off-by: Huisong Li <lihuisong@huawei.com>
Signed-off-by: Wei Hu (Xavier) <xavier.huwei@huawei.com>
---
 drivers/net/hns3/hns3_ethdev.c | 2 +-
 drivers/net/hns3/hns3_ethdev.h | 1 -
 drivers/net/hns3/hns3_rxtx.c   | 2 +-
 3 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/drivers/net/hns3/hns3_ethdev.c b/drivers/net/hns3/hns3_ethdev.c
index fa0af847a..4ce9515a9 100644
--- a/drivers/net/hns3/hns3_ethdev.c
+++ b/drivers/net/hns3/hns3_ethdev.c
@@ -2148,7 +2148,7 @@ hns3_set_mac_mtu(struct hns3_hw *hw, uint16_t new_mps)
 
 	req = (struct hns3_config_max_frm_size_cmd *)desc.data;
 	req->max_frm_size = rte_cpu_to_le_16(new_mps);
-	req->min_frm_size = HNS3_MIN_FRAME_LEN;
+	req->min_frm_size = RTE_ETHER_MIN_LEN;
 
 	return hns3_cmd_send(hw, &desc, 1);
 }
diff --git a/drivers/net/hns3/hns3_ethdev.h b/drivers/net/hns3/hns3_ethdev.h
index 004cd75a9..7422706a8 100644
--- a/drivers/net/hns3/hns3_ethdev.h
+++ b/drivers/net/hns3/hns3_ethdev.h
@@ -33,7 +33,6 @@
 #define HNS3_MAX_BD_SIZE		65535
 #define HNS3_MAX_TX_BD_PER_PKT		8
 #define HNS3_MAX_FRAME_LEN		9728
-#define HNS3_MIN_FRAME_LEN		64
 #define HNS3_VLAN_TAG_SIZE		4
 #define HNS3_DEFAULT_RX_BUF_LEN		2048
 
diff --git a/drivers/net/hns3/hns3_rxtx.c b/drivers/net/hns3/hns3_rxtx.c
index e1bdba972..d9219d123 100644
--- a/drivers/net/hns3/hns3_rxtx.c
+++ b/drivers/net/hns3/hns3_rxtx.c
@@ -1551,7 +1551,7 @@ hns3_prep_pkts(__rte_unused void *tx_queue, struct rte_mbuf **tx_pkts,
 		m = tx_pkts[i];
 
 		/* check the size of packet */
-		if (m->pkt_len < HNS3_MIN_FRAME_LEN) {
+		if (m->pkt_len < RTE_ETHER_MIN_LEN) {
 			rte_errno = EINVAL;
 			return i;
 		}
-- 
2.23.0


  parent reply	other threads:[~2019-12-21 10:33 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-21 10:32 [dpdk-dev] [PATCH v3 0/9] updates for hns3 PMD driver Wei Hu (Xavier)
2019-12-21 10:32 ` [dpdk-dev] [PATCH v3 1/9] net/hns3: support Rx interrupt Wei Hu (Xavier)
2019-12-21 10:32 ` [dpdk-dev] [PATCH v3 2/9] net/hns3: get link state change through mailbox Wei Hu (Xavier)
2019-12-21 10:32 ` [dpdk-dev] [PATCH v3 3/9] net/hns3: modify the return value of enable msix Wei Hu (Xavier)
2019-12-21 10:32 ` Wei Hu (Xavier) [this message]
2019-12-21 10:32 ` [dpdk-dev] [PATCH v3 5/9] net/hns3: optimize RSS's default algorithm Wei Hu (Xavier)
2019-12-21 10:32 ` [dpdk-dev] [PATCH v3 6/9] net/hns3: remove the redundant function call Wei Hu (Xavier)
2019-12-21 10:32 ` [dpdk-dev] [PATCH v3 7/9] net/hns3: remove the redundant variable initialization Wei Hu (Xavier)
2019-12-21 10:32 ` [dpdk-dev] [PATCH v3 8/9] net/hns3: remove the unnecessary assignment Wei Hu (Xavier)
2019-12-21 10:32 ` [dpdk-dev] [PATCH v3 9/9] net/hns3: remove the unused macros Wei Hu (Xavier)
2020-01-08 18:18 ` [dpdk-dev] [PATCH v3 0/9] updates for hns3 PMD driver Ferruh Yigit
2020-01-09  3:10   ` Wei Hu (Xavier)

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=20191221103253.30746-5-huwei013@chinasoftinc.com \
    --to=huwei013@chinasoftinc.com \
    --cc=dev@dpdk.org \
    /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).