net/hinic: fix LRO

PMD driver should change the max_lro_pkt_size parameter into lro_wqe_num
that used for hardware, and when packets are coalesced by hardware,
PKT_RX_LRO flag should be set in the RX mbuf.

Fixes: 9d4878ef08 ("net/hinic: support LRO offload")
Cc: stable@dpdk.org

Signed-off-by: Xiaoyun Wang <cloud.wangxiaoyun@huawei.com>
This commit is contained in:
Xiaoyun Wang 2020-03-17 23:01:11 +08:00 committed by Ferruh Yigit
parent 25d257facd
commit 9d02f40d65
2 changed files with 43 additions and 16 deletions

View File

@ -736,6 +736,7 @@ hinic_dev_infos_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *info)
info->max_mac_addrs = HINIC_MAX_UC_MAC_ADDRS;
info->min_mtu = HINIC_MIN_MTU_SIZE;
info->max_mtu = HINIC_MAX_MTU_SIZE;
info->max_lro_pkt_size = HINIC_MAX_LRO_SIZE;
hinic_get_speed_capa(dev, &info->speed_capa);
info->rx_queue_offload_capa = 0;
@ -811,12 +812,10 @@ static int hinic_config_rx_mode(struct hinic_nic_dev *nic_dev, u32 rx_mode_ctrl)
return 0;
}
static int hinic_rxtx_configure(struct rte_eth_dev *dev)
{
int err;
struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
bool lro_en;
int err;
/* rx configure, if rss enable, need to init default configuration */
err = hinic_rx_configure(dev);
@ -833,18 +832,6 @@ static int hinic_rxtx_configure(struct rte_eth_dev *dev)
goto set_rx_mode_fail;
}
/* config lro */
lro_en = dev->data->dev_conf.rxmode.offloads & DEV_RX_OFFLOAD_TCP_LRO ?
true : false;
err = hinic_set_rx_lro(nic_dev->hwdev, lro_en, lro_en,
HINIC_LRO_WQE_NUM_DEFAULT);
if (err) {
PMD_DRV_LOG(ERR, "%s lro failed, err: %d",
lro_en ? "Enable" : "Disable", err);
goto set_rx_mode_fail;
}
return HINIC_OK;
set_rx_mode_fail:

View File

@ -656,6 +656,10 @@ int hinic_rx_configure(struct rte_eth_dev *dev)
struct rte_eth_rss_conf rss_conf =
dev->data->dev_conf.rx_adv_conf.rss_conf;
int err;
bool lro_en;
int max_lro_size;
int lro_wqe_num;
int buf_size;
if (nic_dev->flags & ETH_MQ_RX_RSS_FLAG) {
if (rss_conf.rss_hf == 0) {
@ -681,15 +685,42 @@ int hinic_rx_configure(struct rte_eth_dev *dev)
if (err)
goto rx_csum_ofl_err;
/* config lro */
lro_en = dev->data->dev_conf.rxmode.offloads & DEV_RX_OFFLOAD_TCP_LRO ?
true : false;
max_lro_size = dev->data->dev_conf.rxmode.max_lro_pkt_size;
buf_size = nic_dev->hwdev->nic_io->rq_buf_size;
lro_wqe_num = max_lro_size / buf_size ? (max_lro_size / buf_size) : 1;
err = hinic_set_rx_lro(nic_dev->hwdev, lro_en, lro_en, lro_wqe_num);
if (err) {
PMD_DRV_LOG(ERR, "%s %s lro failed, err: %d, max_lro_size: %d",
dev->data->name, lro_en ? "Enable" : "Disable",
err, max_lro_size);
goto set_rx_lro_err;
}
return 0;
set_rx_lro_err:
rx_csum_ofl_err:
rss_config_err:
hinic_destroy_num_qps(nic_dev);
return HINIC_ERROR;
}
static void hinic_rx_remove_lro(struct hinic_nic_dev *nic_dev)
{
int err;
err = hinic_set_rx_lro(nic_dev->hwdev, false, false, 0);
if (err)
PMD_DRV_LOG(ERR, "%s disable LRO failed",
nic_dev->proc_dev_name);
}
void hinic_rx_remove_configure(struct rte_eth_dev *dev)
{
struct hinic_nic_dev *nic_dev = HINIC_ETH_DEV_TO_PRIVATE_NIC_DEV(dev);
@ -698,6 +729,8 @@ void hinic_rx_remove_configure(struct rte_eth_dev *dev)
hinic_rss_deinit(nic_dev);
hinic_destroy_num_qps(nic_dev);
}
hinic_rx_remove_lro(nic_dev);
}
void hinic_free_all_rx_mbufs(struct hinic_rxq *rxq)
@ -956,7 +989,7 @@ u16 hinic_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts, u16 nb_pkts)
volatile struct hinic_rq_cqe *rx_cqe;
u16 rx_buf_len, pkts = 0;
u16 sw_ci, ci_mask, wqebb_cnt = 0;
u32 pkt_len, status, vlan_len;
u32 pkt_len, status, vlan_len, lro_num;
u64 rx_bytes = 0;
struct hinic_rq_cqe cqe;
u32 offload_type, rss_hash;
@ -1024,6 +1057,13 @@ u16 hinic_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts, u16 nb_pkts)
rxm->ol_flags |= hinic_rx_rss_hash(offload_type, rss_hash,
&rxm->hash.rss);
/* lro offload */
lro_num = HINIC_GET_RX_NUM_LRO(cqe.status);
if (unlikely(lro_num != 0)) {
rxm->ol_flags |= PKT_RX_LRO;
rxm->tso_segsz = pkt_len / lro_num;
}
/* 6. clear done bit */
rx_cqe->status = 0;