31 lines
1.1 KiB
Diff
31 lines
1.1 KiB
Diff
|
|
From 51ce4165992b99416a89951c403b9ed1907ff67c Mon Sep 17 00:00:00 2001
|
||
|
|
From: Huisong Li <lihuisong@huawei.com>
|
||
|
|
Date: Fri, 3 Nov 2023 18:27:59 +0800
|
||
|
|
Subject: [PATCH 393/394] net/hns3: report maximum buffer size
|
||
|
|
|
||
|
|
[ upstream commit a276af95fa52ea4e97d173f6f0afe6cdec6949ba ]
|
||
|
|
|
||
|
|
This patch reports the maximum buffer size hardware supported.
|
||
|
|
|
||
|
|
Signed-off-by: Huisong Li <lihuisong@huawei.com>
|
||
|
|
Acked-by: Chengwen Feng <fengchengwen@huawei.com>
|
||
|
|
---
|
||
|
|
drivers/net/hns3/hns3_common.c | 1 +
|
||
|
|
1 file changed, 1 insertion(+)
|
||
|
|
|
||
|
|
diff --git a/drivers/net/hns3/hns3_common.c b/drivers/net/hns3/hns3_common.c
|
||
|
|
index 7a49f0d11d..0d6b2c65af 100644
|
||
|
|
--- a/drivers/net/hns3/hns3_common.c
|
||
|
|
+++ b/drivers/net/hns3/hns3_common.c
|
||
|
|
@@ -59,6 +59,7 @@ hns3_dev_infos_get(struct rte_eth_dev *eth_dev, struct rte_eth_dev_info *info)
|
||
|
|
info->max_tx_queues = hw->tqps_num;
|
||
|
|
info->max_rx_pktlen = HNS3_MAX_FRAME_LEN; /* CRC included */
|
||
|
|
info->min_rx_bufsize = HNS3_MIN_BD_BUF_SIZE;
|
||
|
|
+ info->max_rx_bufsize = HNS3_MAX_BD_BUF_SIZE;
|
||
|
|
info->max_mtu = info->max_rx_pktlen - HNS3_ETH_OVERHEAD;
|
||
|
|
info->max_lro_pkt_size = HNS3_MAX_LRO_SIZE;
|
||
|
|
info->rx_offload_capa = (RTE_ETH_RX_OFFLOAD_IPV4_CKSUM |
|
||
|
|
--
|
||
|
|
2.23.0
|
||
|
|
|