On Tue, Jun 04, 2024 at 02:05:12PM +0200, Marcello Sylvester Bauer wrote: > Greetings, > > I'm currently investigating this regression to properly fix it. My > patch only replaces the corresponding timer API calls without actually > changing the code. I'm trying to get it to work properly with the > hrtimer API. > > Any hints on how to accomplish this are welcome. Start by figuring out what isn't getting executed. That is, which USB (or usb_request) transfer isn't completing. Once you know that, see what timer callbacks do occur (if any) and figure out why they don't cause the transfer to complete. If there are no timer callbacks at all when the hang occurs, make a record (printk if nothing else), from the start of the test, of each callback and each timer restart, so you can definitively prove to the hrtimer maintainers that there's a restart with no later callback. Then it will be up to them to figure out what's going wrong. Alan Stern