Symbol: list_entry
lib/libpmc/pmu-events/list.h
152
list_entry((ptr)->next, type, member)
lib/libpmc/pmu-events/list.h
155
list_entry((ptr)->prev, type, member)
lib/libpmc/pmu-events/list.h
161
list_entry(((ptr)->member.next), typeof(*(ptr)), member)
lib/libpmc/pmu-events/list.h
167
list_entry(((ptr)->member.prev), typeof(*(ptr)), member)
lib/libpmc/pmu-events/list.h
176
for (p = list_entry((h)->next, typeof(*p), field); &(p)->field != (h); \
lib/libpmc/pmu-events/list.h
177
p = list_entry((p)->field.next, typeof(*p), field))
lib/libpmc/pmu-events/list.h
180
for (p = list_entry((h)->next, typeof(*p), field), \
lib/libpmc/pmu-events/list.h
181
n = list_entry((p)->field.next, typeof(*p), field); &(p)->field != (h);\
lib/libpmc/pmu-events/list.h
182
p = n, n = list_entry(n->field.next, typeof(*n), field))
lib/libpmc/pmu-events/list.h
186
p = list_entry((p)->field.next, typeof(*p), field))
lib/libpmc/pmu-events/list.h
193
for (n = list_entry((pos)->member.next, typeof(*pos), member); \
lib/libpmc/pmu-events/list.h
195
pos = n, n = list_entry(n->member.next, typeof(*n), member))
lib/libpmc/pmu-events/list.h
198
for (p = list_entry((h)->prev, typeof(*p), field); &(p)->field != (h); \
lib/libpmc/pmu-events/list.h
199
p = list_entry((p)->field.prev, typeof(*p), field))
lib/libpmc/pmu-events/list.h
202
for (p = list_entry((h)->prev, typeof(*p), field), \
lib/libpmc/pmu-events/list.h
203
n = list_entry((p)->field.prev, typeof(*p), field); &(p)->field != (h); \
lib/libpmc/pmu-events/list.h
204
p = n, n = list_entry(n->field.prev, typeof(*n), field))
lib/libpmc/pmu-events/list.h
207
for (p = list_entry((p)->field.prev, typeof(*p), field); &(p)->field != (h); \
lib/libpmc/pmu-events/list.h
208
p = list_entry((p)->field.prev, typeof(*p), field))
sys/compat/linuxkpi/common/include/linux/list.h
168
list_entry((ptr)->next, type, member)
sys/compat/linuxkpi/common/include/linux/list.h
171
list_entry((ptr)->prev, type, member)
sys/compat/linuxkpi/common/include/linux/list.h
177
list_entry(((ptr)->member.next), typeof(*(ptr)), member)
sys/compat/linuxkpi/common/include/linux/list.h
183
list_entry(((ptr)->member.prev), typeof(*(ptr)), member)
sys/compat/linuxkpi/common/include/linux/list.h
192
for (p = list_entry((h)->next, typeof(*p), field); &(p)->field != (h); \
sys/compat/linuxkpi/common/include/linux/list.h
193
p = list_entry((p)->field.next, typeof(*p), field))
sys/compat/linuxkpi/common/include/linux/list.h
196
for (p = list_entry((h)->next, typeof(*p), field), \
sys/compat/linuxkpi/common/include/linux/list.h
197
n = list_entry((p)->field.next, typeof(*p), field); &(p)->field != (h);\
sys/compat/linuxkpi/common/include/linux/list.h
198
p = n, n = list_entry(n->field.next, typeof(*n), field))
sys/compat/linuxkpi/common/include/linux/list.h
202
p = list_entry((p)->field.next, typeof(*p), field))
sys/compat/linuxkpi/common/include/linux/list.h
209
for (n = list_entry((pos)->member.next, typeof(*pos), member); \
sys/compat/linuxkpi/common/include/linux/list.h
211
pos = n, n = list_entry(n->member.next, typeof(*n), member))
sys/compat/linuxkpi/common/include/linux/list.h
214
for (p = list_entry((h)->prev, typeof(*p), field); &(p)->field != (h); \
sys/compat/linuxkpi/common/include/linux/list.h
215
p = list_entry((p)->field.prev, typeof(*p), field))
sys/compat/linuxkpi/common/include/linux/list.h
218
for (p = list_entry((h)->prev, typeof(*p), field), \
sys/compat/linuxkpi/common/include/linux/list.h
219
n = list_entry((p)->field.prev, typeof(*p), field); &(p)->field != (h); \
sys/compat/linuxkpi/common/include/linux/list.h
220
p = n, n = list_entry(n->field.prev, typeof(*n), field))
sys/compat/linuxkpi/common/include/linux/list.h
223
for (p = list_entry((p)->field.prev, typeof(*p), field); &(p)->field != (h); \
sys/compat/linuxkpi/common/include/linux/list.h
224
p = list_entry((p)->field.prev, typeof(*p), field))
sys/compat/linuxkpi/common/src/linux_80211.c
1882
addr = list_entry(le, struct netdev_hw_addr, addr_list);
sys/dev/bxe/ecore_sp.c
1358
list_entry((pos)->member.next, typeof(*(pos)), member)
sys/dev/cxgbe/iw_cxgbe/cm.c
452
cle = list_entry(tmp, struct cqe_list_entry, entry);
sys/dev/cxgbe/iw_cxgbe/device.c
57
entry = list_entry(pos, struct c4iw_qid_list, entry);
sys/dev/cxgbe/iw_cxgbe/device.c
70
entry = list_entry(pos, struct c4iw_qid_list, entry);
sys/dev/cxgbe/iw_cxgbe/iw_cxgbe.h
533
mm = list_entry(pos, struct c4iw_mm_entry, entry);
sys/dev/cxgbe/iw_cxgbe/resource.c
106
entry = list_entry(uctx->cqids.next, struct c4iw_qid_list,
sys/dev/cxgbe/iw_cxgbe/resource.c
176
entry = list_entry(uctx->qpids.next, struct c4iw_qid_list,
sys/dev/drm2/drm_ioctl.c
165
r_list = list_entry(list, struct drm_map_list, head);
sys/dev/drm2/drm_linux_list.h
122
for (pos = list_entry((head)->next, __typeof(*pos), member); \
sys/dev/drm2/drm_linux_list.h
124
pos = list_entry(pos->member.next, __typeof(*pos), member))
sys/dev/drm2/drm_linux_list.h
127
for (pos = list_entry(pos->member.prev, __typeof(*pos), member); \
sys/dev/drm2/drm_linux_list.h
129
pos = list_entry(pos->member.prev, __typeof(*pos), member))
sys/dev/drm2/drm_linux_list.h
139
for (pos = list_entry((head)->next, __typeof(*pos), member), \
sys/dev/drm2/drm_linux_list.h
140
n = list_entry(pos->member.next, __typeof(*pos), member); \
sys/dev/drm2/drm_linux_list.h
142
pos = n, n = list_entry(n->member.next, __typeof(*n), member))
sys/dev/drm2/drm_linux_list.h
145
for (n = list_entry(pos->member.next, __typeof(*pos), member); \
sys/dev/drm2/drm_linux_list.h
147
pos = n, n = list_entry(n->member.next, __typeof(*n), member))
sys/dev/drm2/drm_linux_list.h
150
list_entry((ptr)->next, type, member)
sys/dev/drm2/drm_mm.c
108
list_entry(hole_node->node_list.next, struct drm_mm_node,
sys/dev/drm2/drm_mm.c
322
list_entry(node->node_list.prev, struct drm_mm_node, node_list);
sys/dev/drm2/drm_mm.c
559
prev_node = list_entry(node->node_list.prev, struct drm_mm_node,
sys/dev/drm2/drm_mm.c
618
prev_node = list_entry(node->node_list.prev, struct drm_mm_node,
sys/dev/drm2/drm_mm.c
62
list_entry(mm->unused_nodes.next,
sys/dev/drm2/drm_mm.h
95
next = entry ? list_entry(entry->node_list.next, \
sys/dev/drm2/drm_mm.h
98
next = entry ? list_entry(entry->node_list.next, \
sys/dev/drm2/drm_modes.c
901
struct drm_display_mode *a = list_entry(lh_a, struct drm_display_mode, head);
sys/dev/drm2/drm_modes.c
902
struct drm_display_mode *b = list_entry(lh_b, struct drm_display_mode, head);
sys/dev/drm2/ttm/ttm_object.c
372
ref = list_entry(list, struct ttm_ref_object, head);
sys/dev/ice/ice_common.c
895
ice_vsi_list_map_info, list_entry) {
sys/dev/ice/ice_common.c
896
LIST_DEL(&v_pos_map->list_entry);
sys/dev/ice/ice_common.c
919
list_entry) {
sys/dev/ice/ice_common.c
920
LIST_DEL(&lst_itr->list_entry);
sys/dev/ice/ice_common.c
931
list_entry) {
sys/dev/ice/ice_common.c
932
LIST_DEL(&lst_itr->list_entry);
sys/dev/ice/ice_ddp_common.c
1627
LIST_ADD(&fvl->list_entry, fv_list);
sys/dev/ice/ice_ddp_common.c
1640
list_entry) {
sys/dev/ice/ice_ddp_common.c
1641
LIST_DEL(&fvl->list_entry);
sys/dev/ice/ice_flex_pipe.c
2286
LIST_FOR_EACH_ENTRY(tmp, chgs, ice_chs_chg, list_entry)
sys/dev/ice/ice_flex_pipe.c
2326
LIST_FOR_EACH_ENTRY(tmp, chgs, ice_chs_chg, list_entry)
sys/dev/ice/ice_flex_pipe.c
2366
LIST_FOR_EACH_ENTRY(tmp, chgs, ice_chs_chg, list_entry)
sys/dev/ice/ice_flex_pipe.c
2401
LIST_FOR_EACH_ENTRY(tmp, chgs, ice_chs_chg, list_entry) {
sys/dev/ice/ice_flex_pipe.c
2452
LIST_FOR_EACH_ENTRY(tmp, chgs, ice_chs_chg, list_entry) {
sys/dev/ice/ice_flex_pipe.c
2801
LIST_ADD(&p->list_entry, chg);
sys/dev/ice/ice_flex_pipe.c
2874
LIST_FOR_EACH_ENTRY_SAFE(del, tmp, &chg, ice_chs_chg, list_entry) {
sys/dev/ice/ice_flex_pipe.c
2875
LIST_DEL(&del->list_entry);
sys/dev/ice/ice_flex_pipe.c
2964
LIST_ADD(&p->list_entry, chg);
sys/dev/ice/ice_flex_pipe.c
3093
LIST_ADD(&p->list_entry, chg);
sys/dev/ice/ice_flex_pipe.c
3109
LIST_FOR_EACH_ENTRY_SAFE(tmp, pos, chg, ice_chs_chg, list_entry)
sys/dev/ice/ice_flex_pipe.c
3111
LIST_DEL(&tmp->list_entry);
sys/dev/ice/ice_flex_pipe.c
3179
LIST_ADD(&p->list_entry, chg);
sys/dev/ice/ice_flex_pipe.c
3344
LIST_ADD(&p->list_entry, chg);
sys/dev/ice/ice_flex_pipe.c
3405
LIST_ADD(&p->list_entry, chg);
sys/dev/ice/ice_flex_pipe.c
3518
LIST_FOR_EACH_ENTRY_SAFE(del, tmp, &chg, ice_chs_chg, list_entry) {
sys/dev/ice/ice_flex_pipe.c
3519
LIST_DEL(&del->list_entry);
sys/dev/ice/ice_flex_pipe.c
3659
LIST_FOR_EACH_ENTRY_SAFE(del, tmp, &chg, ice_chs_chg, list_entry) {
sys/dev/ice/ice_flex_pipe.c
3660
LIST_DEL(&del->list_entry);
sys/dev/ice/ice_flex_pipe.c
3842
LIST_FOR_EACH_ENTRY_SAFE(del, tmp, &chg, ice_chs_chg, list_entry) {
sys/dev/ice/ice_flex_pipe.c
3843
LIST_DEL(&del->list_entry);
sys/dev/ice/ice_flex_type.h
148
struct LIST_ENTRY_TYPE list_entry;
sys/dev/ice/ice_flex_type.h
455
struct LIST_ENTRY_TYPE list_entry;
sys/dev/ice/ice_lib.c
1977
LIST_ADD(&entry->list_entry, list);
sys/dev/ice/ice_lib.c
1993
LIST_FOR_EACH_ENTRY_SAFE(e, tmp, list, ice_fltr_list_entry, list_entry) {
sys/dev/ice/ice_lib.c
1994
LIST_DEL(&e->list_entry);
sys/dev/ice/ice_lib.c
5381
LIST_FOR_EACH_ENTRY(itr, rules, ice_fltr_mgmt_list_entry, list_entry) {
sys/dev/ice/ice_lib.c
5459
LIST_FOR_EACH_ENTRY(itr, rules, ice_fltr_mgmt_list_entry, list_entry)
sys/dev/ice/ice_lib.c
5471
LIST_FOR_EACH_ENTRY(itr, rules, ice_fltr_mgmt_list_entry, list_entry) {
sys/dev/ice/ice_lib.c
5556
LIST_ADD(&vlan_entries[i].list_entry, &vlan_list);
sys/dev/ice/ice_lib.c
5621
LIST_ADD(&vlan_entries[i].list_entry, &vlan_list);
sys/dev/ice/ice_lib.c
5963
LIST_FOR_EACH_ENTRY(fm_entry, rule_head, ice_fltr_mgmt_list_entry, list_entry) {
sys/dev/ice/ice_lib.c
6032
LIST_FOR_EACH_ENTRY(fm_entry, rule_head, ice_fltr_mgmt_list_entry, list_entry) {
sys/dev/ice/ice_lib.c
6102
LIST_FOR_EACH_ENTRY(fm_entry, rule_head, ice_fltr_mgmt_list_entry, list_entry) {
sys/dev/ice/ice_lib.c
6173
LIST_FOR_EACH_ENTRY(fm_entry, rule_head, ice_fltr_mgmt_list_entry, list_entry) {
sys/dev/ice/ice_lib.c
9281
LIST_ADD(&entry->list_entry, list);
sys/dev/ice/ice_sched.c
2125
list_entry) {
sys/dev/ice/ice_sched.c
2131
ice_sched_agg_vsi_info, list_entry)
sys/dev/ice/ice_sched.c
2133
LIST_DEL(&agg_vsi_info->list_entry);
sys/dev/ice/ice_sched.c
2319
list_entry)
sys/dev/ice/ice_sched.c
2566
ice_sched_agg_vsi_info, list_entry) {
sys/dev/ice/ice_sched.c
2580
LIST_DEL(&agg_vsi_info->list_entry);
sys/dev/ice/ice_sched.c
2839
LIST_ADD(&agg_info->list_entry, &hw->agg_list);
sys/dev/ice/ice_sched.c
2907
ice_sched_agg_vsi_info, list_entry)
sys/dev/ice/ice_sched.c
2929
list_entry) {
sys/dev/ice/ice_sched.c
3003
ice_sched_agg_vsi_info, list_entry)
sys/dev/ice/ice_sched.c
3019
LIST_ADD(&agg_vsi_info->list_entry, &agg_info->agg_vsi_list);
sys/dev/ice/ice_sched.c
3036
LIST_DEL(&old_agg_vsi_info->list_entry);
sys/dev/ice/ice_sched.c
3059
ice_aqc_rl_profile_info, list_entry) {
sys/dev/ice/ice_sched.c
3206
LIST_DEL(&agg_info->list_entry);
sys/dev/ice/ice_sched.c
3782
list_entry)
sys/dev/ice/ice_sched.c
3812
ice_sched_agg_vsi_info, list_entry)
sys/dev/ice/ice_sched.c
3918
list_entry)
sys/dev/ice/ice_sched.c
4106
ice_aqc_rl_profile_info, list_entry)
sys/dev/ice/ice_sched.c
4138
LIST_ADD(&rl_prof_elem->list_entry, &hw->rl_prof_list[layer_num]);
sys/dev/ice/ice_sched.c
4310
ice_aqc_rl_profile_info, list_entry)
sys/dev/ice/ice_sched.c
5254
list_entry)
sys/dev/ice/ice_sched.c
5312
ice_sched_agg_info, list_entry)
sys/dev/ice/ice_sched.c
5736
list_entry)
sys/dev/ice/ice_sched.c
5782
list_entry) {
sys/dev/ice/ice_sched.c
5787
ice_sched_agg_vsi_info, list_entry)
sys/dev/ice/ice_sched.c
793
LIST_DEL(&rl_info->list_entry);
sys/dev/ice/ice_sched.c
815
ice_aqc_rl_profile_info, list_entry) {
sys/dev/ice/ice_sched.c
823
LIST_DEL(&rl_prof_elem->list_entry);
sys/dev/ice/ice_sched.c
844
list_entry) {
sys/dev/ice/ice_sched.c
850
ice_sched_agg_vsi_info, list_entry) {
sys/dev/ice/ice_sched.c
851
LIST_DEL(&agg_vsi_info->list_entry);
sys/dev/ice/ice_sched.c
854
LIST_DEL(&agg_info->list_entry);
sys/dev/ice/ice_sched.h
102
struct LIST_ENTRY_TYPE list_entry;
sys/dev/ice/ice_sched.h
87
struct LIST_ENTRY_TYPE list_entry;
sys/dev/ice/ice_sched.h
93
struct LIST_ENTRY_TYPE list_entry;
sys/dev/ice/ice_switch.c
1577
LIST_ADD(&v_map->list_entry, &sw->vsi_list_map_head);
sys/dev/ice/ice_switch.c
1730
LIST_ADD(&fm_entry->list_entry, &recp_list->filt_rules);
sys/dev/ice/ice_switch.c
1792
list_entry) {
sys/dev/ice/ice_switch.c
1948
list_entry) {
sys/dev/ice/ice_switch.c
1982
list_entry) {
sys/dev/ice/ice_switch.c
1997
list_entry) {
sys/dev/ice/ice_switch.c
2162
LIST_DEL(&vsi_list_info->list_entry);
sys/dev/ice/ice_switch.c
2253
LIST_DEL(&list_elem->list_entry);
sys/dev/ice/ice_switch.c
2375
list_entry) {
sys/dev/ice/ice_switch.c
2432
list_entry) {
sys/dev/ice/ice_switch.c
2465
list_entry) {
sys/dev/ice/ice_switch.c
2487
LIST_ADD(&fm_entry->list_entry, rule_head);
sys/dev/ice/ice_switch.c
2685
list_entry) {
sys/dev/ice/ice_switch.c
2730
list_entry) {
sys/dev/ice/ice_switch.c
2780
list_entry) {
sys/dev/ice/ice_switch.c
2904
ice_fltr_mgmt_list_entry, list_entry) {
sys/dev/ice/ice_switch.c
2905
LIST_DEL(&entry->list_entry);
sys/dev/ice/ice_switch.c
3012
ice_fltr_mgmt_list_entry, list_entry) {
sys/dev/ice/ice_switch.c
3041
list_entry) {
sys/dev/ice/ice_switch.c
3078
list_entry) {
sys/dev/ice/ice_switch.c
3140
list_entry) {
sys/dev/ice/ice_switch.c
3225
LIST_ADD(&tmp->list_entry, vsi_list_head);
sys/dev/ice/ice_switch.c
3256
ice_fltr_mgmt_list_entry, list_entry) {
sys/dev/ice/ice_switch.c
3344
ice_fltr_mgmt_list_entry, list_entry) {
sys/dev/ice/ice_switch.c
3413
list_entry) {
sys/dev/ice/ice_switch.c
3461
ice_fltr_mgmt_list_entry, list_entry) {
sys/dev/ice/ice_switch.c
3495
ice_fltr_list_entry, list_entry) {
sys/dev/ice/ice_switch.c
3496
LIST_DEL(&fm_entry->list_entry);
sys/dev/ice/ice_switch.c
3708
list_entry) {
sys/dev/ice/ice_switch.c
3731
ice_fltr_list_entry, list_entry) {
sys/dev/ice/ice_switch.c
3732
LIST_DEL(&list_itr->list_entry);
sys/dev/ice/ice_switch.c
3816
ice_fltr_list_entry, list_entry) {
sys/dev/ice/ice_switch.c
3817
LIST_DEL(&fm_entry->list_entry);
sys/dev/ice/ice_switch.c
3998
LIST_ADD(&fl_info.list_entry, &l_head);
sys/dev/ice/ice_switch.c
4096
LIST_ADD(&fl_info.list_entry, &l_head);
sys/dev/ice/ice_switch.c
4184
list_entry) {
sys/dev/ice/ice_switch.c
4276
list_entry) {
sys/dev/ice/ice_switch.h
343
struct LIST_ENTRY_TYPE list_entry;
sys/dev/ice/ice_switch.h
351
struct LIST_ENTRY_TYPE list_entry;
sys/dev/ice/ice_switch.h
394
struct LIST_ENTRY_TYPE list_entry;
sys/dev/ice/ice_switch.h
402
struct LIST_ENTRY_TYPE list_entry;
sys/dev/ice/ice_type.h
1030
struct LIST_ENTRY_TYPE list_entry;
sys/dev/ice/ice_vf_mbx.c
202
LIST_FOR_EACH_ENTRY(vf_info, &snap->mbx_vf, ice_mbx_vf_info, list_entry)
sys/dev/ice/ice_vf_mbx.c
456
LIST_ADD(&vf_info->list_entry, &snap->mbx_vf);
sys/dev/irdma/irdma_cm.c
1691
child_listen_node = list_entry(pos, struct irdma_cm_listener,
sys/dev/irdma/irdma_kcompat.c
362
iwqp = list_entry(list_node, struct irdma_qp, ud_list_elem);
sys/dev/irdma/irdma_utils.c
2427
cmpl_node = list_entry(list_node, struct irdma_cmpl_gen, list);
sys/dev/irdma/irdma_utils.c
408
cqp_request = list_entry(cqp->cqp_avail_reqs.next,
sys/dev/irdma/irdma_verbs.c
1457
cq_buf = list_entry(list_node, struct irdma_cq_buf, list);
sys/dev/irdma/irdma_verbs.c
283
cmpl_node = list_entry(list_node, struct irdma_cmpl_gen, list);
sys/dev/irdma/irdma_verbs.c
2975
mc_qht_el = list_entry(pos, struct mc_table_list, list);
sys/dev/mlx4/mlx4_core/icm.h
109
iter->chunk = list_entry(iter->chunk->list.next,
sys/dev/mlx4/mlx4_core/icm.h
91
NULL : list_entry(icm->chunk_list.next,
sys/dev/mlx4/mlx4_core/mlx4_pd.c
184
uar = list_entry(priv->bf_list.next, struct mlx4_uar, bf_list);
sys/dev/mlx4/mlx4_ib/mlx4_ib_alias_GUID.c
815
cb_ctx = list_entry(det->cb_list.next,
sys/dev/mlx4/mlx4_ib/mlx4_ib_mcg.c
1215
pend_req = list_entry(group->func[slave].pending.prev, struct mcast_req, group_list);
sys/dev/mlx5/mlx5_core/mlx5_cmd.c
1277
msg = list_entry(ent->head.next, struct mlx5_cmd_msg,
sys/dev/mlx5/mlx5_core/mlx5_fs_chains.c
392
struct prio *p = list_entry(pos, struct prio, list);
sys/dev/mlx5/mlx5_core/mlx5_fs_core.c
852
struct fs_node *iter = list_entry(start, struct fs_node, list);
sys/dev/mlx5/mlx5_core/mlx5_uar.c
229
up = list_entry(head->next, struct mlx5_uars_page, list);
sys/dev/mlx5/mlx5_ib/mlx5_ib_devx.c
2461
event = list_entry(ev_queue->event_list.next,
sys/dev/mthca/mthca_memfree.h
102
NULL : list_entry(icm->chunk_list.next,
sys/dev/mthca/mthca_memfree.h
120
iter->chunk = list_entry(iter->chunk->list.next,
sys/dev/qat/qat_common/adf_cfg.c
142
list_entry(list_ptr, struct adf_cfg_key_val, list);
sys/dev/qat/qat_common/adf_cfg.c
167
ptr_sec = list_entry(list, struct adf_cfg_section, list);
sys/dev/qat/qat_common/adf_cfg.c
234
list_entry(list_ptr, struct adf_cfg_key_val, list);
sys/dev/qat/qat_common/adf_cfg.c
248
ptr = list_entry(list, struct adf_cfg_section, list);
sys/dev/qat/qat_common/adf_cfg.c
263
list_entry(list, struct adf_cfg_key_val, list);
sys/dev/qat/qat_common/adf_cfg.c
279
list_entry(list, struct adf_cfg_section, list);
sys/dev/qat/qat_common/adf_cfg.c
422
ptr_sec = list_entry(list, struct adf_cfg_section, list);
sys/dev/qat/qat_common/adf_cfg_device.c
1205
sec = list_entry(list, struct adf_cfg_section, list);
sys/dev/qat/qat_common/adf_cfg_device.c
1219
sec = list_entry(list, struct adf_cfg_section, list);
sys/dev/qat/qat_common/adf_cfg_device.c
1233
sec = list_entry(list, struct adf_cfg_section, list);
sys/dev/qat/qat_common/adf_cfg_device.c
1247
sec = list_entry(list, struct adf_cfg_section, list);
sys/dev/qat/qat_common/adf_cfg_device.c
1272
sec = list_entry(list, struct adf_cfg_section, list);
sys/dev/qat/qat_common/adf_cfg_section.c
405
list_entry(list, struct adf_cfg_key_val, list);
sys/dev/qat/qat_common/adf_cfg_section.c
804
list_entry(list_ptr, struct adf_cfg_key_val, list);
sys/dev/qat/qat_common/adf_dev_mgr.c
104
list_entry(itr, struct adf_accel_dev, list);
sys/dev/qat/qat_common/adf_dev_mgr.c
160
list_entry(itr, struct adf_accel_dev, list);
sys/dev/qat/qat_common/adf_dev_mgr.c
251
list_entry(itr, struct adf_accel_dev, list);
sys/dev/qat/qat_common/adf_dev_mgr.c
278
list_entry(itr, struct adf_accel_dev, list);
sys/dev/qat/qat_common/adf_dev_mgr.c
315
struct vf_id_map *ptr = list_entry(itr, struct vf_id_map, list);
sys/dev/qat/qat_common/adf_dev_mgr.c
50
struct vf_id_map *ptr = list_entry(itr, struct vf_id_map, list);
sys/dev/qat/qat_common/adf_dev_mgr.c
73
map = list_entry(ptr, struct vf_id_map, list);
sys/dev/qat/qat_common/adf_freebsd_dev_processes.c
281
list_entry(lpos,
sys/dev/qat/qat_common/adf_freebsd_uio_cleanup.c
142
list_entry(entry, struct adf_uio_instance_rings, list);
sys/dev/qat/qat_common/adf_fw_counters.c
163
ptr = list_entry(list, struct adf_fw_counters_section, list);
sys/dev/qat/qat_common/adf_fw_counters.c
168
list_entry(list_ptr,
sys/dev/qat/qat_common/adf_fw_counters.c
277
list_entry(list_ptr, struct adf_fw_counters_val, list);
sys/dev/qat/qat_common/adf_fw_counters.c
291
ptr = list_entry(list, struct adf_fw_counters_section, list);
sys/dev/qat/qat_common/adf_fw_counters.c
310
list_entry(list, struct adf_fw_counters_section, list);
sys/dev/qat/qat_common/adf_init.c
201
service = list_entry(list_itr, struct service_hndl, list);
sys/dev/qat/qat_common/adf_init.c
392
service = list_entry(list_itr, struct service_hndl, list);
sys/dev/qat/qat_common/adf_init.c
491
service = list_entry(list_itr, struct service_hndl, list);
sys/dev/qat/qat_common/adf_init.c
578
service = list_entry(list_itr, struct service_hndl, list);
sys/dev/qat/qat_common/adf_init.c
654
service = list_entry(list_itr, struct service_hndl, list);
sys/dev/qat/qat_common/adf_init.c
727
service = list_entry(list_itr, struct service_hndl, list);
sys/dev/qat/qat_common/adf_init.c
768
service = list_entry(list_itr, struct service_hndl, list);
sys/dev/qat/qat_common/adf_init.c
799
service = list_entry(list_itr, struct service_hndl, list);
sys/dev/qlnx/qlnxe/ecore_dev.c
198
OSAL_LIST_PUSH_TAIL(&db_entry->list_entry,
sys/dev/qlnx/qlnxe/ecore_dev.c
231
list_entry,
sys/dev/qlnx/qlnxe/ecore_dev.c
236
OSAL_LIST_REMOVE_ENTRY(&db_entry->list_entry,
sys/dev/qlnx/qlnxe/ecore_dev.c
289
list_entry);
sys/dev/qlnx/qlnxe/ecore_dev.c
291
OSAL_LIST_REMOVE_ENTRY(&db_entry->list_entry,
sys/dev/qlnx/qlnxe/ecore_dev.c
315
list_entry,
sys/dev/qlnx/qlnxe/ecore_dev.c
389
list_entry,
sys/dev/qlnx/qlnxe/ecore_dev.c
97
osal_list_entry_t list_entry;
sys/dev/qlnx/qlnxe/ecore_fcoe_api.h
36
osal_list_entry_t list_entry;
sys/dev/qlnx/qlnxe/ecore_hw.c
144
struct ecore_ptt, list_entry);
sys/dev/qlnx/qlnxe/ecore_hw.c
145
OSAL_LIST_REMOVE_ENTRY(&p_ptt->list_entry,
sys/dev/qlnx/qlnxe/ecore_hw.c
170
OSAL_LIST_PUSH_HEAD(&p_ptt->list_entry, &p_hwfn->p_ptt_pool->free_list);
sys/dev/qlnx/qlnxe/ecore_hw.c
59
osal_list_entry_t list_entry;
sys/dev/qlnx/qlnxe/ecore_hw.c
98
OSAL_LIST_PUSH_HEAD(&p_pool->ptts[i].list_entry,
sys/dev/qlnx/qlnxe/ecore_iwarp.c
1094
OSAL_LIST_REMOVE_ENTRY(&ep->list_entry, &ep->listener->ep_list);
sys/dev/qlnx/qlnxe/ecore_iwarp.c
1097
OSAL_LIST_PUSH_TAIL(&ep->list_entry, list);
sys/dev/qlnx/qlnxe/ecore_iwarp.c
1302
&ep->list_entry,
sys/dev/qlnx/qlnxe/ecore_iwarp.c
1399
OSAL_LIST_PUSH_TAIL(&ep->list_entry,
sys/dev/qlnx/qlnxe/ecore_iwarp.c
1474
list_entry);
sys/dev/qlnx/qlnxe/ecore_iwarp.c
1492
OSAL_LIST_REMOVE_ENTRY(&ep->list_entry,
sys/dev/qlnx/qlnxe/ecore_iwarp.c
1578
struct ecore_iwarp_ep, list_entry);
sys/dev/qlnx/qlnxe/ecore_iwarp.c
1589
&ep->list_entry,
sys/dev/qlnx/qlnxe/ecore_iwarp.c
1649
OSAL_LIST_PUSH_TAIL(&ep->list_entry,
sys/dev/qlnx/qlnxe/ecore_iwarp.c
1933
list_entry, struct ecore_iwarp_ep) {
sys/dev/qlnx/qlnxe/ecore_iwarp.c
1970
list_entry, struct ecore_iwarp_listener) {
sys/dev/qlnx/qlnxe/ecore_iwarp.c
2701
list_entry);
sys/dev/qlnx/qlnxe/ecore_iwarp.c
2716
&mpa_buf->list_entry,
sys/dev/qlnx/qlnxe/ecore_iwarp.c
2719
OSAL_LIST_PUSH_TAIL(&mpa_buf->list_entry,
sys/dev/qlnx/qlnxe/ecore_iwarp.c
2742
list_entry);
sys/dev/qlnx/qlnxe/ecore_iwarp.c
2753
OSAL_LIST_REMOVE_ENTRY(&mpa_buf->list_entry, &iwarp_info->mpa_buf_list);
sys/dev/qlnx/qlnxe/ecore_iwarp.c
2764
OSAL_LIST_PUSH_TAIL(&mpa_buf->list_entry,
sys/dev/qlnx/qlnxe/ecore_iwarp.c
2859
OSAL_LIST_PUSH_TAIL(&ep->list_entry, &listener->ep_list);
sys/dev/qlnx/qlnxe/ecore_iwarp.c
3275
OSAL_LIST_PUSH_TAIL(&iwarp_info->mpa_bufs[i].list_entry,
sys/dev/qlnx/qlnxe/ecore_iwarp.c
3418
OSAL_LIST_REMOVE_ENTRY(&ep->list_entry,
sys/dev/qlnx/qlnxe/ecore_iwarp.c
3555
OSAL_LIST_REMOVE_ENTRY(&ep->list_entry,
sys/dev/qlnx/qlnxe/ecore_iwarp.c
3727
OSAL_LIST_PUSH_TAIL(&listener->list_entry,
sys/dev/qlnx/qlnxe/ecore_iwarp.c
3781
OSAL_LIST_REMOVE_ENTRY(&listener->list_entry,
sys/dev/qlnx/qlnxe/ecore_iwarp.c
3794
list_entry, struct ecore_iwarp_ep) {
sys/dev/qlnx/qlnxe/ecore_iwarp.c
573
OSAL_LIST_REMOVE_ENTRY(&ep->list_entry,
sys/dev/qlnx/qlnxe/ecore_iwarp.h
152
osal_list_entry_t list_entry;
sys/dev/qlnx/qlnxe/ecore_iwarp.h
191
osal_list_entry_t list_entry;
sys/dev/qlnx/qlnxe/ecore_iwarp.h
71
osal_list_entry_t list_entry;
sys/dev/qlnx/qlnxe/ecore_ll2.c
1437
OSAL_LIST_PUSH_TAIL(&p_rx->descq_array[i].list_entry,
sys/dev/qlnx/qlnxe/ecore_ll2.c
1455
OSAL_LIST_PUSH_TAIL(&p_pkt->list_entry,
sys/dev/qlnx/qlnxe/ecore_ll2.c
1543
list_entry);
sys/dev/qlnx/qlnxe/ecore_ll2.c
1547
OSAL_LIST_REMOVE_ENTRY(&p_posting_packet->list_entry, &p_rx->posting_descq);
sys/dev/qlnx/qlnxe/ecore_ll2.c
1548
OSAL_LIST_PUSH_TAIL(&p_posting_packet->list_entry, &p_rx->active_descq);
sys/dev/qlnx/qlnxe/ecore_ll2.c
1554
OSAL_LIST_PUSH_TAIL(&p_curp->list_entry,
sys/dev/qlnx/qlnxe/ecore_ll2.c
1596
list_entry);
sys/dev/qlnx/qlnxe/ecore_ll2.c
1620
OSAL_LIST_REMOVE_ENTRY(&p_curp->list_entry,
sys/dev/qlnx/qlnxe/ecore_ll2.c
1625
OSAL_LIST_PUSH_TAIL(&p_curp->list_entry,
sys/dev/qlnx/qlnxe/ecore_ll2.c
1642
OSAL_LIST_REMOVE_ENTRY(&p_curp->list_entry,
sys/dev/qlnx/qlnxe/ecore_ll2.c
170
list_entry);
sys/dev/qlnx/qlnxe/ecore_ll2.c
1754
OSAL_LIST_PUSH_TAIL(&p_ll2_conn->tx_queue.cur_send_packet->list_entry,
sys/dev/qlnx/qlnxe/ecore_ll2.c
1768
list_entry);
sys/dev/qlnx/qlnxe/ecore_ll2.c
1774
OSAL_LIST_REMOVE_ENTRY(&p_pkt->list_entry,
sys/dev/qlnx/qlnxe/ecore_ll2.c
1776
OSAL_LIST_PUSH_TAIL(&p_pkt->list_entry, &p_tx->active_descq);
sys/dev/qlnx/qlnxe/ecore_ll2.c
178
OSAL_LIST_REMOVE_ENTRY(&p_pkt->list_entry,
sys/dev/qlnx/qlnxe/ecore_ll2.c
181
OSAL_LIST_PUSH_TAIL(&p_pkt->list_entry,
sys/dev/qlnx/qlnxe/ecore_ll2.c
1827
list_entry);
sys/dev/qlnx/qlnxe/ecore_ll2.c
239
list_entry);
sys/dev/qlnx/qlnxe/ecore_ll2.c
249
OSAL_LIST_REMOVE_ENTRY(&p_pkt->list_entry,
sys/dev/qlnx/qlnxe/ecore_ll2.c
266
OSAL_LIST_PUSH_TAIL(&p_pkt->list_entry,
sys/dev/qlnx/qlnxe/ecore_ll2.c
379
list_entry);
sys/dev/qlnx/qlnxe/ecore_ll2.c
388
OSAL_LIST_REMOVE_ENTRY(&p_pkt->list_entry, &p_rx->active_descq);
sys/dev/qlnx/qlnxe/ecore_ll2.c
403
OSAL_LIST_PUSH_TAIL(&p_pkt->list_entry, &p_rx->free_descq);
sys/dev/qlnx/qlnxe/ecore_ll2.c
482
list_entry);
sys/dev/qlnx/qlnxe/ecore_ll2.c
488
OSAL_LIST_REMOVE_ENTRY(&p_pkt->list_entry,
sys/dev/qlnx/qlnxe/ecore_ll2.c
490
OSAL_LIST_PUSH_TAIL(&p_pkt->list_entry,
sys/dev/qlnx/qlnxe/ecore_ll2.c
602
list_entry);
sys/dev/qlnx/qlnxe/ecore_ll2.c
617
OSAL_LIST_REMOVE_ENTRY(&p_pkt->list_entry,
sys/dev/qlnx/qlnxe/ecore_ll2.c
629
OSAL_LIST_PUSH_TAIL(&p_pkt->list_entry,
sys/dev/qlnx/qlnxe/ecore_ll2.c
785
list_entry);
sys/dev/qlnx/qlnxe/ecore_ll2.c
796
OSAL_LIST_REMOVE_ENTRY(&p_pkt->list_entry,
sys/dev/qlnx/qlnxe/ecore_ll2.c
804
OSAL_LIST_PUSH_TAIL(&p_pkt->list_entry,
sys/dev/qlnx/qlnxe/ecore_ll2.h
50
osal_list_entry_t list_entry;
sys/dev/qlnx/qlnxe/ecore_ll2.h
64
osal_list_entry_t list_entry;
sys/dev/qlnx/qlnxe/ecore_ooo.c
162
OSAL_LIST_PUSH_TAIL(&p_ooo_info->p_isles_mem[i].list_entry,
sys/dev/qlnx/qlnxe/ecore_ooo.c
219
struct ecore_ooo_isle, list_entry);
sys/dev/qlnx/qlnxe/ecore_ooo.c
224
OSAL_LIST_REMOVE_ENTRY(&p_isle->list_entry,
sys/dev/qlnx/qlnxe/ecore_ooo.c
231
struct ecore_ooo_buffer, list_entry);
sys/dev/qlnx/qlnxe/ecore_ooo.c
238
OSAL_LIST_REMOVE_ENTRY(&p_buffer->list_entry,
sys/dev/qlnx/qlnxe/ecore_ooo.c
240
OSAL_LIST_PUSH_TAIL(&p_buffer->list_entry,
sys/dev/qlnx/qlnxe/ecore_ooo.c
243
OSAL_LIST_PUSH_TAIL(&p_isle->list_entry,
sys/dev/qlnx/qlnxe/ecore_ooo.c
265
struct ecore_ooo_isle, list_entry);
sys/dev/qlnx/qlnxe/ecore_ooo.c
270
OSAL_LIST_REMOVE_ENTRY(&p_isle->list_entry,
sys/dev/qlnx/qlnxe/ecore_ooo.c
277
struct ecore_ooo_buffer, list_entry);
sys/dev/qlnx/qlnxe/ecore_ooo.c
284
OSAL_LIST_REMOVE_ENTRY(&p_buffer->list_entry,
sys/dev/qlnx/qlnxe/ecore_ooo.c
286
OSAL_LIST_PUSH_TAIL(&p_buffer->list_entry,
sys/dev/qlnx/qlnxe/ecore_ooo.c
289
OSAL_LIST_PUSH_TAIL(&p_isle->list_entry,
sys/dev/qlnx/qlnxe/ecore_ooo.c
323
list_entry);
sys/dev/qlnx/qlnxe/ecore_ooo.c
329
OSAL_LIST_REMOVE_ENTRY(&p_buffer->list_entry,
sys/dev/qlnx/qlnxe/ecore_ooo.c
349
OSAL_LIST_PUSH_TAIL(&p_buffer->list_entry,
sys/dev/qlnx/qlnxe/ecore_ooo.c
362
struct ecore_ooo_buffer, list_entry);
sys/dev/qlnx/qlnxe/ecore_ooo.c
364
OSAL_LIST_REMOVE_ENTRY(&p_buffer->list_entry,
sys/dev/qlnx/qlnxe/ecore_ooo.c
375
OSAL_LIST_PUSH_TAIL(&p_buffer->list_entry,
sys/dev/qlnx/qlnxe/ecore_ooo.c
378
OSAL_LIST_PUSH_HEAD(&p_buffer->list_entry,
sys/dev/qlnx/qlnxe/ecore_ooo.c
392
struct ecore_ooo_buffer, list_entry);
sys/dev/qlnx/qlnxe/ecore_ooo.c
394
OSAL_LIST_REMOVE_ENTRY(&p_buffer->list_entry,
sys/dev/qlnx/qlnxe/ecore_ooo.c
432
OSAL_LIST_REMOVE_ENTRY(&p_isle->list_entry,
sys/dev/qlnx/qlnxe/ecore_ooo.c
435
OSAL_LIST_PUSH_HEAD(&p_isle->list_entry,
sys/dev/qlnx/qlnxe/ecore_ooo.c
469
struct ecore_ooo_isle, list_entry);
sys/dev/qlnx/qlnxe/ecore_ooo.c
471
OSAL_LIST_REMOVE_ENTRY(&p_isle->list_entry,
sys/dev/qlnx/qlnxe/ecore_ooo.c
487
OSAL_LIST_PUSH_HEAD(&p_buffer->list_entry, &p_isle->buffers_list);
sys/dev/qlnx/qlnxe/ecore_ooo.c
493
OSAL_LIST_PUSH_HEAD(&p_isle->list_entry, &p_archipelago->isles_list);
sys/dev/qlnx/qlnxe/ecore_ooo.c
495
OSAL_LIST_INSERT_ENTRY_AFTER(&p_isle->list_entry,
sys/dev/qlnx/qlnxe/ecore_ooo.c
496
&p_prev_isle->list_entry,
sys/dev/qlnx/qlnxe/ecore_ooo.c
517
OSAL_LIST_PUSH_HEAD(&p_buffer->list_entry,
sys/dev/qlnx/qlnxe/ecore_ooo.c
520
OSAL_LIST_PUSH_TAIL(&p_buffer->list_entry,
sys/dev/qlnx/qlnxe/ecore_ooo.c
542
OSAL_LIST_REMOVE_ENTRY(&p_right_isle->list_entry,
sys/dev/qlnx/qlnxe/ecore_ooo.c
560
OSAL_LIST_PUSH_TAIL(&p_right_isle->list_entry,
sys/dev/qlnx/qlnxe/ecore_ooo.c
78
list_entry, struct ecore_ooo_isle) {
sys/dev/qlnx/qlnxe/ecore_ooo.h
41
osal_list_entry_t list_entry;
sys/dev/qlnx/qlnxe/ecore_ooo.h
52
osal_list_entry_t list_entry;
sys/dev/qlnx/qlnxr/qlnxr_def.h
447
struct list_head list_entry;
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
1380
list_add_tail(&info->pbl_table->list_entry,
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
1386
list_for_each_entry_safe(pbl, tmp, &info->free_pbl_list, list_entry) {
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
1387
list_del(&pbl->list_entry);
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
1437
list_add_tail(&tmp->list_entry, &info->free_pbl_list);
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
4123
list_entry);
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
4124
list_del(&pbl->list_entry);
sys/dev/qlnx/qlnxr/qlnxr_verbs.c
4125
list_add_tail(&pbl->list_entry, &info->free_pbl_list);
sys/kern/subr_sfbuf.c
124
LIST_FOREACH(sf, hash_list, list_entry) {
sys/kern/subr_sfbuf.c
155
LIST_REMOVE(sf, list_entry);
sys/kern/subr_sfbuf.c
156
LIST_INSERT_HEAD(hash_list, sf, list_entry);
sys/kern/subr_sfbuf.c
187
LIST_REMOVE(sf, list_entry);
sys/kern/subr_sfbuf.c
220
LIST_FOREACH(sf, hash_list, list_entry) {
sys/ofed/drivers/infiniband/core/ib_addr.c
731
req = list_entry(req_list.next, struct addr_req, list);
sys/ofed/drivers/infiniband/core/ib_cm.c
854
work = list_entry(cm_id_priv->work_list.next, struct cm_work, list);
sys/ofed/drivers/infiniband/core/ib_cma.c
1799
dev_id_priv = list_entry(id_priv->listen_list.next,
sys/ofed/drivers/infiniband/core/ib_cma.c
4604
id_priv = list_entry(cma_dev->id_list.next,
sys/ofed/drivers/infiniband/core/ib_fmr_pool.c
449
fmr = list_entry(pool->free_list.next, struct ib_pool_fmr, list);
sys/ofed/drivers/infiniband/core/ib_iwcm.c
126
work = list_entry(cm_id_priv->work_free_list.next, struct iwcm_work,
sys/ofed/drivers/infiniband/core/ib_iwcm.c
142
kfree(list_entry(e, struct iwcm_work, free_list));
sys/ofed/drivers/infiniband/core/ib_iwcm.c
901
work = list_entry(cm_id_priv->work_list.next,
sys/ofed/drivers/infiniband/core/ib_mad.c
2311
mad_send_wr = list_entry(mad_agent_priv->wait_list.next,
sys/ofed/drivers/infiniband/core/ib_mad.c
2342
temp_mad_send_wr = list_entry(list_item,
sys/ofed/drivers/infiniband/core/ib_mad.c
2672
local = list_entry(mad_agent_priv->local_list.next,
sys/ofed/drivers/infiniband/core/ib_mad.c
2798
mad_send_wr = list_entry(mad_agent_priv->wait_list.next,
sys/ofed/drivers/infiniband/core/ib_mad.c
2923
mad_list = list_entry(qp_info->recv_queue.list.next,
sys/ofed/drivers/infiniband/core/ib_multicast.c
407
member = list_entry(group->active_list.next,
sys/ofed/drivers/infiniband/core/ib_multicast.c
449
member = list_entry(group->pending_list.next,
sys/ofed/drivers/infiniband/core/ib_multicast.c
502
member = list_entry(group->pending_list.next,
sys/ofed/drivers/infiniband/core/ib_ucm.c
1181
ctx = list_entry(file->ctxs.next,
sys/ofed/drivers/infiniband/core/ib_ucm.c
162
uevent = list_entry(ctx->events.next,
sys/ofed/drivers/infiniband/core/ib_ucm.c
415
uevent = list_entry(file->events.next, struct ib_ucm_event, file_list);
sys/ofed/drivers/infiniband/core/ib_ucma.c
411
uevent = list_entry(file->event_list.next, struct ucma_event, list);
sys/ofed/drivers/infiniband/core/ib_user_mad.c
363
packet = list_entry(file->recv_list.next, struct ib_umad_packet, list);
sys/ofed/drivers/infiniband/core/ib_uverbs_main.c
240
event = list_entry(ev_queue->event_list.next, struct ib_uverbs_event, list);
sys/ofed/drivers/infiniband/core/ib_verbs.c
1678
fmr = list_entry(fmr_list->next, struct ib_fmr, list);
sys/ofed/drivers/infiniband/core/ib_verbs.c
1802
qp = list_entry(xrcd->tgt_qp_list.next, struct ib_qp, xrcd_list);
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c
1212
p = list_entry(priv->cm.start_list.next, typeof(*p), list);
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c
1250
p = list_entry(priv->cm.reap_list.next, typeof(*p), list);
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c
1333
p = list_entry(priv->cm.passive_ids.prev, typeof(*p), list);
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c
186
p = list_entry(priv->cm.rx_flush_list.next, typeof(*p), list);
sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c
802
p = list_entry(priv->cm.passive_ids.next, typeof(*p), list);
sys/ofed/drivers/infiniband/ulp/sdp/sdp_zcopy.c
67
chunk = list_entry(tx_sa->umem->chunk_list.next, struct ib_umem_chunk, list);
sys/powerpc/powermac/powermac_thermal.c
195
struct pmac_fan_le *list_entry;
sys/powerpc/powermac/powermac_thermal.c
197
list_entry = malloc(sizeof(struct pmac_fan_le), M_PMACTHERM,
sys/powerpc/powermac/powermac_thermal.c
199
list_entry->fan = fan;
sys/powerpc/powermac/powermac_thermal.c
201
SLIST_INSERT_HEAD(&fans, list_entry, entries);
sys/powerpc/powermac/powermac_thermal.c
207
struct pmac_sens_le *list_entry;
sys/powerpc/powermac/powermac_thermal.c
209
list_entry = malloc(sizeof(struct pmac_sens_le), M_PMACTHERM,
sys/powerpc/powermac/powermac_thermal.c
211
list_entry->sensor = sensor;
sys/powerpc/powermac/powermac_thermal.c
212
list_entry->last_val = 0;
sys/powerpc/powermac/powermac_thermal.c
213
list_entry->critical_count = 0;
sys/powerpc/powermac/powermac_thermal.c
215
SLIST_INSERT_HEAD(&sensors, list_entry, entries);
sys/sys/sf_buf.h
91
LIST_ENTRY(sf_buf) list_entry; /* list of buffers */
tools/tools/drm/radeon/mkregtable/mkregtable.c
364
list_entry((ptr)->next, type, member)
tools/tools/drm/radeon/mkregtable/mkregtable.c
425
for (pos = list_entry((head)->next, typeof(*pos), member); \
tools/tools/drm/radeon/mkregtable/mkregtable.c
427
pos = list_entry(pos->member.next, typeof(*pos), member))
tools/tools/drm/radeon/mkregtable/mkregtable.c
436
for (pos = list_entry((head)->prev, typeof(*pos), member); \
tools/tools/drm/radeon/mkregtable/mkregtable.c
438
pos = list_entry(pos->member.prev, typeof(*pos), member))
tools/tools/drm/radeon/mkregtable/mkregtable.c
449
((pos) ? : list_entry(head, typeof(*pos), member))
tools/tools/drm/radeon/mkregtable/mkregtable.c
461
for (pos = list_entry(pos->member.next, typeof(*pos), member); \
tools/tools/drm/radeon/mkregtable/mkregtable.c
463
pos = list_entry(pos->member.next, typeof(*pos), member))
tools/tools/drm/radeon/mkregtable/mkregtable.c
475
for (pos = list_entry(pos->member.prev, typeof(*pos), member); \
tools/tools/drm/radeon/mkregtable/mkregtable.c
477
pos = list_entry(pos->member.prev, typeof(*pos), member))
tools/tools/drm/radeon/mkregtable/mkregtable.c
489
pos = list_entry(pos->member.next, typeof(*pos), member))
tools/tools/drm/radeon/mkregtable/mkregtable.c
499
for (pos = list_entry((head)->next, typeof(*pos), member), \
tools/tools/drm/radeon/mkregtable/mkregtable.c
500
n = list_entry(pos->member.next, typeof(*pos), member); \
tools/tools/drm/radeon/mkregtable/mkregtable.c
502
pos = n, n = list_entry(n->member.next, typeof(*n), member))
tools/tools/drm/radeon/mkregtable/mkregtable.c
515
for (pos = list_entry(pos->member.next, typeof(*pos), member), \
tools/tools/drm/radeon/mkregtable/mkregtable.c
516
n = list_entry(pos->member.next, typeof(*pos), member); \
tools/tools/drm/radeon/mkregtable/mkregtable.c
518
pos = n, n = list_entry(n->member.next, typeof(*n), member))
tools/tools/drm/radeon/mkregtable/mkregtable.c
531
for (n = list_entry(pos->member.next, typeof(*pos), member); \
tools/tools/drm/radeon/mkregtable/mkregtable.c
533
pos = n, n = list_entry(n->member.next, typeof(*n), member))
tools/tools/drm/radeon/mkregtable/mkregtable.c
546
for (pos = list_entry((head)->prev, typeof(*pos), member), \
tools/tools/drm/radeon/mkregtable/mkregtable.c
547
n = list_entry(pos->member.prev, typeof(*pos), member); \
tools/tools/drm/radeon/mkregtable/mkregtable.c
549
pos = n, n = list_entry(n->member.prev, typeof(*n), member))