1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-25 16:13:17 +00:00

Use correct type for the vmx vlan filter table

Approved by:	re (glebius, gjb)
This commit is contained in:
Bryan Venteicher 2013-09-08 19:13:06 +00:00
parent 1f6addd92c
commit c02d19b6b6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=255400

View File

@ -228,7 +228,7 @@ struct vmxnet3_softc {
struct ifmedia vmx_media;
eventhandler_tag vmx_vlan_attach;
eventhandler_tag vmx_vlan_detach;
uint8_t vmx_vlan_filter[4096/32];
uint32_t vmx_vlan_filter[4096/32];
uint8_t vmx_lladdr[ETHER_ADDR_LEN];
};