blob: 47b6d26c2afb395ff2ecc19232af7679eafb2a20 [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>
Arun Sharma600634972011-07-26 16:09:06 -070025#include <linux/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;
dpward0542b692011-08-31 06:05:27 +000033 struct net *net;
Timo Teräsfe1a5f02010-04-07 00:30:04 +000034 u16 family;
35 u8 dir;
36 u32 genid;
37 struct flowi key;
38 struct flow_cache_object *object;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039};
40
Timo Teräsd7997fe2010-03-31 00:17:06 +000041struct flow_cache_percpu {
Timo Teräs8e4795602010-04-07 00:30:07 +000042 struct hlist_head *hash_table;
Timo Teräsd7997fe2010-03-31 00:17:06 +000043 int hash_count;
44 u32 hash_rnd;
45 int hash_rnd_recalc;
46 struct tasklet_struct flush_tasklet;
Eric Dumazet5f58a5c2008-02-07 18:03:18 -080047};
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49struct flow_flush_info {
Timo Teräsfe1a5f02010-04-07 00:30:04 +000050 struct flow_cache *cache;
Timo Teräsd7997fe2010-03-31 00:17:06 +000051 atomic_t cpuleft;
52 struct completion completion;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053};
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Timo Teräsd7997fe2010-03-31 00:17:06 +000055struct flow_cache {
56 u32 hash_shift;
Eric Dumazet83b6b1f2010-09-10 07:00:25 +000057 struct flow_cache_percpu __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);
Eric Dumazet9e34a5b2010-07-09 21:22:04 +000065EXPORT_SYMBOL(flow_cache_genid);
Timo Teräsd7997fe2010-03-31 00:17:06 +000066static struct flow_cache flow_cache_global;
Eric Dumazet83b6b1f2010-09-10 07:00:25 +000067static struct kmem_cache *flow_cachep __read_mostly;
Timo Teräsd7997fe2010-03-31 00:17:06 +000068
Timo Teräs8e4795602010-04-07 00:30:07 +000069static DEFINE_SPINLOCK(flow_cache_gc_lock);
70static LIST_HEAD(flow_cache_gc_list);
71
Timo Teräsd7997fe2010-03-31 00:17:06 +000072#define flow_cache_hash_size(cache) (1 << (cache)->hash_shift)
73#define FLOW_HASH_RND_PERIOD (10 * 60 * HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75static void flow_cache_new_hashrnd(unsigned long arg)
76{
Timo Teräsd7997fe2010-03-31 00:17:06 +000077 struct flow_cache *fc = (void *) arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 int i;
79
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -070080 for_each_possible_cpu(i)
Timo Teräsd7997fe2010-03-31 00:17:06 +000081 per_cpu_ptr(fc->percpu, i)->hash_rnd_recalc = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Timo Teräsd7997fe2010-03-31 00:17:06 +000083 fc->rnd_timer.expires = jiffies + FLOW_HASH_RND_PERIOD;
84 add_timer(&fc->rnd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
Timo Teräsfe1a5f02010-04-07 00:30:04 +000087static int flow_entry_valid(struct flow_cache_entry *fle)
88{
89 if (atomic_read(&flow_cache_genid) != fle->genid)
90 return 0;
91 if (fle->object && !fle->object->ops->check(fle->object))
92 return 0;
93 return 1;
94}
95
Timo Teräs8e4795602010-04-07 00:30:07 +000096static void flow_entry_kill(struct flow_cache_entry *fle)
James Morris134b0fc2006-10-05 15:42:27 -050097{
98 if (fle->object)
Timo Teräsfe1a5f02010-04-07 00:30:04 +000099 fle->object->ops->delete(fle->object);
James Morris134b0fc2006-10-05 15:42:27 -0500100 kmem_cache_free(flow_cachep, fle);
Timo Teräs8e4795602010-04-07 00:30:07 +0000101}
102
103static void flow_cache_gc_task(struct work_struct *work)
104{
105 struct list_head gc_list;
106 struct flow_cache_entry *fce, *n;
107
108 INIT_LIST_HEAD(&gc_list);
109 spin_lock_bh(&flow_cache_gc_lock);
110 list_splice_tail_init(&flow_cache_gc_list, &gc_list);
111 spin_unlock_bh(&flow_cache_gc_lock);
112
113 list_for_each_entry_safe(fce, n, &gc_list, u.gc_list)
114 flow_entry_kill(fce);
115}
116static DECLARE_WORK(flow_cache_gc_work, flow_cache_gc_task);
117
118static void flow_cache_queue_garbage(struct flow_cache_percpu *fcp,
119 int deleted, struct list_head *gc_list)
120{
121 if (deleted) {
122 fcp->hash_count -= deleted;
123 spin_lock_bh(&flow_cache_gc_lock);
124 list_splice_tail(gc_list, &flow_cache_gc_list);
125 spin_unlock_bh(&flow_cache_gc_lock);
126 schedule_work(&flow_cache_gc_work);
127 }
James Morris134b0fc2006-10-05 15:42:27 -0500128}
129
Timo Teräsd7997fe2010-03-31 00:17:06 +0000130static void __flow_cache_shrink(struct flow_cache *fc,
131 struct flow_cache_percpu *fcp,
132 int shrink_to)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Timo Teräs8e4795602010-04-07 00:30:07 +0000134 struct flow_cache_entry *fle;
135 struct hlist_node *entry, *tmp;
136 LIST_HEAD(gc_list);
137 int i, deleted = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Timo Teräsd7997fe2010-03-31 00:17:06 +0000139 for (i = 0; i < flow_cache_hash_size(fc); i++) {
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000140 int saved = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Timo Teräs8e4795602010-04-07 00:30:07 +0000142 hlist_for_each_entry_safe(fle, entry, tmp,
143 &fcp->hash_table[i], u.hlist) {
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000144 if (saved < shrink_to &&
145 flow_entry_valid(fle)) {
146 saved++;
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000147 } else {
Timo Teräs8e4795602010-04-07 00:30:07 +0000148 deleted++;
149 hlist_del(&fle->u.hlist);
150 list_add_tail(&fle->u.gc_list, &gc_list);
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 }
153 }
Timo Teräs8e4795602010-04-07 00:30:07 +0000154
155 flow_cache_queue_garbage(fcp, deleted, &gc_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
Timo Teräsd7997fe2010-03-31 00:17:06 +0000158static void flow_cache_shrink(struct flow_cache *fc,
159 struct flow_cache_percpu *fcp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Timo Teräsd7997fe2010-03-31 00:17:06 +0000161 int shrink_to = fc->low_watermark / flow_cache_hash_size(fc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Timo Teräsd7997fe2010-03-31 00:17:06 +0000163 __flow_cache_shrink(fc, fcp, shrink_to);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
Timo Teräsd7997fe2010-03-31 00:17:06 +0000166static void flow_new_hash_rnd(struct flow_cache *fc,
167 struct flow_cache_percpu *fcp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Timo Teräsd7997fe2010-03-31 00:17:06 +0000169 get_random_bytes(&fcp->hash_rnd, sizeof(u32));
170 fcp->hash_rnd_recalc = 0;
171 __flow_cache_shrink(fc, fcp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
173
Timo Teräsd7997fe2010-03-31 00:17:06 +0000174static u32 flow_hash_code(struct flow_cache *fc,
175 struct flow_cache_percpu *fcp,
David S. Millerdee9f4b2011-02-22 18:44:31 -0800176 const struct flowi *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
David S. Millerdee9f4b2011-02-22 18:44:31 -0800178 const u32 *k = (const u32 *) key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Eric Dumazeta02cec22010-09-22 20:43:57 +0000180 return jhash2(k, (sizeof(*key) / sizeof(u32)), fcp->hash_rnd)
181 & (flow_cache_hash_size(fc) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182}
183
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000184typedef unsigned long flow_compare_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186/* I hear what you're saying, use memcmp. But memcmp cannot make
187 * important assumptions that we can here, such as alignment and
188 * constant size.
189 */
David S. Millerdee9f4b2011-02-22 18:44:31 -0800190static int flow_key_compare(const struct flowi *key1, const struct flowi *key2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
David S. Millerdee9f4b2011-02-22 18:44:31 -0800192 const flow_compare_t *k1, *k1_lim, *k2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 const int n_elem = sizeof(struct flowi) / sizeof(flow_compare_t);
194
Pavel Emelyanovf0fe91d2007-10-23 21:15:21 -0700195 BUILD_BUG_ON(sizeof(struct flowi) % sizeof(flow_compare_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
David S. Millerdee9f4b2011-02-22 18:44:31 -0800197 k1 = (const flow_compare_t *) key1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 k1_lim = k1 + n_elem;
199
David S. Millerdee9f4b2011-02-22 18:44:31 -0800200 k2 = (const flow_compare_t *) key2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 do {
203 if (*k1++ != *k2++)
204 return 1;
205 } while (k1 < k1_lim);
206
207 return 0;
208}
209
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000210struct flow_cache_object *
David S. Millerdee9f4b2011-02-22 18:44:31 -0800211flow_cache_lookup(struct net *net, const struct flowi *key, u16 family, u8 dir,
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000212 flow_resolve_t resolver, void *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
Timo Teräsd7997fe2010-03-31 00:17:06 +0000214 struct flow_cache *fc = &flow_cache_global;
215 struct flow_cache_percpu *fcp;
Timo Teräs8e4795602010-04-07 00:30:07 +0000216 struct flow_cache_entry *fle, *tfle;
217 struct hlist_node *entry;
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000218 struct flow_cache_object *flo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 unsigned int hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 local_bh_disable();
Eric Dumazet7a9b2d52010-06-24 00:52:37 +0000222 fcp = this_cpu_ptr(fc->percpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 fle = NULL;
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000225 flo = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 /* Packet really early in init? Making flow_cache_init a
227 * pre-smp initcall would solve this. --RR */
Timo Teräsd7997fe2010-03-31 00:17:06 +0000228 if (!fcp->hash_table)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 goto nocache;
230
Timo Teräsd7997fe2010-03-31 00:17:06 +0000231 if (fcp->hash_rnd_recalc)
232 flow_new_hash_rnd(fc, fcp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000234 hash = flow_hash_code(fc, fcp, key);
Timo Teräs8e4795602010-04-07 00:30:07 +0000235 hlist_for_each_entry(tfle, entry, &fcp->hash_table[hash], u.hlist) {
dpward0542b692011-08-31 06:05:27 +0000236 if (tfle->net == net &&
237 tfle->family == family &&
Timo Teräs8e4795602010-04-07 00:30:07 +0000238 tfle->dir == dir &&
239 flow_key_compare(key, &tfle->key) == 0) {
240 fle = tfle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 break;
Timo Teräs8e4795602010-04-07 00:30:07 +0000242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
244
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000245 if (unlikely(!fle)) {
Timo Teräsd7997fe2010-03-31 00:17:06 +0000246 if (fcp->hash_count > fc->high_watermark)
247 flow_cache_shrink(fc, fcp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Christoph Lameter54e6ecb2006-12-06 20:33:16 -0800249 fle = kmem_cache_alloc(flow_cachep, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 if (fle) {
dpward0542b692011-08-31 06:05:27 +0000251 fle->net = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 fle->family = family;
253 fle->dir = dir;
254 memcpy(&fle->key, key, sizeof(*key));
255 fle->object = NULL;
Timo Teräs8e4795602010-04-07 00:30:07 +0000256 hlist_add_head(&fle->u.hlist, &fcp->hash_table[hash]);
Timo Teräsd7997fe2010-03-31 00:17:06 +0000257 fcp->hash_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 }
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000259 } else if (likely(fle->genid == atomic_read(&flow_cache_genid))) {
260 flo = fle->object;
261 if (!flo)
262 goto ret_object;
263 flo = flo->ops->get(flo);
264 if (flo)
265 goto ret_object;
266 } else if (fle->object) {
267 flo = fle->object;
268 flo->ops->delete(flo);
269 fle->object = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 }
271
272nocache:
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000273 flo = NULL;
274 if (fle) {
275 flo = fle->object;
276 fle->object = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 }
Timo Teräsfe1a5f02010-04-07 00:30:04 +0000278 flo = resolver(net, key, family, dir, flo, ctx);
279 if (fle) {
280 fle->genid = atomic_read(&flow_cache_genid);
281 if (!IS_ERR(flo))
282 fle->object = flo;
283 else
284 fle->genid--;
285 } else {
286 if (flo && !IS_ERR(flo))
287 flo->ops->delete(flo);
288 }
289ret_object:
290 local_bh_enable();
291 return flo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000293EXPORT_SYMBOL(flow_cache_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
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
Eric Dumazet7a9b2d52010-06-24 00:52:37 +0000305 fcp = this_cpu_ptr(fc->percpu);
Timo Teräsd7997fe2010-03-31 00:17:06 +0000306 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
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000358static int __cpuinit flow_cache_cpu_prepare(struct flow_cache *fc, int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000360 struct flow_cache_percpu *fcp = per_cpu_ptr(fc->percpu, cpu);
361 size_t sz = sizeof(struct hlist_head) * flow_cache_hash_size(fc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000363 if (!fcp->hash_table) {
364 fcp->hash_table = kzalloc_node(sz, GFP_KERNEL, cpu_to_node(cpu));
365 if (!fcp->hash_table) {
366 pr_err("NET: failed to allocate flow cache sz %zu\n", sz);
367 return -ENOMEM;
368 }
369 fcp->hash_rnd_recalc = 1;
370 fcp->hash_count = 0;
371 tasklet_init(&fcp->flush_tasklet, flow_cache_flush_tasklet, 0);
372 }
373 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000376static int __cpuinit flow_cache_cpu(struct notifier_block *nfb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 unsigned long action,
378 void *hcpu)
379{
Timo Teräsd7997fe2010-03-31 00:17:06 +0000380 struct flow_cache *fc = container_of(nfb, struct flow_cache, hotcpu_notifier);
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000381 int res, cpu = (unsigned long) hcpu;
Timo Teräsd7997fe2010-03-31 00:17:06 +0000382 struct flow_cache_percpu *fcp = per_cpu_ptr(fc->percpu, cpu);
383
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000384 switch (action) {
385 case CPU_UP_PREPARE:
386 case CPU_UP_PREPARE_FROZEN:
387 res = flow_cache_cpu_prepare(fc, cpu);
388 if (res)
389 return notifier_from_errno(res);
390 break;
391 case CPU_DEAD:
392 case CPU_DEAD_FROZEN:
Timo Teräsd7997fe2010-03-31 00:17:06 +0000393 __flow_cache_shrink(fc, fcp, 0);
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000394 break;
395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 return NOTIFY_OK;
397}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000399static int __init flow_cache_init(struct flow_cache *fc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
401 int i;
402
Timo Teräsd7997fe2010-03-31 00:17:06 +0000403 fc->hash_shift = 10;
404 fc->low_watermark = 2 * flow_cache_hash_size(fc);
405 fc->high_watermark = 4 * flow_cache_hash_size(fc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Timo Teräsd7997fe2010-03-31 00:17:06 +0000407 fc->percpu = alloc_percpu(struct flow_cache_percpu);
Eric Dumazet83b6b1f2010-09-10 07:00:25 +0000408 if (!fc->percpu)
409 return -ENOMEM;
410
411 for_each_online_cpu(i) {
412 if (flow_cache_cpu_prepare(fc, i))
413 return -ENOMEM;
414 }
415 fc->hotcpu_notifier = (struct notifier_block){
416 .notifier_call = flow_cache_cpu,
417 };
418 register_hotcpu_notifier(&fc->hotcpu_notifier);
Timo Teräsd7997fe2010-03-31 00:17:06 +0000419
420 setup_timer(&fc->rnd_timer, flow_cache_new_hashrnd,
421 (unsigned long) fc);
422 fc->rnd_timer.expires = jiffies + FLOW_HASH_RND_PERIOD;
423 add_timer(&fc->rnd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 return 0;
426}
427
Timo Teräsd7997fe2010-03-31 00:17:06 +0000428static int __init flow_cache_init_global(void)
429{
430 flow_cachep = kmem_cache_create("flow_cache",
431 sizeof(struct flow_cache_entry),
432 0, SLAB_PANIC, NULL);
433
434 return flow_cache_init(&flow_cache_global);
435}
436
437module_init(flow_cache_init_global);