Re: new computer, strange usb messages at boot

From: Hans Petter Selasky <hps_at_selasky.org>
Date: Mon, 22 Feb 2016 08:10:32 +0100
On 02/21/16 17:28, Larry Rosenman wrote:
> Does this mean that the touch screen is hitting a limit in FreeBSD's
> driver?

Yes, the hid driver is limiting the range of some report. This should be 
harmless. You would need to dump the HID descriptor to see the limits. 
Maybe we could raise the limit from 256 to 4096 or something in that 
range, to make the warning to away. It's

sys/dev/usb/usb_hid.c:

>                                         /* range check usage count */
>                                         if (c->loc.count > 255) {
>                                                 DPRINTFN(0, "Number of "
>                                                     "items truncated to 255\n");
>                                                 s->ncount = 255;
>                                         } else
>                                                 s->ncount = c->loc.count;
>

Try adding c->loc.count to the printout, to see the limit it is exceeding.

--HPS
Received on Mon Feb 22 2016 - 06:08:03 UTC

This archive was generated by hypermail 2.4.0 : Wed May 19 2021 - 11:41:02 UTC