Searched refs:dev_base_head (Results 1 – 2 of 2) sorted by relevance
/include/linux/ |
D | netdevice.h | 2608 list_for_each_entry(d, &(net)->dev_base_head, dev_list) 2610 list_for_each_entry_reverse(d, &(net)->dev_base_head, dev_list) 2612 list_for_each_entry_rcu(d, &(net)->dev_base_head, dev_list) 2614 list_for_each_entry_safe(d, n, &(net)->dev_base_head, dev_list) 2616 list_for_each_entry_continue(d, &(net)->dev_base_head, dev_list) 2618 list_for_each_entry_continue_rcu(d, &(net)->dev_base_head, dev_list) 2631 return lh == &net->dev_base_head ? NULL : net_device_entry(lh); in next_net_device() 2641 return lh == &net->dev_base_head ? NULL : net_device_entry(lh); in next_net_device_rcu() 2646 return list_empty(&net->dev_base_head) ? NULL : in first_net_device() 2647 net_device_entry(net->dev_base_head.next); in first_net_device() [all …]
|
/include/net/ |
D | net_namespace.h | 92 struct list_head dev_base_head; member
|