Searched refs:lh (Results 1 – 4 of 4) sorted by relevance
90 struct list_head lh; member
865 struct list_head *lh; in bpf_net_ctx_get_all_used_flush_lists() local872 lh = &bpf_net_ctx->dev_map_flush_list; in bpf_net_ctx_get_all_used_flush_lists()873 if (kern_flags & BPF_RI_F_DEV_MAP_INIT && !list_empty(lh)) in bpf_net_ctx_get_all_used_flush_lists()874 *lh_dev = lh; in bpf_net_ctx_get_all_used_flush_lists()876 lh = &bpf_net_ctx->cpu_map_flush_list; in bpf_net_ctx_get_all_used_flush_lists()877 if (kern_flags & BPF_RI_F_CPU_MAP_INIT && !list_empty(lh)) in bpf_net_ctx_get_all_used_flush_lists()878 *lh_map = lh; in bpf_net_ctx_get_all_used_flush_lists()880 lh = &bpf_net_ctx->xskmap_map_flush_list; in bpf_net_ctx_get_all_used_flush_lists()882 kern_flags & BPF_RI_F_XSK_MAP_INIT && !list_empty(lh)) in bpf_net_ctx_get_all_used_flush_lists()883 *lh_xsk = lh; in bpf_net_ctx_get_all_used_flush_lists()
3292 #define net_device_entry(lh) list_entry(lh, struct net_device, dev_list) argument3300 struct list_head *lh; in next_net_device() local3304 lh = dev->dev_list.next; in next_net_device()3305 return lh == &net->dev_base_head ? NULL : net_device_entry(lh); in next_net_device()3310 struct list_head *lh; in next_net_device_rcu() local3314 lh = rcu_dereference(list_next_rcu(&dev->dev_list)); in next_net_device_rcu()3315 return lh == &net->dev_base_head ? NULL : net_device_entry(lh); in next_net_device_rcu()
359 struct list_head lh; member
Completed in 30 milliseconds