Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Linux INET6 implementation |
| 3 | * |
| 4 | * Authors: |
| 5 | * Pedro Roque <roque@di.fc.ul.pt> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License |
| 9 | * as published by the Free Software Foundation; either version |
| 10 | * 2 of the License, or (at your option) any later version. |
| 11 | */ |
| 12 | |
| 13 | #ifndef _IP6_FIB_H |
| 14 | #define _IP6_FIB_H |
| 15 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/ipv6_route.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/rtnetlink.h> |
| 18 | #include <linux/spinlock.h> |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 19 | #include <net/dst.h> |
| 20 | #include <net/flow.h> |
| 21 | #include <net/netlink.h> |
David S. Miller | b341936 | 2010-11-30 12:27:11 -0800 | [diff] [blame] | 22 | #include <net/inetpeer.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
Neil Horman | a33bc5c | 2009-07-30 18:52:15 -0700 | [diff] [blame] | 24 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
| 25 | #define FIB6_TABLE_HASHSZ 256 |
| 26 | #else |
| 27 | #define FIB6_TABLE_HASHSZ 1 |
| 28 | #endif |
| 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | struct rt6_info; |
| 31 | |
Eric Dumazet | fd2c3ef | 2009-11-03 03:26:03 +0000 | [diff] [blame] | 32 | struct fib6_config { |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 33 | u32 fc_table; |
| 34 | u32 fc_metric; |
| 35 | int fc_dst_len; |
| 36 | int fc_src_len; |
| 37 | int fc_ifindex; |
| 38 | u32 fc_flags; |
| 39 | u32 fc_protocol; |
Nicolas Dichtel | ef2c7d7 | 2012-09-05 02:12:42 +0000 | [diff] [blame] | 40 | u32 fc_type; /* only 8 bits are used */ |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 41 | |
| 42 | struct in6_addr fc_dst; |
| 43 | struct in6_addr fc_src; |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 44 | struct in6_addr fc_prefsrc; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 45 | struct in6_addr fc_gateway; |
| 46 | |
| 47 | unsigned long fc_expires; |
| 48 | struct nlattr *fc_mx; |
| 49 | int fc_mx_len; |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 50 | int fc_mp_len; |
| 51 | struct nlattr *fc_mp; |
Thomas Graf | 86872cb | 2006-08-22 00:01:08 -0700 | [diff] [blame] | 52 | |
| 53 | struct nl_info fc_nlinfo; |
| 54 | }; |
| 55 | |
Eric Dumazet | fd2c3ef | 2009-11-03 03:26:03 +0000 | [diff] [blame] | 56 | struct fib6_node { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | struct fib6_node *parent; |
| 58 | struct fib6_node *left; |
| 59 | struct fib6_node *right; |
Kim Nordlund | 8bce65b | 2006-12-13 16:38:29 -0800 | [diff] [blame] | 60 | #ifdef CONFIG_IPV6_SUBTREES |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | struct fib6_node *subtree; |
Kim Nordlund | 8bce65b | 2006-12-13 16:38:29 -0800 | [diff] [blame] | 62 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | struct rt6_info *leaf; |
| 64 | |
| 65 | __u16 fn_bit; /* bit key */ |
| 66 | __u16 fn_flags; |
Hannes Frederic Sowa | 42b1870 | 2014-10-06 19:58:35 +0200 | [diff] [blame] | 67 | int fn_sernum; |
David S. Miller | f11e665 | 2007-03-24 20:36:25 -0700 | [diff] [blame] | 68 | struct rt6_info *rr_ptr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | }; |
| 70 | |
YOSHIFUJI Hideaki | 7fc3316 | 2006-08-23 17:22:24 -0700 | [diff] [blame] | 71 | #ifndef CONFIG_IPV6_SUBTREES |
| 72 | #define FIB6_SUBTREE(fn) NULL |
| 73 | #else |
| 74 | #define FIB6_SUBTREE(fn) ((fn)->subtree) |
| 75 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 77 | struct mx6_config { |
| 78 | const u32 *mx; |
| 79 | DECLARE_BITMAP(mx_valid, RTAX_MAX); |
| 80 | }; |
| 81 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | /* |
| 83 | * routing information |
| 84 | * |
| 85 | */ |
| 86 | |
Eric Dumazet | fd2c3ef | 2009-11-03 03:26:03 +0000 | [diff] [blame] | 87 | struct rt6key { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | struct in6_addr addr; |
| 89 | int plen; |
| 90 | }; |
| 91 | |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 92 | struct fib6_table; |
| 93 | |
Eric Dumazet | fd2c3ef | 2009-11-03 03:26:03 +0000 | [diff] [blame] | 94 | struct rt6_info { |
Changli Gao | d8d1f30 | 2010-06-10 23:31:35 -0700 | [diff] [blame] | 95 | struct dst_entry dst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | |
YOSHIFUJI Hideaki / 吉藤英明 | bd2c77a | 2010-03-31 22:24:22 +0000 | [diff] [blame] | 97 | /* |
| 98 | * Tail elements of dst_entry (__refcnt etc.) |
| 99 | * and these elements (rarely used in hot path) are in |
| 100 | * the same cache line. |
| 101 | */ |
| 102 | struct fib6_table *rt6i_table; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | struct fib6_node *rt6i_node; |
| 104 | |
| 105 | struct in6_addr rt6i_gateway; |
YOSHIFUJI Hideaki / 吉藤英明 | bd2c77a | 2010-03-31 22:24:22 +0000 | [diff] [blame] | 106 | |
Nicolas Dichtel | 51ebd31 | 2012-10-22 03:42:09 +0000 | [diff] [blame] | 107 | /* Multipath routes: |
| 108 | * siblings is a list of rt6_info that have the the same metric/weight, |
| 109 | * destination, but not the same gateway. nsiblings is just a cache |
| 110 | * to speed up lookup. |
| 111 | */ |
| 112 | struct list_head rt6i_siblings; |
| 113 | unsigned int rt6i_nsiblings; |
| 114 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | atomic_t rt6i_ref; |
Herbert Xu | b4ce927 | 2007-11-13 21:33:32 -0800 | [diff] [blame] | 116 | |
YOSHIFUJI Hideaki / 吉藤英明 | bd2c77a | 2010-03-31 22:24:22 +0000 | [diff] [blame] | 117 | /* These are in a separate cache line. */ |
| 118 | struct rt6key rt6i_dst ____cacheline_aligned_in_smp; |
| 119 | u32 rt6i_flags; |
| 120 | struct rt6key rt6i_src; |
Daniel Walter | c3968a8 | 2011-04-13 21:10:57 +0000 | [diff] [blame] | 121 | struct rt6key rt6i_prefsrc; |
Herbert Xu | b4ce927 | 2007-11-13 21:33:32 -0800 | [diff] [blame] | 122 | |
Martin KaFai Lau | 8d0b94a | 2015-05-22 20:56:04 -0700 | [diff] [blame] | 123 | struct list_head rt6i_uncached; |
| 124 | struct uncached_list *rt6i_uncached_list; |
| 125 | |
YOSHIFUJI Hideaki / 吉藤英明 | bd2c77a | 2010-03-31 22:24:22 +0000 | [diff] [blame] | 126 | struct inet6_dev *rt6i_idev; |
Martin KaFai Lau | d52d399 | 2015-05-22 20:56:06 -0700 | [diff] [blame^] | 127 | struct rt6_info * __percpu *rt6i_pcpu; |
Noriaki TAKAMIYA | a47ed4c | 2007-09-06 03:31:25 -0700 | [diff] [blame] | 128 | |
Hannes Frederic Sowa | 705f1c8 | 2014-09-28 00:46:06 +0200 | [diff] [blame] | 129 | u32 rt6i_metric; |
Martin KaFai Lau | 4b32b5a | 2015-04-28 13:03:06 -0700 | [diff] [blame] | 130 | u32 rt6i_pmtu; |
YOSHIFUJI Hideaki / 吉藤英明 | bd2c77a | 2010-03-31 22:24:22 +0000 | [diff] [blame] | 131 | /* more non-fragment space at head required */ |
| 132 | unsigned short rt6i_nfheader_len; |
YOSHIFUJI Hideaki / 吉藤英明 | bd2c77a | 2010-03-31 22:24:22 +0000 | [diff] [blame] | 133 | u8 rt6i_protocol; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | }; |
| 135 | |
YOSHIFUJI Hideaki | 7a3025b | 2006-10-13 16:17:25 +0900 | [diff] [blame] | 136 | static inline struct inet6_dev *ip6_dst_idev(struct dst_entry *dst) |
| 137 | { |
| 138 | return ((struct rt6_info *)dst)->rt6i_idev; |
| 139 | } |
| 140 | |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 141 | static inline void rt6_clean_expires(struct rt6_info *rt) |
| 142 | { |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 143 | rt->rt6i_flags &= ~RTF_EXPIRES; |
Hannes Frederic Sowa | 01ba16d | 2013-10-24 10:14:27 +0200 | [diff] [blame] | 144 | rt->dst.expires = 0; |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | static inline void rt6_set_expires(struct rt6_info *rt, unsigned long expires) |
| 148 | { |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 149 | rt->dst.expires = expires; |
YOSHIFUJI Hideaki / 吉藤英明 | ecd9883 | 2013-02-20 00:29:08 +0000 | [diff] [blame] | 150 | rt->rt6i_flags |= RTF_EXPIRES; |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 151 | } |
| 152 | |
YOSHIFUJI Hideaki / 吉藤英明 | ecd9883 | 2013-02-20 00:29:08 +0000 | [diff] [blame] | 153 | static inline void rt6_update_expires(struct rt6_info *rt0, int timeout) |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 154 | { |
YOSHIFUJI Hideaki / 吉藤英明 | ecd9883 | 2013-02-20 00:29:08 +0000 | [diff] [blame] | 155 | struct rt6_info *rt; |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 156 | |
YOSHIFUJI Hideaki / 吉藤英明 | ecd9883 | 2013-02-20 00:29:08 +0000 | [diff] [blame] | 157 | for (rt = rt0; rt && !(rt->rt6i_flags & RTF_EXPIRES); |
| 158 | rt = (struct rt6_info *)rt->dst.from); |
| 159 | if (rt && rt != rt0) |
| 160 | rt0->dst.expires = rt->dst.expires; |
| 161 | |
| 162 | dst_set_expires(&rt0->dst, timeout); |
| 163 | rt0->rt6i_flags |= RTF_EXPIRES; |
Gao feng | 1716a96 | 2012-04-06 00:13:10 +0000 | [diff] [blame] | 164 | } |
| 165 | |
Martin KaFai Lau | b197df4 | 2015-05-22 20:56:01 -0700 | [diff] [blame] | 166 | static inline u32 rt6_get_cookie(const struct rt6_info *rt) |
| 167 | { |
Martin KaFai Lau | d52d399 | 2015-05-22 20:56:06 -0700 | [diff] [blame^] | 168 | if (rt->rt6i_flags & RTF_PCPU || unlikely(rt->dst.flags & DST_NOCACHE)) |
Martin KaFai Lau | 3da59bd | 2015-05-22 20:56:03 -0700 | [diff] [blame] | 169 | rt = (struct rt6_info *)(rt->dst.from); |
| 170 | |
Martin KaFai Lau | b197df4 | 2015-05-22 20:56:01 -0700 | [diff] [blame] | 171 | return rt->rt6i_node ? rt->rt6i_node->fn_sernum : 0; |
| 172 | } |
| 173 | |
Amerigo Wang | 94e187c | 2012-10-29 00:13:19 +0000 | [diff] [blame] | 174 | static inline void ip6_rt_put(struct rt6_info *rt) |
| 175 | { |
| 176 | /* dst_release() accepts a NULL parameter. |
| 177 | * We rely on dst being first structure in struct rt6_info |
| 178 | */ |
| 179 | BUILD_BUG_ON(offsetof(struct rt6_info, dst) != 0); |
| 180 | dst_release(&rt->dst); |
| 181 | } |
| 182 | |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 183 | enum fib6_walk_state { |
| 184 | #ifdef CONFIG_IPV6_SUBTREES |
| 185 | FWS_S, |
| 186 | #endif |
| 187 | FWS_L, |
| 188 | FWS_R, |
| 189 | FWS_C, |
| 190 | FWS_U |
| 191 | }; |
| 192 | |
| 193 | struct fib6_walker { |
Alexey Dobriyan | bbef49d | 2010-02-18 08:13:30 +0000 | [diff] [blame] | 194 | struct list_head lh; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | struct fib6_node *root, *node; |
| 196 | struct rt6_info *leaf; |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 197 | enum fib6_walk_state state; |
| 198 | bool prune; |
Patrick McHardy | 2bec5a3 | 2010-02-08 05:19:03 +0000 | [diff] [blame] | 199 | unsigned int skip; |
| 200 | unsigned int count; |
Hannes Frederic Sowa | 94b2cfe | 2014-10-06 19:58:34 +0200 | [diff] [blame] | 201 | int (*func)(struct fib6_walker *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | void *args; |
| 203 | }; |
| 204 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | struct rt6_statistics { |
| 206 | __u32 fib_nodes; |
| 207 | __u32 fib_route_nodes; |
| 208 | __u32 fib_rt_alloc; /* permanent routes */ |
| 209 | __u32 fib_rt_entries; /* rt entries in table */ |
| 210 | __u32 fib_rt_cache; /* cache routes */ |
| 211 | __u32 fib_discarded_routes; |
| 212 | }; |
| 213 | |
| 214 | #define RTN_TL_ROOT 0x0001 |
| 215 | #define RTN_ROOT 0x0002 /* tree root node */ |
| 216 | #define RTN_RTINFO 0x0004 /* node with valid routing info */ |
| 217 | |
| 218 | /* |
| 219 | * priority levels (or metrics) |
| 220 | * |
| 221 | */ |
| 222 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 224 | struct fib6_table { |
| 225 | struct hlist_node tb6_hlist; |
| 226 | u32 tb6_id; |
| 227 | rwlock_t tb6_lock; |
| 228 | struct fib6_node tb6_root; |
David S. Miller | 8e77327 | 2012-06-11 00:01:52 -0700 | [diff] [blame] | 229 | struct inet_peer_base tb6_peers; |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 230 | }; |
| 231 | |
| 232 | #define RT6_TABLE_UNSPEC RT_TABLE_UNSPEC |
| 233 | #define RT6_TABLE_MAIN RT_TABLE_MAIN |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 234 | #define RT6_TABLE_DFLT RT6_TABLE_MAIN |
| 235 | #define RT6_TABLE_INFO RT6_TABLE_MAIN |
| 236 | #define RT6_TABLE_PREFIX RT6_TABLE_MAIN |
| 237 | |
| 238 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
| 239 | #define FIB6_TABLE_MIN 1 |
| 240 | #define FIB6_TABLE_MAX RT_TABLE_MAX |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 241 | #define RT6_TABLE_LOCAL RT_TABLE_LOCAL |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 242 | #else |
| 243 | #define FIB6_TABLE_MIN RT_TABLE_MAIN |
| 244 | #define FIB6_TABLE_MAX FIB6_TABLE_MIN |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 245 | #define RT6_TABLE_LOCAL RT6_TABLE_MAIN |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 246 | #endif |
| 247 | |
Daniel Lezcano | 8ed6778 | 2008-03-04 13:48:30 -0800 | [diff] [blame] | 248 | typedef struct rt6_info *(*pol_lookup_t)(struct net *, |
| 249 | struct fib6_table *, |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 250 | struct flowi6 *, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | |
| 252 | /* |
| 253 | * exported functions |
| 254 | */ |
| 255 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 256 | struct fib6_table *fib6_get_table(struct net *net, u32 id); |
| 257 | struct fib6_table *fib6_new_table(struct net *net, u32 id); |
| 258 | struct dst_entry *fib6_rule_lookup(struct net *net, struct flowi6 *fl6, |
| 259 | int flags, pol_lookup_t lookup); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 260 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 261 | struct fib6_node *fib6_lookup(struct fib6_node *root, |
| 262 | const struct in6_addr *daddr, |
| 263 | const struct in6_addr *saddr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 265 | struct fib6_node *fib6_locate(struct fib6_node *root, |
| 266 | const struct in6_addr *daddr, int dst_len, |
| 267 | const struct in6_addr *saddr, int src_len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 269 | void fib6_clean_all(struct net *net, int (*func)(struct rt6_info *, void *arg), |
Li RongQing | 0c3584d | 2013-12-27 16:32:38 +0800 | [diff] [blame] | 270 | void *arg); |
Thomas Graf | c71099a | 2006-08-04 23:20:06 -0700 | [diff] [blame] | 271 | |
Florian Westphal | e715b6d | 2015-01-05 23:57:44 +0100 | [diff] [blame] | 272 | int fib6_add(struct fib6_node *root, struct rt6_info *rt, |
| 273 | struct nl_info *info, struct mx6_config *mxc); |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 274 | int fib6_del(struct rt6_info *rt, struct nl_info *info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 276 | void inet6_rt_notify(int event, struct rt6_info *rt, struct nl_info *info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 278 | void fib6_run_gc(unsigned long expires, struct net *net, bool force); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 280 | void fib6_gc_cleanup(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 282 | int fib6_init(void); |
Thomas Graf | 101367c | 2006-08-04 03:39:02 -0700 | [diff] [blame] | 283 | |
Hannes Frederic Sowa | 8d2ca1d | 2013-09-21 16:55:59 +0200 | [diff] [blame] | 284 | int ipv6_route_open(struct inode *inode, struct file *file); |
| 285 | |
Daniel Lezcano | 7e5449c | 2007-12-08 00:14:54 -0800 | [diff] [blame] | 286 | #ifdef CONFIG_IPV6_MULTIPLE_TABLES |
Joe Perches | 5c3a0fd | 2013-09-21 10:22:42 -0700 | [diff] [blame] | 287 | int fib6_rules_init(void); |
| 288 | void fib6_rules_cleanup(void); |
Daniel Lezcano | 7e5449c | 2007-12-08 00:14:54 -0800 | [diff] [blame] | 289 | #else |
| 290 | static inline int fib6_rules_init(void) |
| 291 | { |
| 292 | return 0; |
| 293 | } |
| 294 | static inline void fib6_rules_cleanup(void) |
| 295 | { |
| 296 | return ; |
| 297 | } |
| 298 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | #endif |