X-Git-Url: http://git.archive.openwrt.org/?a=blobdiff_plain;f=device.h;h=8ecb9ef7f0e55df8c1c7fe68b91596656b98c089;hb=5bf6467af8d59d0b0794413204ad385367221e22;hp=f1cdda00efaeb06aeb37fa9beff4eb727536eff8;hpb=2cd93d4c17f093552c06c60427fe9ecfb4c0dbe8;p=project%2Fnetifd.git diff --git a/device.h b/device.h index f1cdda0..8ecb9ef 100644 --- a/device.h +++ b/device.h @@ -19,6 +19,12 @@ enum { __DEV_ATTR_MAX, }; +enum dev_change_type { + DEV_CONFIG_NO_CHANGE, + DEV_CONFIG_APPLIED, + DEV_CONFIG_RECREATE, +}; + struct device_type { struct list_head list; const char *name; @@ -26,6 +32,7 @@ struct device_type { const struct config_param_list *config_params; struct device *(*create)(struct blob_attr *attr); + enum dev_change_type (*reload)(struct device *, struct blob_attr *); void (*dump_status)(struct device *, struct blob_buf *buf); int (*check_state)(struct device *); void (*free)(struct device *); @@ -50,6 +57,7 @@ struct device { char ifname[IFNAMSIZ + 1]; int ifindex; + struct blob_attr *config; bool present; int active; @@ -64,8 +72,6 @@ struct device { unsigned int mtu; unsigned int txqueuelen; uint8_t macaddr[6]; - - uint32_t config_hash; }; /* events broadcasted to all users of a device */ @@ -116,7 +122,7 @@ void device_remove_user(struct device_user *dep); void device_set_present(struct device *dev, bool state); int device_claim(struct device_user *dep); void device_release(struct device_user *dep); -int check_device_state(struct device *dev); +int device_check_state(struct device *dev); static inline void device_free(struct device *dev)