X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=device.h;h=1068a46c9e4a8dd151930c049e29f4c0983a4ccf;hp=88a421f45df4373c243112bbe9fc5aedc75b961c;hb=717e8e2a6aa746b97d10b6bc38a1a4fbd46f9ba7;hpb=4bf10a76e01d2f2971a86765722a4c4a65b584a7 diff --git a/device.h b/device.h index 88a421f..1068a46 100644 --- a/device.h +++ b/device.h @@ -15,6 +15,7 @@ #define __LL_H #include +#include #include struct device; @@ -75,16 +76,21 @@ enum device_event { DEV_EVENT_LINK_UP, DEV_EVENT_LINK_DOWN, + + __DEV_EVENT_MAX }; /* * device dependency with callbacks */ struct device_user { - struct list_head list; + struct safe_list list; bool claimed; bool hotplug; + bool alias; + + uint8_t ev_idx[__DEV_EVENT_MAX]; struct device *dev; void (*cb)(struct device_user *, enum device_event); @@ -105,7 +111,8 @@ struct device { const struct device_type *type; struct avl_node avl; - struct list_head users; + struct safe_list users; + struct safe_list aliases; char ifname[IFNAMSIZ + 1]; int ifindex;