Home
last modified time | relevance | path

Searched refs:list_head (Results 1 – 19 of 19) sorted by relevance

/dpdk/drivers/common/dpaax/
H A Ddpaa_list.h14 struct list_head { struct
15 struct list_head *prev; argument
16 struct list_head *next; argument
20 struct list_head n = { \
27 struct list_head *__p298 = (p); \
35 const struct list_head *__p298 = (p); \
42 struct list_head *__p298 = (p); \
43 struct list_head *__l298 = (l); \
51 struct list_head *__p298 = (p); \
52 struct list_head *__l298 = (l); \
H A Ddpaa_of.h78 struct list_head list; /**< Nodes within a parent subdir */
87 struct list_head subdirs;
88 struct list_head files;
89 struct list_head linear;
/dpdk/drivers/net/ice/base/
H A Dice_osdep.h337 #define INIT_LIST_HEAD(list_head) LIST_INIT(list_head) argument
345 #define LIST_ADD(entry, list_head) LIST_INSERT_HEAD(list_head, entry, next) argument
389 #define LIST_REPLACE_INIT(list_head, head) do { \ argument
390 (head)->lh_first = (list_head)->lh_first; \
391 INIT_LIST_HEAD(list_head); \
396 #define INIT_HLIST_HEAD(list_head) INIT_LIST_HEAD(list_head) argument
397 #define HLIST_ADD_HEAD(entry, list_head) LIST_ADD(entry, list_head) argument
398 #define HLIST_EMPTY(list_head) LIST_EMPTY(list_head) argument
H A Dice_switch.c4447 struct LIST_HEAD_TYPE *list_head; in ice_find_vsi_list_entry() local
4449 list_head = &recp_list->filt_rules; in ice_find_vsi_list_entry()
4453 LIST_FOR_EACH_ENTRY(list_itr, list_head, in ice_find_vsi_list_entry()
9244 struct LIST_HEAD_TYPE *list_head; in ice_rem_adv_rule_by_id() local
9280 struct LIST_HEAD_TYPE *list_head; in ice_rem_adv_rule_for_vsi() local
9337 if (LIST_EMPTY(list_head)) in ice_replay_fltr()
9345 LIST_REPLACE_INIT(list_head, &l_head); in ice_replay_fltr()
9430 struct LIST_HEAD_TYPE *list_head) in ice_replay_vsi_fltr() argument
9437 if (LIST_EMPTY(list_head)) in ice_replay_vsi_fltr()
9492 struct LIST_HEAD_TYPE *list_head) in ice_replay_vsi_adv_rule() argument
[all …]
/dpdk/drivers/dma/dpaa/
H A Ddpaa_qdma.h158 struct list_head list;
163 struct list_head comp_used;
164 struct list_head comp_free;
184 struct list_head list;
/dpdk/drivers/bus/dpaa/include/
H A Dfman.h342 struct list_head bpool_list;
344 struct list_head node;
356 struct list_head node;
381 struct list_head node;
387 extern const struct list_head *fman_if_list;
H A Dnetcfg.h16 struct list_head *list;
H A Dfsl_qman.h1273 struct list_head node;
/dpdk/app/test/
H A Dtest_malloc.c691 } *list_head = NULL; in test_random_alloc_free() local
715 entry->next = list_head; in test_random_alloc_free()
718 list_head = entry; in test_random_alloc_free()
724 while (list_head){ in test_random_alloc_free()
725 struct mem_list *entry = list_head; in test_random_alloc_free()
726 list_head = list_head->next; in test_random_alloc_free()
/dpdk/drivers/bus/dpaa/base/qbman/
H A Dbman_priv.h57 struct list_head list;
H A Ddpaa_sys.c17 struct list_head node;
H A Dqman_priv.h105 struct list_head list;
H A Dqman.c88 struct list_head cgr_cbs;
/dpdk/kernel/linux/kni/
H A Dkni_dev.h45 struct list_head list;
H A Dkni_misc.c61 struct list_head kni_list_head;
/dpdk/doc/guides/prog_guide/
H A Drib_lib.rst153 list_insert(nh_table[active_nh_from_rd].list_head, route);
159 route = get_next(nh_table[fail_nh].list_head, route);
/dpdk/drivers/net/ice/
H A Dice_ethdev.c914 struct LIST_HEAD_TYPE list_head; in ice_add_mac_filter() local
925 INIT_LIST_HEAD(&list_head); in ice_add_mac_filter()
944 ret = ice_add_mac(hw, &list_head); in ice_add_mac_filter()
973 struct LIST_HEAD_TYPE list_head; in ice_remove_mac_filter() local
982 INIT_LIST_HEAD(&list_head); in ice_remove_mac_filter()
1039 struct LIST_HEAD_TYPE list_head; in ice_add_vlan_filter() local
1058 INIT_LIST_HEAD(&list_head); in ice_add_vlan_filter()
1109 struct LIST_HEAD_TYPE list_head; in ice_remove_vlan_filter() local
1123 INIT_LIST_HEAD(&list_head); in ice_remove_vlan_filter()
2034 struct LIST_HEAD_TYPE list_head; in ice_vsi_config_sw_lldp() local
[all …]
H A Dice_switch_filter.c1967 struct LIST_HEAD_TYPE *list_head; in ice_switch_redirect() local
1988 list_head = &sw->recp_list[rdata->rid].filt_rules; in ice_switch_redirect()
1989 LIST_FOR_EACH_ENTRY(list_itr, list_head, in ice_switch_redirect()
/dpdk/drivers/bus/dpaa/base/fman/
H A Dfman.c35 const struct list_head *fman_if_list = &__ifs;