datapath: Check for Centos 6.4 backports.
[sliver-openvswitch.git] / datapath / linux / compat / include / linux / etherdevice.h
1 #ifndef __LINUX_ETHERDEVICE_WRAPPER_H
2 #define __LINUX_ETHERDEVICE_WRAPPER_H 1
3
4 #include <linux/version.h>
5 #include_next <linux/etherdevice.h>
6
7 #ifndef HAVE_ETH_HW_ADDR_RANDOM
8 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36)
9 static inline void eth_hw_addr_random(struct net_device *dev)
10 {
11         random_ether_addr(dev->dev_addr);
12 }
13 #elif LINUX_VERSION_CODE < KERNEL_VERSION(3,4,0)
14 static inline void eth_hw_addr_random(struct net_device *dev)
15 {
16         dev_hw_addr_random(dev, dev->dev_addr);
17 }
18 #endif
19 #endif
20
21 #if LINUX_VERSION_CODE < KERNEL_VERSION(3,6,0)
22 #define eth_mac_addr rpl_eth_mac_addr
23 static inline int eth_mac_addr(struct net_device *dev, void *p)
24 {
25         struct sockaddr *addr = p;
26
27         if (!is_valid_ether_addr(addr->sa_data))
28                 return -EADDRNOTAVAIL;
29 #ifdef NET_ADDR_RANDOM
30         dev->addr_assign_type &= ~NET_ADDR_RANDOM;
31 #endif
32         memcpy(dev->dev_addr, addr->sa_data, dev->addr_len);
33         return 0;
34 }
35 #endif
36
37 #endif