DPDK
19.05.0
Main Page
Related Pages
Data Structures
Files
Examples
File List
Globals
lib
librte_eal
common
include
rte_devargs.h
Go to the documentation of this file.
1
/* SPDX-License-Identifier: BSD-3-Clause
2
* Copyright 2014 6WIND S.A.
3
*/
4
5
#ifndef _RTE_DEVARGS_H_
6
#define _RTE_DEVARGS_H_
7
19
#ifdef __cplusplus
20
extern
"C"
{
21
#endif
22
23
#include <stdio.h>
24
#include <sys/queue.h>
25
#include <rte_compat.h>
26
#include <
rte_bus.h
>
27
31
enum
rte_devtype
{
32
RTE_DEVTYPE_WHITELISTED_PCI,
33
RTE_DEVTYPE_BLACKLISTED_PCI,
34
RTE_DEVTYPE_VIRTUAL,
35
};
36
47
struct
rte_devargs
{
49
TAILQ_ENTRY
(
rte_devargs
) next;
51
enum
rte_devtype
type
;
53
enum
rte_dev_policy
policy
;
55
char
name
[RTE_DEV_NAME_MAX_LEN];
56
RTE_STD_C11
57
union
{
59
char
*
args
;
60
const
char
*drv_str;
61
};
62
struct
rte_bus
*
bus
;
63
struct
rte_class
*
cls
;
64
const
char
*
bus_str
;
65
const
char
*
cls_str
;
66
const
char
*
data
;
67
};
68
101
int
102
rte_devargs_parse
(
struct
rte_devargs
*da,
const
char
*dev);
103
137
int
138
rte_devargs_parsef
(
struct
rte_devargs
*da,
139
const
char
*format, ...)
140
__attribute__((format(printf, 2, 0)));
141
154
__rte_experimental
155
int
156
rte_devargs_insert
(struct
rte_devargs
**da);
157
171
int
rte_devargs_add
(enum
rte_devtype
devtype, const
char
*devargs_str);
172
186
__rte_experimental
187
int
rte_devargs_remove
(struct
rte_devargs
*devargs);
188
198
unsigned
int
199
rte_devargs_type_count
(enum
rte_devtype
devtype);
200
207
void
rte_devargs_dump
(FILE *f);
208
225
struct
rte_devargs
*
226
rte_devargs_next
(const
char
*busname, const struct
rte_devargs
*start);
227
231
#define RTE_EAL_DEVARGS_FOREACH(busname, da) \
232
for (da = rte_devargs_next(busname, NULL); \
233
da != NULL; \
234
da = rte_devargs_next(busname, da)) \
235
236
#ifdef __cplusplus
237
}
238
#endif
239
240
#endif
/* _RTE_DEVARGS_H_ */
Generated by
1.8.1.2