DPDK  2.0.0
Data Structures | Typedefs | Enumerations | Functions
rte_dev.h File Reference
#include <sys/queue.h>

Data Structures

struct  rte_driver

Typedefs

typedef int( rte_dev_init_t )(const char *name, const char *args)
typedef int( rte_dev_uninit_t )(const char *name)

Enumerations

enum  pmd_type

Functions

 TAILQ_HEAD (rte_driver_list, rte_driver)
void rte_eal_driver_register (struct rte_driver *driver)
void rte_eal_driver_unregister (struct rte_driver *driver)
int rte_eal_dev_init (void)
int rte_eal_vdev_init (const char *name, const char *args)
int rte_eal_vdev_uninit (const char *name)

Detailed Description

RTE PMD Driver Registration Interface

This file manages the list of device drivers.

Typedef Documentation

typedef int( rte_dev_init_t)(const char *name, const char *args)

Initialization function called for each device driver once.

typedef int( rte_dev_uninit_t)(const char *name)

Uninitilization function called for each device driver once.

Enumeration Type Documentation

enum pmd_type

Driver type enumeration

Function Documentation

int rte_eal_dev_init ( void  )

Initalize all the registered drivers in this process

void rte_eal_driver_register ( struct rte_driver driver)

Register a device driver.

Parameters
driverA pointer to a rte_dev structure describing the driver to be registered.
void rte_eal_driver_unregister ( struct rte_driver driver)

Unregister a device driver.

Parameters
driverA pointer to a rte_dev structure describing the driver to be unregistered.
int rte_eal_vdev_init ( const char *  name,
const char *  args 
)

Initialize a driver specified by name.

Parameters
nameThe pointer to a driver name to be initialized.
argsThe pointer to arguments used by driver initialization.
Returns
0 on success, negative on error
int rte_eal_vdev_uninit ( const char *  name)

Uninitalize a driver specified by name.

Parameters
nameThe pointer to a driver name to be initialized.
Returns
0 on success, negative on error
TAILQ_HEAD ( rte_driver_list  ,
rte_driver   
)

Double linked list of device drivers.