|
@@ -61,7 +61,7 @@ static int vlan_dev_rebuild_header(struct sk_buff *skb)
|
|
|
pr_debug("%s: unable to resolve type %X addresses\n",
|
|
|
dev->name, ntohs(veth->h_vlan_encapsulated_proto));
|
|
|
|
|
|
- memcpy(veth->h_source, dev->dev_addr, ETH_ALEN);
|
|
|
+ ether_addr_copy(veth->h_source, dev->dev_addr);
|
|
|
break;
|
|
|
}
|
|
|
|
|
@@ -303,7 +303,7 @@ static int vlan_dev_open(struct net_device *dev)
|
|
|
goto clear_allmulti;
|
|
|
}
|
|
|
|
|
|
- memcpy(vlan->real_dev_addr, real_dev->dev_addr, ETH_ALEN);
|
|
|
+ ether_addr_copy(vlan->real_dev_addr, real_dev->dev_addr);
|
|
|
|
|
|
if (vlan->flags & VLAN_FLAG_GVRP)
|
|
|
vlan_gvrp_request_join(dev);
|
|
@@ -367,7 +367,7 @@ static int vlan_dev_set_mac_address(struct net_device *dev, void *p)
|
|
|
dev_uc_del(real_dev, dev->dev_addr);
|
|
|
|
|
|
out:
|
|
|
- memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
|
|
|
+ ether_addr_copy(dev->dev_addr, addr->sa_data);
|
|
|
return 0;
|
|
|
}
|
|
|
|