diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-07-05 20:28:31 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-07-05 20:28:31 +0200 |
commit | 51b3f21fef7f581a7df6d8a73d8b973f9eb355d2 (patch) | |
tree | 85220f47f3a056a934be73a1938c3b4421caeeb4 /device.c | |
parent | 4bf10a76e01d2f2971a86765722a4c4a65b584a7 (diff) |
alias: use a callback for managing device presence state, track alias deps in a separate list to avoid recursion issues
Diffstat (limited to 'device.c')
-rw-r--r-- | device.c | 22 |
1 files changed, 19 insertions, 3 deletions
@@ -180,11 +180,12 @@ static void __init dev_init(void) avl_init(&devices, avl_strcmp, true, NULL); } -void device_broadcast_event(struct device *dev, enum device_event ev) + +static void __device_broadcast_event(struct list_head *head, enum device_event ev) { struct device_user *dep, *tmp; - list_for_each_entry_safe(dep, tmp, &dev->users, list) { + list_for_each_entry_safe(dep, tmp, head, list) { if (!dep->cb) continue; @@ -192,6 +193,12 @@ void device_broadcast_event(struct device *dev, enum device_event ev) } } +void device_broadcast_event(struct device *dev, enum device_event ev) +{ + __device_broadcast_event(&dev->aliases, ev); + __device_broadcast_event(&dev->users, ev); +} + int device_claim(struct device_user *dep) { struct device *dev = dep->dev; @@ -257,6 +264,7 @@ void device_init_virtual(struct device *dev, const struct device_type *type, con D(DEVICE, "Initialize device '%s'\n", dev->ifname); INIT_LIST_HEAD(&dev->users); + INIT_LIST_HEAD(&dev->aliases); dev->type = type; if (!dev->set_state) @@ -378,6 +386,8 @@ void device_set_present(struct device *dev, bool state) void device_add_user(struct device_user *dep, struct device *dev) { + struct list_head *head; + if (dep->dev) device_remove_user(dep); @@ -385,7 +395,13 @@ void device_add_user(struct device_user *dep, struct device *dev) return; dep->dev = dev; - list_add_tail(&dep->list, &dev->users); + + if (dep->alias) + head = &dev->aliases; + else + head = &dev->users; + list_add_tail(&dep->list, head); + if (dep->cb && dev->present) { dep->cb(dep, DEV_EVENT_ADD); if (dev->active) |