aboutsummaryrefslogtreecommitdiffstats
path: root/lib/librte_ethdev/ethdev_private.h
blob: 7b787bf97f0372269f2403dc2a22446081d0dd24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* SPDX-License-Identifier: BSD-3-Clause
 * Copyright(c) 2018 Gaëtan Rivet
 */

#ifndef _RTE_ETH_PRIVATE_H_
#define _RTE_ETH_PRIVATE_H_

#include "rte_ethdev.h"

#ifdef __cplusplus
extern "C" {
#endif

/*
 * Convert rte_eth_dev pointer to port id.
 * NULL will be translated to RTE_MAX_ETHPORTS.
 */
uint16_t eth_dev_to_id(const struct rte_eth_dev *dev);

/* Generic rte_eth_dev comparison function. */
typedef int (*rte_eth_cmp_t)(const struct rte_eth_dev *, const void *);

/* Generic rte_eth_dev iterator. */
struct rte_eth_dev *
eth_find_device(const struct rte_eth_dev *_start, rte_eth_cmp_t cmp,
		const void *data);

/* Parse devargs value for representor parameter. */
typedef int (*rte_eth_devargs_callback_t)(char *str, void *data);
int rte_eth_devargs_parse_list(char *str, rte_eth_devargs_callback_t callback,
	void *data);
int rte_eth_devargs_parse_representor_ports(char *str, void *data);

#ifdef __cplusplus
}
#endif

#endif /* _RTE_ETH_PRIVATE_H_ */