created | 2021-08-22T22:11:27Z |
---|---|
begin | 2021-08-20T01:33:44Z |
end | 2021-08-20T01:40:51Z |
path | src/sys |
commits | 1 |
date | 2021-08-20T01:40:51Z | |||
---|---|---|---|---|
author | kevlo | |||
files | src/sys/dev/usb/if_ure.c | log | diff | annotate |
message |
When plugging and unplugging an adapter continuously, it waits for a timeout over and over again. The problem is that the device has been unplugged, but the attach handler still issues USB requests via ure_ctl(). The easiest solution is to deactivate the device proactively in ure_ctl() when we see that error there. From Christian Ludwig |