ixgbe: Remove unused emulation MAC storage from the per VF data structure.

This data storage for SW emulated MAC addresses is unlikely to ever be used
so pull it.

Signed-off-by: Greg Rose <gregory.v.rose@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Greg Rose 2010-01-22 22:46:02 +00:00 committed by David S. Miller
parent 1ada1b1b41
commit ef291b8c71
1 changed files with 0 additions and 1 deletions

View File

@ -110,7 +110,6 @@ struct vf_data_storage {
u16 num_vf_mc_hashes; u16 num_vf_mc_hashes;
u16 default_vf_vlan_id; u16 default_vf_vlan_id;
u16 vlans_enabled; u16 vlans_enabled;
unsigned char em_mac_addresses[MAX_EMULATION_MAC_ADDRS * ETH_ALEN];
bool clear_to_send; bool clear_to_send;
int rar; int rar;
}; };