IPv6: Use source-routing to allow multi-wan
[project/netifd.git] / device.h
index 8cedfba..1068a46 100644 (file)
--- a/device.h
+++ b/device.h
@@ -15,6 +15,7 @@
 #define __LL_H
 
 #include <libubox/avl.h>
+#include <libubox/safe_list.h>
 #include <netinet/in.h>
 
 struct device;
@@ -75,18 +76,22 @@ 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);
 };
@@ -106,8 +111,8 @@ struct device {
        const struct device_type *type;
 
        struct avl_node avl;
-       struct list_head users;
-       struct list_head aliases;
+       struct safe_list users;
+       struct safe_list aliases;
 
        char ifname[IFNAMSIZ + 1];
        int ifindex;