svn commit: r255400 - head/sys/dev/vmware/vmxnet3
Bryan Venteicher
bryanv at FreeBSD.org
Sun Sep 8 19:13:07 UTC 2013
Author: bryanv
Date: Sun Sep 8 19:13:06 2013
New Revision: 255400
URL: http://svnweb.freebsd.org/changeset/base/255400
Log:
Use correct type for the vmx vlan filter table
Approved by: re (glebius, gjb)
Modified:
head/sys/dev/vmware/vmxnet3/if_vmxvar.h
Modified: head/sys/dev/vmware/vmxnet3/if_vmxvar.h
==============================================================================
--- head/sys/dev/vmware/vmxnet3/if_vmxvar.h Sun Sep 8 18:58:33 2013 (r255399)
+++ head/sys/dev/vmware/vmxnet3/if_vmxvar.h Sun Sep 8 19:13:06 2013 (r255400)
@@ -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];
};
More information about the svn-src-all
mailing list