struct net_device *vlandev){structvlan_dev_priv*vlan=vlan_dev_priv(vlandev);/* May be called without an actual change */if(ether_addr_equal(vlan->real_dev_addr, dev->dev_addr))return;/* vlan address was different from the old address and is equal to * the new address */if(!ethe...
From: Julia Lawall <julia.law...@lip6.fr> Ether_addr_equal_64bits is more efficient than ether_addr_equal, and can be used when each argument is an array within a structure that contains at least two bytes of data beyond the array. The structures involved are: ieee80211_hdr defined i...