e097bf80e4
The Rx function was not specified in the secondary process, causing the
secondary process to segfault in a multi-process environment.
This patch specify RX/TX functions in "dev_init" to support secondary
processes.
Fixes: 66fde1b943
("net/igc: add skeleton")
Cc: stable@dpdk.org
Signed-off-by: Zhichao Zeng <zhichaox.zeng@intel.com>
Acked-by: Qi Zhang <qi.z.zhang@intel.com>
63 lines
2.2 KiB
C
63 lines
2.2 KiB
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2020 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _IGC_TXRX_H_
|
|
#define _IGC_TXRX_H_
|
|
|
|
#include "igc_ethdev.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*
|
|
* RX/TX function prototypes
|
|
*/
|
|
void eth_igc_tx_queue_release(struct rte_eth_dev *dev, uint16_t qid);
|
|
void eth_igc_rx_queue_release(struct rte_eth_dev *dev, uint16_t qid);
|
|
void igc_dev_clear_queues(struct rte_eth_dev *dev);
|
|
int eth_igc_rx_queue_setup(struct rte_eth_dev *dev, uint16_t rx_queue_id,
|
|
uint16_t nb_rx_desc, unsigned int socket_id,
|
|
const struct rte_eth_rxconf *rx_conf,
|
|
struct rte_mempool *mb_pool);
|
|
|
|
uint32_t eth_igc_rx_queue_count(void *rx_queue);
|
|
|
|
int eth_igc_rx_descriptor_status(void *rx_queue, uint16_t offset);
|
|
|
|
int eth_igc_tx_descriptor_status(void *tx_queue, uint16_t offset);
|
|
|
|
int eth_igc_tx_queue_setup(struct rte_eth_dev *dev, uint16_t queue_idx,
|
|
uint16_t nb_desc, unsigned int socket_id,
|
|
const struct rte_eth_txconf *tx_conf);
|
|
int eth_igc_tx_done_cleanup(void *txqueue, uint32_t free_cnt);
|
|
|
|
int igc_rx_init(struct rte_eth_dev *dev);
|
|
void igc_tx_init(struct rte_eth_dev *dev);
|
|
void igc_rss_disable(struct rte_eth_dev *dev);
|
|
void
|
|
igc_hw_rss_hash_set(struct igc_hw *hw, struct rte_eth_rss_conf *rss_conf);
|
|
int igc_del_rss_filter(struct rte_eth_dev *dev);
|
|
void igc_rss_conf_set(struct igc_rss_filter *out,
|
|
const struct rte_flow_action_rss *rss);
|
|
int igc_add_rss_filter(struct rte_eth_dev *dev, struct igc_rss_filter *rss);
|
|
void igc_clear_rss_filter(struct rte_eth_dev *dev);
|
|
void eth_igc_rxq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
|
|
struct rte_eth_rxq_info *qinfo);
|
|
void eth_igc_txq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
|
|
struct rte_eth_txq_info *qinfo);
|
|
void eth_igc_vlan_strip_queue_set(struct rte_eth_dev *dev,
|
|
uint16_t rx_queue_id, int on);
|
|
uint16_t igc_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts, uint16_t nb_pkts);
|
|
uint16_t igc_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts, uint16_t nb_pkts);
|
|
uint16_t eth_igc_prep_pkts(__rte_unused void *tx_queue, struct rte_mbuf **tx_pkts,
|
|
uint16_t nb_pkts);
|
|
uint16_t igc_recv_scattered_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
|
|
uint16_t nb_pkts);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _IGC_TXRX_H_ */
|