datapath: Add support for kernel 3.14.
[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 #ifndef HAVE_ETHER_ADDR_COPY
38 static inline void ether_addr_copy(u8 *dst, const u8 *src)
39 {
40 #if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS)
41         *(u32 *)dst = *(const u32 *)src;
42         *(u16 *)(dst + 4) = *(const u16 *)(src + 4);
43 #else
44         u16 *a = (u16 *)dst;
45         const u16 *b = (const u16 *)src;
46
47         a[0] = b[0];
48         a[1] = b[1];
49         a[2] = b[2];
50 #endif
51 }
52 #endif
53
54 #endif