summaryrefslogtreecommitdiff
path: root/interface-event.c
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2012-05-04 15:01:22 +0200
committerFelix Fietkau <nbd@openwrt.org>2012-05-04 15:01:22 +0200
commite64619267d7b4e5f5fec57718c0e11e7844dc9ee (patch)
treee3446ad13a259398c9721fa3183845f55b9d9603 /interface-event.c
parent0942c9368654ee1a0518bbeaf291a51852c11543 (diff)
downloadnetifd-e64619267d7b4e5f5fec57718c0e11e7844dc9ee.tar.gz
convert interface event queueing to global interface notifier
Diffstat (limited to 'interface-event.c')
-rw-r--r--interface-event.c28
1 files changed, 26 insertions, 2 deletions
diff --git a/interface-event.c b/interface-event.c
index 5ab6240..8a92ee7 100644
--- a/interface-event.c
+++ b/interface-event.c
@@ -80,7 +80,7 @@ task_complete(struct uloop_process *proc, int ret)
* When queueing an event that is the same as the one waiting for
* completion, remove the interface from the queue
*/
-void
+static void
interface_queue_event(struct interface *iface, enum interface_event ev)
{
enum interface_event last_ev;
@@ -102,7 +102,7 @@ interface_queue_event(struct interface *iface, enum interface_event ev)
call_hotplug();
}
-void
+static void
interface_dequeue_event(struct interface *iface)
{
if (iface == current)
@@ -111,3 +111,27 @@ interface_dequeue_event(struct interface *iface)
if (!list_empty(&iface->hotplug_list))
list_del_init(&iface->hotplug_list);
}
+
+static void interface_event_cb(struct interface_user *dep, struct interface *iface,
+ enum interface_event ev)
+{
+ switch (ev) {
+ case IFEV_UP:
+ case IFEV_DOWN:
+ interface_queue_event(iface, ev);
+ break;
+ case IFEV_FREE:
+ case IFEV_RELOAD:
+ interface_dequeue_event(iface);
+ break;
+ }
+}
+
+static struct interface_user event_user = {
+ .cb = interface_event_cb
+};
+
+static void __init interface_event_init(void)
+{
+ interface_add_user(&event_user, NULL);
+}