On Mon, Aug 16, 2021 at 03:00:59PM +0200, Michal Kubecek wrote: > Hello, > > starting with v5.14-rc1, my kernel log gets flooded with messages > > hid-generic 0003:051D:0002.0002: control queue full > > at rate of ~33 per second. Device 051d:0002 is an APC UPS (BR-650 VA). > I bisected the issue to commit > > 7652dd2c5cb7 ("USB: core: Check buffer length matches wLength for control transfers") > > Reverting this commit on top of v5.14-rc6 resolves the issue. I suspect > the problem is some missing cleanup when usb_submit_urb() bails out on > the newly added check but I'm not familiar enough with the code to see > what is missing or if the problem is on USB or HID side. But the message in the above commit does not match the message you are seeing in your log. Your message is coming from the hid-core.c file, where it checks to verify if you have enough room in the buffer. Ah, is the buffer filling up because a driver is trying to send the wrong amount of data? thanks, greg k-h