| 8666fda1 | 13-Nov-2025 |
Ed Maste <emaste@FreeBSD.org> |
aq(4): Fix VLAN tag test
Previously emitted a compiler warning "warning: bitwise comparison always evaluates to false."
Looking at the OpenBSD driver (which is based on this code) it looks like the
aq(4): Fix VLAN tag test
Previously emitted a compiler warning "warning: bitwise comparison always evaluates to false."
Looking at the OpenBSD driver (which is based on this code) it looks like the VLAN flag should be set if either of these bits is. In the OpenBSD driver these are AQ_RXDESC_TYPE_VLAN and AQ_RXDESC_TYPE_VLAN2 rather than a magic number 0x60.
Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D53836
show more ...
|
| 0156be41 | 13-Nov-2025 |
Ed Maste <emaste@FreeBSD.org> |
aq(4): Remove unimplemented functions
aq_if_priv_ioctl and aq_if_debug have prototypes but are not yet implemented. Just remove the commented-out DEVMETHODs and the unused prototypes, to clear a bu
aq(4): Remove unimplemented functions
aq_if_priv_ioctl and aq_if_debug have prototypes but are not yet implemented. Just remove the commented-out DEVMETHODs and the unused prototypes, to clear a build-time warning; the DEVMETHODs and prototypes can be readded if / when they are implemented.
show more ...
|
| 4756f5ff | 13-Nov-2025 |
Olivier Cochard <olivier@FreeBSD.org> |
aq(4): Port to IfAPI
Direct access to struct ifnet members is not possible in FreeBSD 15; accessors must be used. These exist in all supported FreeBSD versions, so we do not need to make this condi
aq(4): Port to IfAPI
Direct access to struct ifnet members is not possible in FreeBSD 15; accessors must be used. These exist in all supported FreeBSD versions, so we do not need to make this conditional.
show more ...
|