blob: 161900674009d832752a2b3929586b53522f064f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* flow.c: Generic flow cache.
2 *
3 * Copyright (C) 2003 Alexey N. Kuznetsov (kuznet@ms2.inr.ac.ru)
4 * Copyright (C) 2003 David S. Miller (davem@redhat.com)
5 */
6
7#include <linux/kernel.h>
8#include <linux/module.h>
9#include <linux/list.h>
10#include <linux/jhash.h>
11#include <linux/interrupt.h>
12#include <linux/mm.h>
13#include <linux/random.h>
14#include <linux/init.h>
15#include <linux/slab.h>
16#include <linux/smp.h>
17#include <linux/completion.h>
18#include <linux/percpu.h>
19#include <linux/bitops.h>
20#include <linux/notifier.h>
21#include <linux/cpu.h>
22#include <linux/cpumask.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080023#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <net/flow.h>
25#include <asm/atomic.h>
Trent Jaegerdf718372005-12-13 23:12:27 -080026#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28struct flow_cache_entry {
Timo Teräs8e4795602010-04-07 00:30:07 +000029 union {
30 struct hlist_node hlist;
31 struct list_head gc_list;
32 } u;
Timo Teräsfe1a5f02010-04-07 00:30:04 +000033 u16 family;
34 u8 dir;
35 u32 genid;
36 struct flowi key;
37 struct flow_cache_object *object;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038};
39
Timo Teräsd7997fe2010-03-31 00:17:06 +000040struct flow_cache_percpu {
Timo Teräs8e4795602010-04-07 00:30:07 +000041 struct hlist_head *hash_table;
Timo Teräsd7997fe2010-03-31 00:17:06 +000042 int hash_count;
43 u32 hash_rnd;
44 int hash_rnd_recalc;
45 struct tasklet_struct flush_tasklet;
Eric Dumazet5f58a5c2008-02-07 18:03:18 -080046};
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48struct flow_flush_info {
Timo Teräsfe1a5f02010-04-07 00:30:04 +000049 struct flow_cache *cache;
Timo Teräsd7997fe2010-03-31 00:17:06 +000050 atomic_t cpuleft;
51 struct completion completion;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052};
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Timo Teräsd7997fe2010-03-31 00:17:06 +000054struct flow_cache {
55 u32 hash_shift;
56 unsigned long order;
Timo Teräsfe1a5f02010-04-07 00:30:04 +000057 struct flow_cache_percpu *percpu;
Timo Teräsd7997fe2010-03-31 00:17:06 +000058 struct notifier_block hotcpu_notifier;
59 int low_watermark;
60 int high_watermark;
61 struct timer_list rnd_timer;
62};
63
64atomic_t flow_cache_genid = ATOMIC_INIT(0);
65static struct flow_cache flow_cache_global;
66static struct kmem_cache *flow_cachep;
67
Timo Teräs8e4795602010-04-07 00:30:07 +000068static DEFINE_SPINLOCK(flow_cache_gc_lock);
69static LIST_HEAD(flow_cache_gc_list);
70
Timo Teräsd7997fe2010-03-31 00:17:06 +000071#define flow_cache_hash_size(cache) (1 << (cache)->hash_shift)
72#define FLOW_HASH_RND_PERIOD (10 * 60 * HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74static void flow_cache_new_hashrnd(unsigned long arg)
75{
Timo Teräsd7997fe2010-03-31 00:17:06 +000076 struct flow_cache *fc = (void *) arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 int i;
78
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -070079 for_each_possible_cpu(i)
Timo Teräsd7997fe2010-03-31 00:17:06 +000080 per_cpu_ptr(fc->percpu, i)->hash_rnd_recalc = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Timo Teräsd7997fe2010-03-31 00:17:06 +000082 fc->rnd_timer.expires = jiffies + FLOW_HASH_RND_PERIOD;
83 add_timer(&fc->rnd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
85
Timo Teräsfe1a5f02010-04-07 00:30:04 +000086static int flow_entry_valid(struct flow_cache_entry *fle)
87{
88 if (atomic_read(&flow_cache_genid) != fle->genid)
89 return 0;
90 if (fle->object && !fle->object->ops->check(fle->object))
91 return 0;
92 return 1;
93}
94
Timo Teräs8e4795602010-04-07 00:30:07 +000095static void flow_entry_kill(struct flow_cache_entry *fle)
James Morris134b0fc2006-10-05 15:42:27 -050096{
97 if (fle->object)
Timo Teräsfe1a5f02010-04-07 00:30:04 +000098 fle->object->ops->delete(fle->object);
James Morris134b0fc2006-10-05 15:42:27 -050099 kmem_cache_free(flow_cachep, fle);
Timo Teräs8e4795602010-04-07 00:30:07 +0000100}
101
102static void flow_cache_gc_task(struct work_struct *work)
103{
104 struct list_head gc_list;
105 struct flow_cache_entry *fce, *n;
106
107 INIT_LIST_HEAD(&gc_list);
108 spin_lock_bh(&flow_cache_gc_lock);
109 list_splice_tail_init(&flow_cache_gc_list, &gc_list);
110 spin_unlock_bh(&flow_cache_gc_lock);
111
112 list_for_each_entry_safe(fce, n, &gc_list, u.gc_list)
113 flow_entry_kill(fce);
114}
115static DECLARE_WORK(flow_cache_gc_work, flow_cache_gc_task);
116
117static void flow_cache_queue_garbage(struct flow_cache_percpu *fcp,
118 int deleted, struct list_head *gc_list)
119{
120 if (deleted) {
121 fcp->hash_count -= deleted;
122 spin_lock_bh(&flow_cache_gc_lock);
123 list_splice_tail(gc_list, &flow_cache_gc_list);
124 spin_unlock_bh(&flow_cache_gc_lock);
125 schedule_work(&flow_cache_gc_work);
126 }
James Morris134b0fc2006-10-05 15:42:27 -0500127}
128
Timo Teräsd7997fe2010-03-31 00:17:06 +0000129static void __flow_cache_shrink(struct flow_cache *fc,
130 struct flow_cache_percpu *fcp,
131 int shrink_to)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Timo Teräs8e4795602010-04-07 00:30:07 +0000133 struct flow_cache_entry *fle;
134 struct hlist_node *entry, *tmp;
135 LIST_HEAD(gc_list);
136 int i, deleted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Timo Teräsd7997fe2010-03-31 00:17:06 +0000138 for (i = 0; i < flow_cache_hash_size(fc); i++) {
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000139 int saved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Timo Teräs8e4795602010-04-07 00:30:07 +0000141 hlist_for_each_entry_safe(fle, entry, tmp,
142 &fcp->hash_table[i], u.hlist) {
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000143 if (saved < shrink_to &&
144 flow_entry_valid(fle)) {
145 saved++;
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000146 } else {
Timo Teräs8e4795602010-04-07 00:30:07 +0000147 deleted++;
148 hlist_del(&fle->u.hlist);
149 list_add_tail(&fle->u.gc_list, &gc_list);
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 }
152 }
Timo Teräs8e4795602010-04-07 00:30:07 +0000153
154 flow_cache_queue_garbage(fcp, deleted, &gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
156
Timo Teräsd7997fe2010-03-31 00:17:06 +0000157static void flow_cache_shrink(struct flow_cache *fc,
158 struct flow_cache_percpu *fcp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Timo Teräsd7997fe2010-03-31 00:17:06 +0000160 int shrink_to = fc->low_watermark / flow_cache_hash_size(fc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Timo Teräsd7997fe2010-03-31 00:17:06 +0000162 __flow_cache_shrink(fc, fcp, shrink_to);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
164
Timo Teräsd7997fe2010-03-31 00:17:06 +0000165static void flow_new_hash_rnd(struct flow_cache *fc,
166 struct flow_cache_percpu *fcp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Timo Teräsd7997fe2010-03-31 00:17:06 +0000168 get_random_bytes(&fcp->hash_rnd, sizeof(u32));
169 fcp->hash_rnd_recalc = 0;
170 __flow_cache_shrink(fc, fcp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171}
172
Timo Teräsd7997fe2010-03-31 00:17:06 +0000173static u32 flow_hash_code(struct flow_cache *fc,
174 struct flow_cache_percpu *fcp,
175 struct flowi *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
177 u32 *k = (u32 *) key;
178
Timo Teräsd7997fe2010-03-31 00:17:06 +0000179 return (jhash2(k, (sizeof(*key) / sizeof(u32)), fcp->hash_rnd)
180 & (flow_cache_hash_size(fc) - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181}
182
183#if (BITS_PER_LONG == 64)
184typedef u64 flow_compare_t;
185#else
186typedef u32 flow_compare_t;
187#endif
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189/* I hear what you're saying, use memcmp. But memcmp cannot make
190 * important assumptions that we can here, such as alignment and
191 * constant size.
192 */
193static int flow_key_compare(struct flowi *key1, struct flowi *key2)
194{
195 flow_compare_t *k1, *k1_lim, *k2;
196 const int n_elem = sizeof(struct flowi) / sizeof(flow_compare_t);
197
Pavel Emelyanovf0fe91d2007-10-23 21:15:21 -0700198 BUILD_BUG_ON(sizeof(struct flowi) % sizeof(flow_compare_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 k1 = (flow_compare_t *) key1;
201 k1_lim = k1 + n_elem;
202
203 k2 = (flow_compare_t *) key2;
204
205 do {
206 if (*k1++ != *k2++)
207 return 1;
208 } while (k1 < k1_lim);
209
210 return 0;
211}
212
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000213struct flow_cache_object *
214flow_cache_lookup(struct net *net, struct flowi *key, u16 family, u8 dir,
215 flow_resolve_t resolver, void *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
Timo Teräsd7997fe2010-03-31 00:17:06 +0000217 struct flow_cache *fc = &flow_cache_global;
218 struct flow_cache_percpu *fcp;
Timo Teräs8e4795602010-04-07 00:30:07 +0000219 struct flow_cache_entry *fle, *tfle;
220 struct hlist_node *entry;
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000221 struct flow_cache_object *flo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 local_bh_disable();
Timo Teräsd7997fe2010-03-31 00:17:06 +0000225 fcp = per_cpu_ptr(fc->percpu, smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 fle = NULL;
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000228 flo = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 /* Packet really early in init? Making flow_cache_init a
230 * pre-smp initcall would solve this. --RR */
Timo Teräsd7997fe2010-03-31 00:17:06 +0000231 if (!fcp->hash_table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 goto nocache;
233
Timo Teräsd7997fe2010-03-31 00:17:06 +0000234 if (fcp->hash_rnd_recalc)
235 flow_new_hash_rnd(fc, fcp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000237 hash = flow_hash_code(fc, fcp, key);
Timo Teräs8e4795602010-04-07 00:30:07 +0000238 hlist_for_each_entry(tfle, entry, &fcp->hash_table[hash], u.hlist) {
239 if (tfle->family == family &&
240 tfle->dir == dir &&
241 flow_key_compare(key, &tfle->key) == 0) {
242 fle = tfle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 break;
Timo Teräs8e4795602010-04-07 00:30:07 +0000244 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 }
246
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000247 if (unlikely(!fle)) {
Timo Teräsd7997fe2010-03-31 00:17:06 +0000248 if (fcp->hash_count > fc->high_watermark)
249 flow_cache_shrink(fc, fcp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800251 fle = kmem_cache_alloc(flow_cachep, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 if (fle) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 fle->family = family;
254 fle->dir = dir;
255 memcpy(&fle->key, key, sizeof(*key));
256 fle->object = NULL;
Timo Teräs8e4795602010-04-07 00:30:07 +0000257 hlist_add_head(&fle->u.hlist, &fcp->hash_table[hash]);
Timo Teräsd7997fe2010-03-31 00:17:06 +0000258 fcp->hash_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 }
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000260 } else if (likely(fle->genid == atomic_read(&flow_cache_genid))) {
261 flo = fle->object;
262 if (!flo)
263 goto ret_object;
264 flo = flo->ops->get(flo);
265 if (flo)
266 goto ret_object;
267 } else if (fle->object) {
268 flo = fle->object;
269 flo->ops->delete(flo);
270 fle->object = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 }
272
273nocache:
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000274 flo = NULL;
275 if (fle) {
276 flo = fle->object;
277 fle->object = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 }
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000279 flo = resolver(net, key, family, dir, flo, ctx);
280 if (fle) {
281 fle->genid = atomic_read(&flow_cache_genid);
282 if (!IS_ERR(flo))
283 fle->object = flo;
284 else
285 fle->genid--;
286 } else {
287 if (flo && !IS_ERR(flo))
288 flo->ops->delete(flo);
289 }
290ret_object:
291 local_bh_enable();
292 return flo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
295static void flow_cache_flush_tasklet(unsigned long data)
296{
297 struct flow_flush_info *info = (void *)data;
Timo Teräsd7997fe2010-03-31 00:17:06 +0000298 struct flow_cache *fc = info->cache;
299 struct flow_cache_percpu *fcp;
Timo Teräs8e4795602010-04-07 00:30:07 +0000300 struct flow_cache_entry *fle;
301 struct hlist_node *entry, *tmp;
302 LIST_HEAD(gc_list);
303 int i, deleted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Timo Teräsd7997fe2010-03-31 00:17:06 +0000305 fcp = per_cpu_ptr(fc->percpu, smp_processor_id());
306 for (i = 0; i < flow_cache_hash_size(fc); i++) {
Timo Teräs8e4795602010-04-07 00:30:07 +0000307 hlist_for_each_entry_safe(fle, entry, tmp,
308 &fcp->hash_table[i], u.hlist) {
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000309 if (flow_entry_valid(fle))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 continue;
311
Timo Teräs8e4795602010-04-07 00:30:07 +0000312 deleted++;
313 hlist_del(&fle->u.hlist);
314 list_add_tail(&fle->u.gc_list, &gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 }
316 }
317
Timo Teräs8e4795602010-04-07 00:30:07 +0000318 flow_cache_queue_garbage(fcp, deleted, &gc_list);
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 if (atomic_dec_and_test(&info->cpuleft))
321 complete(&info->completion);
322}
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324static void flow_cache_flush_per_cpu(void *data)
325{
326 struct flow_flush_info *info = data;
327 int cpu;
328 struct tasklet_struct *tasklet;
329
330 cpu = smp_processor_id();
Timo Teräsd7997fe2010-03-31 00:17:06 +0000331 tasklet = &per_cpu_ptr(info->cache->percpu, cpu)->flush_tasklet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 tasklet->data = (unsigned long)info;
333 tasklet_schedule(tasklet);
334}
335
336void flow_cache_flush(void)
337{
338 struct flow_flush_info info;
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800339 static DEFINE_MUTEX(flow_flush_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 /* Don't want cpus going down or up during this. */
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100342 get_online_cpus();
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800343 mutex_lock(&flow_flush_sem);
Timo Teräsd7997fe2010-03-31 00:17:06 +0000344 info.cache = &flow_cache_global;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 atomic_set(&info.cpuleft, num_online_cpus());
346 init_completion(&info.completion);
347
348 local_bh_disable();
Jens Axboe8691e5a2008-06-06 11:18:06 +0200349 smp_call_function(flow_cache_flush_per_cpu, &info, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 flow_cache_flush_tasklet((unsigned long)&info);
351 local_bh_enable();
352
353 wait_for_completion(&info.completion);
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -0800354 mutex_unlock(&flow_flush_sem);
Gautham R Shenoy86ef5c92008-01-25 21:08:02 +0100355 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356}
357
Timo Teräsd7997fe2010-03-31 00:17:06 +0000358static void __init flow_cache_cpu_prepare(struct flow_cache *fc,
359 struct flow_cache_percpu *fcp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
Timo Teräs8e4795602010-04-07 00:30:07 +0000361 fcp->hash_table = (struct hlist_head *)
Timo Teräsd7997fe2010-03-31 00:17:06 +0000362 __get_free_pages(GFP_KERNEL|__GFP_ZERO, fc->order);
363 if (!fcp->hash_table)
364 panic("NET: failed to allocate flow cache order %lu\n", fc->order);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Timo Teräsd7997fe2010-03-31 00:17:06 +0000366 fcp->hash_rnd_recalc = 1;
367 fcp->hash_count = 0;
368 tasklet_init(&fcp->flush_tasklet, flow_cache_flush_tasklet, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371static int flow_cache_cpu(struct notifier_block *nfb,
372 unsigned long action,
373 void *hcpu)
374{
Timo Teräsd7997fe2010-03-31 00:17:06 +0000375 struct flow_cache *fc = container_of(nfb, struct flow_cache, hotcpu_notifier);
376 int cpu = (unsigned long) hcpu;
377 struct flow_cache_percpu *fcp = per_cpu_ptr(fc->percpu, cpu);
378
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700379 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN)
Timo Teräsd7997fe2010-03-31 00:17:06 +0000380 __flow_cache_shrink(fc, fcp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 return NOTIFY_OK;
382}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Timo Teräsd7997fe2010-03-31 00:17:06 +0000384static int flow_cache_init(struct flow_cache *fc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
Timo Teräsd7997fe2010-03-31 00:17:06 +0000386 unsigned long order;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 int i;
388
Timo Teräsd7997fe2010-03-31 00:17:06 +0000389 fc->hash_shift = 10;
390 fc->low_watermark = 2 * flow_cache_hash_size(fc);
391 fc->high_watermark = 4 * flow_cache_hash_size(fc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Timo Teräsd7997fe2010-03-31 00:17:06 +0000393 for (order = 0;
394 (PAGE_SIZE << order) <
Timo Teräs8e4795602010-04-07 00:30:07 +0000395 (sizeof(struct hlist_head)*flow_cache_hash_size(fc));
Timo Teräsd7997fe2010-03-31 00:17:06 +0000396 order++)
397 /* NOTHING */;
398 fc->order = order;
399 fc->percpu = alloc_percpu(struct flow_cache_percpu);
400
401 setup_timer(&fc->rnd_timer, flow_cache_new_hashrnd,
402 (unsigned long) fc);
403 fc->rnd_timer.expires = jiffies + FLOW_HASH_RND_PERIOD;
404 add_timer(&fc->rnd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -0700406 for_each_possible_cpu(i)
Timo Teräsd7997fe2010-03-31 00:17:06 +0000407 flow_cache_cpu_prepare(fc, per_cpu_ptr(fc->percpu, i));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Timo Teräsd7997fe2010-03-31 00:17:06 +0000409 fc->hotcpu_notifier = (struct notifier_block){
410 .notifier_call = flow_cache_cpu,
411 };
412 register_hotcpu_notifier(&fc->hotcpu_notifier);
413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 return 0;
415}
416
Timo Teräsd7997fe2010-03-31 00:17:06 +0000417static int __init flow_cache_init_global(void)
418{
419 flow_cachep = kmem_cache_create("flow_cache",
420 sizeof(struct flow_cache_entry),
421 0, SLAB_PANIC, NULL);
422
423 return flow_cache_init(&flow_cache_global);
424}
425
426module_init(flow_cache_init_global);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428EXPORT_SYMBOL(flow_cache_genid);
429EXPORT_SYMBOL(flow_cache_lookup);