Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* 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 Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 23 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <net/flow.h> |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 25 | #include <linux/atomic.h> |
Trent Jaeger | df71837 | 2005-12-13 23:12:27 -0800 | [diff] [blame] | 26 | #include <linux/security.h> |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 27 | #include <net/net_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
| 29 | struct flow_cache_entry { |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 30 | union { |
| 31 | struct hlist_node hlist; |
| 32 | struct list_head gc_list; |
| 33 | } u; |
dpward | 0542b69 | 2011-08-31 06:05:27 +0000 | [diff] [blame] | 34 | struct net *net; |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 35 | u16 family; |
| 36 | u8 dir; |
| 37 | u32 genid; |
| 38 | struct flowi key; |
| 39 | struct flow_cache_object *object; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | }; |
| 41 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | struct flow_flush_info { |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 43 | struct flow_cache *cache; |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 44 | atomic_t cpuleft; |
| 45 | struct completion completion; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
Eric Dumazet | d32d9bb | 2014-03-10 07:09:07 -0700 | [diff] [blame] | 48 | static struct kmem_cache *flow_cachep __read_mostly; |
| 49 | |
Alexey Dobriyan | f31cc7e | 2017-04-03 00:52:29 +0300 | [diff] [blame] | 50 | #define flow_cache_hash_size(cache) (1U << (cache)->hash_shift) |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 51 | #define FLOW_HASH_RND_PERIOD (10 * 60 * HZ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
| 53 | static void flow_cache_new_hashrnd(unsigned long arg) |
| 54 | { |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 55 | struct flow_cache *fc = (void *) arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | int i; |
| 57 | |
KAMEZAWA Hiroyuki | 6f91204 | 2006-04-10 22:52:50 -0700 | [diff] [blame] | 58 | for_each_possible_cpu(i) |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 59 | per_cpu_ptr(fc->percpu, i)->hash_rnd_recalc = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 61 | fc->rnd_timer.expires = jiffies + FLOW_HASH_RND_PERIOD; |
| 62 | add_timer(&fc->rnd_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | } |
| 64 | |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 65 | static int flow_entry_valid(struct flow_cache_entry *fle, |
| 66 | struct netns_xfrm *xfrm) |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 67 | { |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 68 | if (atomic_read(&xfrm->flow_cache_genid) != fle->genid) |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 69 | return 0; |
| 70 | if (fle->object && !fle->object->ops->check(fle->object)) |
| 71 | return 0; |
| 72 | return 1; |
| 73 | } |
| 74 | |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 75 | static void flow_entry_kill(struct flow_cache_entry *fle, |
| 76 | struct netns_xfrm *xfrm) |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 77 | { |
| 78 | if (fle->object) |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 79 | fle->object->ops->delete(fle->object); |
Eric Dumazet | d32d9bb | 2014-03-10 07:09:07 -0700 | [diff] [blame] | 80 | kmem_cache_free(flow_cachep, fle); |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | static void flow_cache_gc_task(struct work_struct *work) |
| 84 | { |
| 85 | struct list_head gc_list; |
| 86 | struct flow_cache_entry *fce, *n; |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 87 | struct netns_xfrm *xfrm = container_of(work, struct netns_xfrm, |
| 88 | flow_cache_gc_work); |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 89 | |
| 90 | INIT_LIST_HEAD(&gc_list); |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 91 | spin_lock_bh(&xfrm->flow_cache_gc_lock); |
| 92 | list_splice_tail_init(&xfrm->flow_cache_gc_list, &gc_list); |
| 93 | spin_unlock_bh(&xfrm->flow_cache_gc_lock); |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 94 | |
Steffen Klassert | 6ad3122 | 2016-02-22 10:40:07 +0100 | [diff] [blame] | 95 | list_for_each_entry_safe(fce, n, &gc_list, u.gc_list) { |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 96 | flow_entry_kill(fce, xfrm); |
Steffen Klassert | 6ad3122 | 2016-02-22 10:40:07 +0100 | [diff] [blame] | 97 | atomic_dec(&xfrm->flow_cache_gc_count); |
Steffen Klassert | 6ad3122 | 2016-02-22 10:40:07 +0100 | [diff] [blame] | 98 | } |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 99 | } |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 100 | |
| 101 | static void flow_cache_queue_garbage(struct flow_cache_percpu *fcp, |
Alexey Dobriyan | ec2e45a | 2017-04-03 00:53:15 +0300 | [diff] [blame] | 102 | unsigned int deleted, |
| 103 | struct list_head *gc_list, |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 104 | struct netns_xfrm *xfrm) |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 105 | { |
| 106 | if (deleted) { |
Steffen Klassert | 6ad3122 | 2016-02-22 10:40:07 +0100 | [diff] [blame] | 107 | atomic_add(deleted, &xfrm->flow_cache_gc_count); |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 108 | fcp->hash_count -= deleted; |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 109 | spin_lock_bh(&xfrm->flow_cache_gc_lock); |
| 110 | list_splice_tail(gc_list, &xfrm->flow_cache_gc_list); |
| 111 | spin_unlock_bh(&xfrm->flow_cache_gc_lock); |
| 112 | schedule_work(&xfrm->flow_cache_gc_work); |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 113 | } |
James Morris | 134b0fc | 2006-10-05 15:42:27 -0500 | [diff] [blame] | 114 | } |
| 115 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 116 | static void __flow_cache_shrink(struct flow_cache *fc, |
| 117 | struct flow_cache_percpu *fcp, |
Alexey Dobriyan | ec2e45a | 2017-04-03 00:53:15 +0300 | [diff] [blame] | 118 | unsigned int shrink_to) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | { |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 120 | struct flow_cache_entry *fle; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 121 | struct hlist_node *tmp; |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 122 | LIST_HEAD(gc_list); |
Alexey Dobriyan | ec2e45a | 2017-04-03 00:53:15 +0300 | [diff] [blame] | 123 | unsigned int deleted = 0; |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 124 | struct netns_xfrm *xfrm = container_of(fc, struct netns_xfrm, |
| 125 | flow_cache_global); |
Alexey Dobriyan | f31cc7e | 2017-04-03 00:52:29 +0300 | [diff] [blame] | 126 | unsigned int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 128 | for (i = 0; i < flow_cache_hash_size(fc); i++) { |
Alexey Dobriyan | ec2e45a | 2017-04-03 00:53:15 +0300 | [diff] [blame] | 129 | unsigned int saved = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 131 | hlist_for_each_entry_safe(fle, tmp, |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 132 | &fcp->hash_table[i], u.hlist) { |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 133 | if (saved < shrink_to && |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 134 | flow_entry_valid(fle, xfrm)) { |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 135 | saved++; |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 136 | } else { |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 137 | deleted++; |
| 138 | hlist_del(&fle->u.hlist); |
| 139 | list_add_tail(&fle->u.gc_list, &gc_list); |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 140 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | } |
| 142 | } |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 143 | |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 144 | flow_cache_queue_garbage(fcp, deleted, &gc_list, xfrm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | } |
| 146 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 147 | static void flow_cache_shrink(struct flow_cache *fc, |
| 148 | struct flow_cache_percpu *fcp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | { |
Alexey Dobriyan | ec2e45a | 2017-04-03 00:53:15 +0300 | [diff] [blame] | 150 | unsigned int shrink_to = fc->low_watermark / flow_cache_hash_size(fc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 152 | __flow_cache_shrink(fc, fcp, shrink_to); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | } |
| 154 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 155 | static void flow_new_hash_rnd(struct flow_cache *fc, |
| 156 | struct flow_cache_percpu *fcp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | { |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 158 | get_random_bytes(&fcp->hash_rnd, sizeof(u32)); |
| 159 | fcp->hash_rnd_recalc = 0; |
| 160 | __flow_cache_shrink(fc, fcp, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | } |
| 162 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 163 | static u32 flow_hash_code(struct flow_cache *fc, |
| 164 | struct flow_cache_percpu *fcp, |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 165 | const struct flowi *key, |
Alexey Dobriyan | 5a17d9e | 2017-04-03 00:51:50 +0300 | [diff] [blame] | 166 | unsigned int keysize) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | { |
David S. Miller | dee9f4b | 2011-02-22 18:44:31 -0800 | [diff] [blame] | 168 | const u32 *k = (const u32 *) key; |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 169 | const u32 length = keysize * sizeof(flow_compare_t) / sizeof(u32); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 171 | return jhash2(k, length, fcp->hash_rnd) |
Eric Dumazet | a02cec2 | 2010-09-22 20:43:57 +0000 | [diff] [blame] | 172 | & (flow_cache_hash_size(fc) - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | } |
| 174 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | /* I hear what you're saying, use memcmp. But memcmp cannot make |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 176 | * important assumptions that we can here, such as alignment. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | */ |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 178 | static int flow_key_compare(const struct flowi *key1, const struct flowi *key2, |
Alexey Dobriyan | 5a17d9e | 2017-04-03 00:51:50 +0300 | [diff] [blame] | 179 | unsigned int keysize) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | { |
David S. Miller | dee9f4b | 2011-02-22 18:44:31 -0800 | [diff] [blame] | 181 | const flow_compare_t *k1, *k1_lim, *k2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | |
David S. Miller | dee9f4b | 2011-02-22 18:44:31 -0800 | [diff] [blame] | 183 | k1 = (const flow_compare_t *) key1; |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 184 | k1_lim = k1 + keysize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | |
David S. Miller | dee9f4b | 2011-02-22 18:44:31 -0800 | [diff] [blame] | 186 | k2 = (const flow_compare_t *) key2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | |
| 188 | do { |
| 189 | if (*k1++ != *k2++) |
| 190 | return 1; |
| 191 | } while (k1 < k1_lim); |
| 192 | |
| 193 | return 0; |
| 194 | } |
| 195 | |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 196 | struct flow_cache_object * |
David S. Miller | dee9f4b | 2011-02-22 18:44:31 -0800 | [diff] [blame] | 197 | flow_cache_lookup(struct net *net, const struct flowi *key, u16 family, u8 dir, |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 198 | flow_resolve_t resolver, void *ctx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | { |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 200 | struct flow_cache *fc = &net->xfrm.flow_cache_global; |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 201 | struct flow_cache_percpu *fcp; |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 202 | struct flow_cache_entry *fle, *tfle; |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 203 | struct flow_cache_object *flo; |
Alexey Dobriyan | 5a17d9e | 2017-04-03 00:51:50 +0300 | [diff] [blame] | 204 | unsigned int keysize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | unsigned int hash; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | |
| 207 | local_bh_disable(); |
Eric Dumazet | 7a9b2d5 | 2010-06-24 00:52:37 +0000 | [diff] [blame] | 208 | fcp = this_cpu_ptr(fc->percpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | |
| 210 | fle = NULL; |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 211 | flo = NULL; |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 212 | |
| 213 | keysize = flow_key_size(family); |
| 214 | if (!keysize) |
| 215 | goto nocache; |
| 216 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | /* Packet really early in init? Making flow_cache_init a |
| 218 | * pre-smp initcall would solve this. --RR */ |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 219 | if (!fcp->hash_table) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | goto nocache; |
| 221 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 222 | if (fcp->hash_rnd_recalc) |
| 223 | flow_new_hash_rnd(fc, fcp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 225 | hash = flow_hash_code(fc, fcp, key, keysize); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 226 | hlist_for_each_entry(tfle, &fcp->hash_table[hash], u.hlist) { |
dpward | 0542b69 | 2011-08-31 06:05:27 +0000 | [diff] [blame] | 227 | if (tfle->net == net && |
| 228 | tfle->family == family && |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 229 | tfle->dir == dir && |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 230 | flow_key_compare(key, &tfle->key, keysize) == 0) { |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 231 | fle = tfle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | break; |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 233 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | } |
| 235 | |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 236 | if (unlikely(!fle)) { |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 237 | if (fcp->hash_count > fc->high_watermark) |
| 238 | flow_cache_shrink(fc, fcp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | |
Miroslav Urbanek | 6b22648 | 2016-11-21 15:48:21 +0100 | [diff] [blame] | 240 | if (atomic_read(&net->xfrm.flow_cache_gc_count) > |
| 241 | 2 * num_online_cpus() * fc->high_watermark) { |
Steffen Klassert | 6ad3122 | 2016-02-22 10:40:07 +0100 | [diff] [blame] | 242 | flo = ERR_PTR(-ENOBUFS); |
| 243 | goto ret_object; |
| 244 | } |
| 245 | |
Eric Dumazet | d32d9bb | 2014-03-10 07:09:07 -0700 | [diff] [blame] | 246 | fle = kmem_cache_alloc(flow_cachep, GFP_ATOMIC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | if (fle) { |
dpward | 0542b69 | 2011-08-31 06:05:27 +0000 | [diff] [blame] | 248 | fle->net = net; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | fle->family = family; |
| 250 | fle->dir = dir; |
dpward | aa1c366 | 2011-09-05 16:47:24 +0000 | [diff] [blame] | 251 | memcpy(&fle->key, key, keysize * sizeof(flow_compare_t)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | fle->object = NULL; |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 253 | hlist_add_head(&fle->u.hlist, &fcp->hash_table[hash]); |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 254 | fcp->hash_count++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | } |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 256 | } else if (likely(fle->genid == atomic_read(&net->xfrm.flow_cache_genid))) { |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 257 | flo = fle->object; |
| 258 | if (!flo) |
| 259 | goto ret_object; |
| 260 | flo = flo->ops->get(flo); |
| 261 | if (flo) |
| 262 | goto ret_object; |
| 263 | } else if (fle->object) { |
| 264 | flo = fle->object; |
| 265 | flo->ops->delete(flo); |
| 266 | fle->object = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | } |
| 268 | |
| 269 | nocache: |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 270 | flo = NULL; |
| 271 | if (fle) { |
| 272 | flo = fle->object; |
| 273 | fle->object = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | } |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 275 | flo = resolver(net, key, family, dir, flo, ctx); |
| 276 | if (fle) { |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 277 | fle->genid = atomic_read(&net->xfrm.flow_cache_genid); |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 278 | if (!IS_ERR(flo)) |
| 279 | fle->object = flo; |
| 280 | else |
| 281 | fle->genid--; |
| 282 | } else { |
YOSHIFUJI Hideaki / 吉藤英明 | 8fbcec2 | 2013-01-22 06:32:44 +0000 | [diff] [blame] | 283 | if (!IS_ERR_OR_NULL(flo)) |
Timo Teräs | fe1a5f0 | 2010-04-07 00:30:04 +0000 | [diff] [blame] | 284 | flo->ops->delete(flo); |
| 285 | } |
| 286 | ret_object: |
| 287 | local_bh_enable(); |
| 288 | return flo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | } |
Eric Dumazet | 9e34a5b | 2010-07-09 21:22:04 +0000 | [diff] [blame] | 290 | EXPORT_SYMBOL(flow_cache_lookup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | |
| 292 | static void flow_cache_flush_tasklet(unsigned long data) |
| 293 | { |
| 294 | struct flow_flush_info *info = (void *)data; |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 295 | struct flow_cache *fc = info->cache; |
| 296 | struct flow_cache_percpu *fcp; |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 297 | struct flow_cache_entry *fle; |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 298 | struct hlist_node *tmp; |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 299 | LIST_HEAD(gc_list); |
Alexey Dobriyan | ec2e45a | 2017-04-03 00:53:15 +0300 | [diff] [blame] | 300 | unsigned int deleted = 0; |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 301 | struct netns_xfrm *xfrm = container_of(fc, struct netns_xfrm, |
| 302 | flow_cache_global); |
Alexey Dobriyan | f31cc7e | 2017-04-03 00:52:29 +0300 | [diff] [blame] | 303 | unsigned int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | |
Eric Dumazet | 7a9b2d5 | 2010-06-24 00:52:37 +0000 | [diff] [blame] | 305 | fcp = this_cpu_ptr(fc->percpu); |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 306 | for (i = 0; i < flow_cache_hash_size(fc); i++) { |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 307 | hlist_for_each_entry_safe(fle, tmp, |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 308 | &fcp->hash_table[i], u.hlist) { |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 309 | if (flow_entry_valid(fle, xfrm)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | continue; |
| 311 | |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 312 | deleted++; |
| 313 | hlist_del(&fle->u.hlist); |
| 314 | list_add_tail(&fle->u.gc_list, &gc_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | } |
| 316 | } |
| 317 | |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 318 | flow_cache_queue_garbage(fcp, deleted, &gc_list, xfrm); |
Timo Teräs | 8e479560 | 2010-04-07 00:30:07 +0000 | [diff] [blame] | 319 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | if (atomic_dec_and_test(&info->cpuleft)) |
| 321 | complete(&info->completion); |
| 322 | } |
| 323 | |
Chris Metcalf | 8fdc929 | 2013-03-19 11:35:58 +0000 | [diff] [blame] | 324 | /* |
| 325 | * Return whether a cpu needs flushing. Conservatively, we assume |
| 326 | * the presence of any entries means the core may require flushing, |
| 327 | * since the flow_cache_ops.check() function may assume it's running |
| 328 | * on the same core as the per-cpu cache component. |
| 329 | */ |
| 330 | static int flow_cache_percpu_empty(struct flow_cache *fc, int cpu) |
| 331 | { |
| 332 | struct flow_cache_percpu *fcp; |
Alexey Dobriyan | f31cc7e | 2017-04-03 00:52:29 +0300 | [diff] [blame] | 333 | unsigned int i; |
Chris Metcalf | 8fdc929 | 2013-03-19 11:35:58 +0000 | [diff] [blame] | 334 | |
Li RongQing | 2781503 | 2013-03-28 02:24:11 +0000 | [diff] [blame] | 335 | fcp = per_cpu_ptr(fc->percpu, cpu); |
Chris Metcalf | 8fdc929 | 2013-03-19 11:35:58 +0000 | [diff] [blame] | 336 | for (i = 0; i < flow_cache_hash_size(fc); i++) |
| 337 | if (!hlist_empty(&fcp->hash_table[i])) |
| 338 | return 0; |
| 339 | return 1; |
| 340 | } |
| 341 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | static void flow_cache_flush_per_cpu(void *data) |
| 343 | { |
| 344 | struct flow_flush_info *info = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | struct tasklet_struct *tasklet; |
| 346 | |
Li RongQing | 50eab05 | 2013-03-27 23:42:41 +0000 | [diff] [blame] | 347 | tasklet = &this_cpu_ptr(info->cache->percpu)->flush_tasklet; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | tasklet->data = (unsigned long)info; |
| 349 | tasklet_schedule(tasklet); |
| 350 | } |
| 351 | |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 352 | void flow_cache_flush(struct net *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | { |
| 354 | struct flow_flush_info info; |
Chris Metcalf | 8fdc929 | 2013-03-19 11:35:58 +0000 | [diff] [blame] | 355 | cpumask_var_t mask; |
| 356 | int i, self; |
| 357 | |
| 358 | /* Track which cpus need flushing to avoid disturbing all cores. */ |
| 359 | if (!alloc_cpumask_var(&mask, GFP_KERNEL)) |
| 360 | return; |
| 361 | cpumask_clear(mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | |
| 363 | /* Don't want cpus going down or up during this. */ |
Gautham R Shenoy | 86ef5c9 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 364 | get_online_cpus(); |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 365 | mutex_lock(&net->xfrm.flow_flush_sem); |
| 366 | info.cache = &net->xfrm.flow_cache_global; |
Chris Metcalf | 8fdc929 | 2013-03-19 11:35:58 +0000 | [diff] [blame] | 367 | for_each_online_cpu(i) |
| 368 | if (!flow_cache_percpu_empty(info.cache, i)) |
| 369 | cpumask_set_cpu(i, mask); |
| 370 | atomic_set(&info.cpuleft, cpumask_weight(mask)); |
| 371 | if (atomic_read(&info.cpuleft) == 0) |
| 372 | goto done; |
| 373 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | init_completion(&info.completion); |
| 375 | |
| 376 | local_bh_disable(); |
Chris Metcalf | 8fdc929 | 2013-03-19 11:35:58 +0000 | [diff] [blame] | 377 | self = cpumask_test_and_clear_cpu(smp_processor_id(), mask); |
| 378 | on_each_cpu_mask(mask, flow_cache_flush_per_cpu, &info, 0); |
| 379 | if (self) |
| 380 | flow_cache_flush_tasklet((unsigned long)&info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | local_bh_enable(); |
| 382 | |
| 383 | wait_for_completion(&info.completion); |
Chris Metcalf | 8fdc929 | 2013-03-19 11:35:58 +0000 | [diff] [blame] | 384 | |
| 385 | done: |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 386 | mutex_unlock(&net->xfrm.flow_flush_sem); |
Gautham R Shenoy | 86ef5c9 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 387 | put_online_cpus(); |
Chris Metcalf | 8fdc929 | 2013-03-19 11:35:58 +0000 | [diff] [blame] | 388 | free_cpumask_var(mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | } |
| 390 | |
Steffen Klassert | c0ed1c1 | 2011-12-21 16:48:08 -0500 | [diff] [blame] | 391 | static void flow_cache_flush_task(struct work_struct *work) |
| 392 | { |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 393 | struct netns_xfrm *xfrm = container_of(work, struct netns_xfrm, |
Miroslav Urbanek | 233c96f | 2015-02-05 16:36:50 +0100 | [diff] [blame] | 394 | flow_cache_flush_work); |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 395 | struct net *net = container_of(xfrm, struct net, xfrm); |
| 396 | |
| 397 | flow_cache_flush(net); |
Steffen Klassert | c0ed1c1 | 2011-12-21 16:48:08 -0500 | [diff] [blame] | 398 | } |
| 399 | |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 400 | void flow_cache_flush_deferred(struct net *net) |
Steffen Klassert | c0ed1c1 | 2011-12-21 16:48:08 -0500 | [diff] [blame] | 401 | { |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 402 | schedule_work(&net->xfrm.flow_cache_flush_work); |
Steffen Klassert | c0ed1c1 | 2011-12-21 16:48:08 -0500 | [diff] [blame] | 403 | } |
| 404 | |
Paul Gortmaker | 013dbb3 | 2013-06-19 14:32:33 -0400 | [diff] [blame] | 405 | static int flow_cache_cpu_prepare(struct flow_cache *fc, int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | { |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 407 | struct flow_cache_percpu *fcp = per_cpu_ptr(fc->percpu, cpu); |
Alexey Dobriyan | f31cc7e | 2017-04-03 00:52:29 +0300 | [diff] [blame] | 408 | unsigned int sz = sizeof(struct hlist_head) * flow_cache_hash_size(fc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 410 | if (!fcp->hash_table) { |
| 411 | fcp->hash_table = kzalloc_node(sz, GFP_KERNEL, cpu_to_node(cpu)); |
| 412 | if (!fcp->hash_table) { |
Alexey Dobriyan | f31cc7e | 2017-04-03 00:52:29 +0300 | [diff] [blame] | 413 | pr_err("NET: failed to allocate flow cache sz %u\n", sz); |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 414 | return -ENOMEM; |
| 415 | } |
| 416 | fcp->hash_rnd_recalc = 1; |
| 417 | fcp->hash_count = 0; |
| 418 | tasklet_init(&fcp->flush_tasklet, flow_cache_flush_tasklet, 0); |
| 419 | } |
| 420 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | } |
| 422 | |
Sebastian Andrzej Siewior | a4fc1bf | 2016-11-03 15:50:05 +0100 | [diff] [blame] | 423 | static int flow_cache_cpu_up_prep(unsigned int cpu, struct hlist_node *node) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | { |
Sebastian Andrzej Siewior | a4fc1bf | 2016-11-03 15:50:05 +0100 | [diff] [blame] | 425 | struct flow_cache *fc = hlist_entry_safe(node, struct flow_cache, node); |
| 426 | |
| 427 | return flow_cache_cpu_prepare(fc, cpu); |
| 428 | } |
| 429 | |
| 430 | static int flow_cache_cpu_dead(unsigned int cpu, struct hlist_node *node) |
| 431 | { |
| 432 | struct flow_cache *fc = hlist_entry_safe(node, struct flow_cache, node); |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 433 | struct flow_cache_percpu *fcp = per_cpu_ptr(fc->percpu, cpu); |
| 434 | |
Sebastian Andrzej Siewior | a4fc1bf | 2016-11-03 15:50:05 +0100 | [diff] [blame] | 435 | __flow_cache_shrink(fc, fcp, 0); |
| 436 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 439 | int flow_cache_init(struct net *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | { |
| 441 | int i; |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 442 | struct flow_cache *fc = &net->xfrm.flow_cache_global; |
| 443 | |
Eric Dumazet | d32d9bb | 2014-03-10 07:09:07 -0700 | [diff] [blame] | 444 | if (!flow_cachep) |
| 445 | flow_cachep = kmem_cache_create("flow_cache", |
| 446 | sizeof(struct flow_cache_entry), |
| 447 | 0, SLAB_PANIC, NULL); |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 448 | spin_lock_init(&net->xfrm.flow_cache_gc_lock); |
| 449 | INIT_LIST_HEAD(&net->xfrm.flow_cache_gc_list); |
| 450 | INIT_WORK(&net->xfrm.flow_cache_gc_work, flow_cache_gc_task); |
| 451 | INIT_WORK(&net->xfrm.flow_cache_flush_work, flow_cache_flush_task); |
| 452 | mutex_init(&net->xfrm.flow_flush_sem); |
Steffen Klassert | 6ad3122 | 2016-02-22 10:40:07 +0100 | [diff] [blame] | 453 | atomic_set(&net->xfrm.flow_cache_gc_count, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 455 | fc->hash_shift = 10; |
| 456 | fc->low_watermark = 2 * flow_cache_hash_size(fc); |
| 457 | fc->high_watermark = 4 * flow_cache_hash_size(fc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 459 | fc->percpu = alloc_percpu(struct flow_cache_percpu); |
Eric Dumazet | 83b6b1f | 2010-09-10 07:00:25 +0000 | [diff] [blame] | 460 | if (!fc->percpu) |
| 461 | return -ENOMEM; |
| 462 | |
Sebastian Andrzej Siewior | a4fc1bf | 2016-11-03 15:50:05 +0100 | [diff] [blame] | 463 | if (cpuhp_state_add_instance(CPUHP_NET_FLOW_PREPARE, &fc->node)) |
| 464 | goto err; |
Timo Teräs | d7997fe | 2010-03-31 00:17:06 +0000 | [diff] [blame] | 465 | |
| 466 | setup_timer(&fc->rnd_timer, flow_cache_new_hashrnd, |
| 467 | (unsigned long) fc); |
| 468 | fc->rnd_timer.expires = jiffies + FLOW_HASH_RND_PERIOD; |
| 469 | add_timer(&fc->rnd_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | return 0; |
huajun li | 6ccc3ab | 2011-09-27 22:51:39 +0000 | [diff] [blame] | 472 | |
| 473 | err: |
| 474 | for_each_possible_cpu(i) { |
| 475 | struct flow_cache_percpu *fcp = per_cpu_ptr(fc->percpu, i); |
| 476 | kfree(fcp->hash_table); |
| 477 | fcp->hash_table = NULL; |
| 478 | } |
| 479 | |
| 480 | free_percpu(fc->percpu); |
| 481 | fc->percpu = NULL; |
| 482 | |
| 483 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | } |
Fan Du | ca925cf | 2014-01-18 09:55:27 +0800 | [diff] [blame] | 485 | EXPORT_SYMBOL(flow_cache_init); |
Steffen Klassert | 4a93f50 | 2014-03-12 09:43:17 +0100 | [diff] [blame] | 486 | |
| 487 | void flow_cache_fini(struct net *net) |
| 488 | { |
| 489 | int i; |
| 490 | struct flow_cache *fc = &net->xfrm.flow_cache_global; |
| 491 | |
| 492 | del_timer_sync(&fc->rnd_timer); |
Sebastian Andrzej Siewior | a4fc1bf | 2016-11-03 15:50:05 +0100 | [diff] [blame] | 493 | |
| 494 | cpuhp_state_remove_instance_nocalls(CPUHP_NET_FLOW_PREPARE, &fc->node); |
Steffen Klassert | 4a93f50 | 2014-03-12 09:43:17 +0100 | [diff] [blame] | 495 | |
| 496 | for_each_possible_cpu(i) { |
| 497 | struct flow_cache_percpu *fcp = per_cpu_ptr(fc->percpu, i); |
| 498 | kfree(fcp->hash_table); |
| 499 | fcp->hash_table = NULL; |
| 500 | } |
| 501 | |
| 502 | free_percpu(fc->percpu); |
| 503 | fc->percpu = NULL; |
| 504 | } |
| 505 | EXPORT_SYMBOL(flow_cache_fini); |
Sebastian Andrzej Siewior | a4fc1bf | 2016-11-03 15:50:05 +0100 | [diff] [blame] | 506 | |
| 507 | void __init flow_cache_hp_init(void) |
| 508 | { |
| 509 | int ret; |
| 510 | |
| 511 | ret = cpuhp_setup_state_multi(CPUHP_NET_FLOW_PREPARE, |
| 512 | "net/flow:prepare", |
| 513 | flow_cache_cpu_up_prep, |
| 514 | flow_cache_cpu_dead); |
| 515 | WARN_ON(ret < 0); |
| 516 | } |