History log of /openbsd-src/sys/dev/usb/if_uaq.c (Results 1 – 6 of 6)
Revision Date Author Comments
# 81508fe3 23-May-2024 jsg <jsg@openbsd.org>

remove unneeded includes; ok mpi@


# 15994619 01-Sep-2022 mlarkin <mlarkin@openbsd.org>

whitespace


# f1599906 26-Jun-2022 jmatthew <jmatthew@openbsd.org>

add missing splx in error path

from Christian Ludwig


# 21bc0131 24-Apr-2022 jmatthew <jmatthew@openbsd.org>

Increase rx buffer size to 62kB (same as linux). It turns out the device
doesn't fit packets into the host's rx buffer until it's full, it keeps
going as long as it has space in its own receive buff

Increase rx buffer size to 62kB (same as linux). It turns out the device
doesn't fit packets into the host's rx buffer until it's full, it keeps
going as long as it has space in its own receive buffer, and then
truncates to fit the usb transfer. The packet descriptors are at the end,
so this means losing all the packets in the buffer. At 32kB, it's fairly
easy to overrun, but 62kB seems fine.

tested by and ok mlarkin@

show more ...


# 093575dd 31-Dec-2021 jmatthew <jmatthew@openbsd.org>

Fix up handling of IFF_ALLMULTI and call uaq_iff() from uaq_init().

from Brad


# 497492a7 04-Sep-2021 jmatthew <jmatthew@openbsd.org>

Add uaq(4), a driver for Aquantia AQC111U/AQC112U USB ethernet devices.

hardware provided by Brad
tested with modest success by mlarkin@, kevlo@ and Brad
ok kevlo@