Commit 986d6911 authored by Johan Hovold's avatar Johan Hovold Committed by Greg Kroah-Hartman

greybus: svc: always register interfaces at hotplug

Always register interfaces at hotplug regardless of whether
initialisation succeeded or not.

Even if a module failed to initialise we want it to have a
representation while it is physically present.

Note that the vendor and product-string attribute will read as "(null)"
for now on an interface that failed (early) initialisation.

Also note that the switch route is kept until the interface is finally
removed also on initialisation errors.
Signed-off-by: default avatarJohan Hovold <johan@hovoldconsulting.com>
Reviewed-by: default avatarJeffrey Carlyle <jcarlyle@google.com>
Reviewed-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
parent a77660a7
......@@ -521,8 +521,12 @@ static int gb_svc_interface_route_create(struct gb_svc *svc,
static void gb_svc_interface_route_destroy(struct gb_svc *svc,
struct gb_interface *intf)
{
if (intf->device_id == GB_DEVICE_ID_BAD)
return;
gb_svc_route_destroy(svc, svc->ap_intf_id, intf->interface_id);
ida_simple_remove(&svc->device_id_map, intf->device_id);
intf->device_id = GB_DEVICE_ID_BAD;
}
static void gb_svc_intf_remove(struct gb_svc *svc, struct gb_interface *intf)
......@@ -615,30 +619,22 @@ static void gb_svc_process_intf_hotplug(struct gb_operation *operation)
if (ret) {
dev_err(&svc->dev, "failed to clear boot status of interface %u: %d\n",
intf_id, ret);
goto destroy_interface;
goto out_interface_add;
}
ret = gb_svc_interface_route_create(svc, intf);
if (ret)
goto destroy_interface;
goto out_interface_add;
ret = gb_interface_init(intf);
if (ret) {
dev_err(&svc->dev, "failed to initialize interface %u: %d\n",
intf_id, ret);
goto destroy_route;
goto out_interface_add;
}
ret = gb_interface_add(intf);
if (ret)
goto destroy_route;
return;
destroy_route:
gb_svc_interface_route_destroy(svc, intf);
destroy_interface:
gb_interface_remove(intf);
out_interface_add:
gb_interface_add(intf);
}
static void gb_svc_process_intf_hot_unplug(struct gb_operation *operation)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment