Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions tapback/backend.c
Original file line number Diff line number Diff line change
Expand Up @@ -769,6 +769,18 @@ reconnect(vbd_t *device) {
}
}

err = physical_device_path_changed(device);
if (err) {
if (err == -ENOENT) {
DBG(device, "no physical device path yet\n");
err = 0;
} else {
WARN(device, "failed to retrieve physical device path: "
"%s\n", strerror(-err));
goto out;
}
}

err = hotplug_status_changed(device);
if (err) {
if (err == -ENOENT) {
Expand Down