datapath: Use parallel_ops genl.
[sliver-openvswitch.git] / datapath / compat.h
1 /*
2  * Copyright (c) 2007-2012 Nicira, Inc.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of version 2 of the GNU General Public
6  * License as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, write to the Free Software
15  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16  * 02110-1301, USA
17  */
18
19 #ifndef COMPAT_H
20 #define COMPAT_H 1
21
22 #include <linux/netlink.h>
23
24 #ifndef HAVE_NLA_NUL_STRING
25 static inline int CHECK_NUL_STRING(struct nlattr *attr, int maxlen)
26 {
27         char *s;
28         int len;
29         if (!attr)
30                 return 0;
31
32         len = nla_len(attr);
33         if (len >= maxlen)
34                 return -EINVAL;
35
36         s = nla_data(attr);
37         if (s[len - 1] != '\0')
38                 return -EINVAL;
39
40         return 0;
41 }
42 #else
43 static inline int CHECK_NUL_STRING(struct nlattr *attr, int maxlen)
44 {
45         return 0;
46 }
47 #endif  /* !HAVE_NLA_NUL_STRING */
48
49 static inline void skb_clear_rxhash(struct sk_buff *skb)
50 {
51 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,35)
52         skb->rxhash = 0;
53 #endif
54 }
55
56 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,32)
57 #define GENL_SOCK(net) (genl_sock)
58 #define SET_NETNSOK
59 #else
60 #define GENL_SOCK(net) ((net)->genl_sock)
61 #define SET_NETNSOK    .netnsok = true,
62 #endif
63
64 #ifdef HAVE_PARALLEL_OPS
65 #define SET_PARALLEL_OPS        .parallel_ops = true,
66 #else
67 #define SET_PARALLEL_OPS
68 #endif
69
70
71 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,20)
72 #ifdef CONFIG_NETFILTER
73 static inline u32 skb_get_mark(struct sk_buff *skb)
74 {
75         return skb->nfmark;
76 }
77
78 static inline void skb_set_mark(struct sk_buff *skb, u32 mark)
79 {
80         skb->nfmark = mark;
81 }
82 #else /* CONFIG_NETFILTER */
83 static inline u32 skb_get_mark(struct sk_buff *skb)
84 {
85         return 0;
86 }
87
88 static inline void skb_set_mark(struct sk_buff *skb, u32 mark)
89 {
90 }
91 #endif
92 #else /* before 2.6.20 */
93 static inline u32 skb_get_mark(struct sk_buff *skb)
94 {
95         return skb->mark;
96 }
97
98 static inline void skb_set_mark(struct sk_buff *skb, u32 mark)
99 {
100         skb->mark = mark;
101 }
102 #endif /* after 2.6.20 */
103
104 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,36)
105 #define rt_dst(rt) (rt->dst)
106 #else
107 #define rt_dst(rt) (rt->u.dst)
108 #endif
109
110 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,33)
111 #define inet_sport(sk)  (inet_sk(sk)->sport)
112 #else
113 #define inet_sport(sk)  (inet_sk(sk)->inet_sport)
114 #endif
115
116 #endif /* compat.h */