Home
last modified time | relevance | path

Searched refs:tap_list (Results 1 – 4 of 4) sorted by relevance

/f-stack/dpdk/examples/ip_pipeline/
H A Dtap.c24 static struct tap_list tap_list; variable
29 TAILQ_INIT(&tap_list); in tap_init()
42 TAILQ_FOREACH(tap, &tap_list, node) in tap_find()
97 TAILQ_INSERT_TAIL(&tap_list, tap, node); in tap_create()
H A Dtap.h18 TAILQ_HEAD(tap_list, tap);
/f-stack/dpdk/drivers/net/softnic/
H A Drte_eth_softnic_tap.c27 TAILQ_INIT(&p->tap_list); in softnic_tap_init()
38 tap = TAILQ_FIRST(&p->tap_list); in softnic_tap_free()
42 TAILQ_REMOVE(&p->tap_list, tap, node); in softnic_tap_free()
56 TAILQ_FOREACH(tap, &p->tap_list, node) in softnic_tap_find()
113 TAILQ_INSERT_TAIL(&p->tap_list, tap, node); in softnic_tap_create()
H A Drte_eth_softnic_internals.h622 struct softnic_tap_list tap_list; member