};
static void
-run_cmd(const char *ifname, bool up)
+run_cmd(const char *ifname, const char *device, bool up)
{
char *argv[3];
int pid;
setenv("ACTION", up ? "ifup" : "ifdown", 1);
setenv("INTERFACE", ifname, 1);
+ if (device)
+ setenv("DEVICE", device, 1);
argv[0] = hotplug_cmd_path;
argv[1] = "network";
argv[2] = NULL;
static void
call_hotplug(void)
{
+ const char *device = NULL;
if (list_empty(&pending))
return;
current_ev = current->hotplug_ev;
list_del_init(¤t->hotplug_list);
- D(SYSTEM, "Call hotplug handler for interface '%s'\n", current->name);
- run_cmd(current->name, current_ev == IFEV_UP);
+ if (current_ev == IFEV_UP && current->l3_dev->dev)
+ device = current->l3_dev->dev->ifname;
+
+ D(SYSTEM, "Call hotplug handler for interface '%s' (%s)\n", current->name, device ? device : "none");
+ run_cmd(current->name, device, current_ev == IFEV_UP);
}
static void