diff options
| author | Chris Metcalf <cmetcalf@tilera.com> | 2010-08-06 10:37:02 -0400 |
|---|---|---|
| committer | Chris Metcalf <cmetcalf@tilera.com> | 2010-08-06 10:37:02 -0400 |
| commit | ab11b487402f97975f3ac1eeea09c82f4431481e (patch) | |
| tree | 86337c5cbbd2b0c4bd07c0847a1dc7de3d898147 /net/ipv4/inetpeer.c | |
| parent | 1c689cbcf2c2b7a35cd237abddd9206bb1b6fee1 (diff) | |
| parent | fc1caf6eafb30ea185720e29f7f5eccca61ecd60 (diff) | |
Merge branch 'master' into for-linus
Diffstat (limited to 'net/ipv4/inetpeer.c')
| -rw-r--r-- | net/ipv4/inetpeer.c | 244 |
1 files changed, 147 insertions, 97 deletions
diff --git a/net/ipv4/inetpeer.c b/net/ipv4/inetpeer.c index 6bcfe52a9c87..9ffa24b9a804 100644 --- a/net/ipv4/inetpeer.c +++ b/net/ipv4/inetpeer.c | |||
| @@ -51,8 +51,8 @@ | |||
| 51 | * lookups performed with disabled BHs. | 51 | * lookups performed with disabled BHs. |
| 52 | * | 52 | * |
| 53 | * Serialisation issues. | 53 | * Serialisation issues. |
| 54 | * 1. Nodes may appear in the tree only with the pool write lock held. | 54 | * 1. Nodes may appear in the tree only with the pool lock held. |
| 55 | * 2. Nodes may disappear from the tree only with the pool write lock held | 55 | * 2. Nodes may disappear from the tree only with the pool lock held |
| 56 | * AND reference count being 0. | 56 | * AND reference count being 0. |
| 57 | * 3. Nodes appears and disappears from unused node list only under | 57 | * 3. Nodes appears and disappears from unused node list only under |
| 58 | * "inet_peer_unused_lock". | 58 | * "inet_peer_unused_lock". |
| @@ -64,23 +64,31 @@ | |||
| 64 | * usually under some other lock to prevent node disappearing | 64 | * usually under some other lock to prevent node disappearing |
| 65 | * dtime: unused node list lock | 65 | * dtime: unused node list lock |
| 66 | * v4daddr: unchangeable | 66 | * v4daddr: unchangeable |
| 67 | * ip_id_count: idlock | 67 | * ip_id_count: atomic value (no lock needed) |
| 68 | */ | 68 | */ |
| 69 | 69 | ||
| 70 | static struct kmem_cache *peer_cachep __read_mostly; | 70 | static struct kmem_cache *peer_cachep __read_mostly; |
| 71 | 71 | ||
| 72 | #define node_height(x) x->avl_height | 72 | #define node_height(x) x->avl_height |
| 73 | static struct inet_peer peer_fake_node = { | 73 | |
| 74 | .avl_left = &peer_fake_node, | 74 | #define peer_avl_empty ((struct inet_peer *)&peer_fake_node) |
| 75 | .avl_right = &peer_fake_node, | 75 | static const struct inet_peer peer_fake_node = { |
| 76 | .avl_left = peer_avl_empty, | ||
| 77 | .avl_right = peer_avl_empty, | ||
| 76 | .avl_height = 0 | 78 | .avl_height = 0 |
| 77 | }; | 79 | }; |
| 78 | #define peer_avl_empty (&peer_fake_node) | 80 | |
| 79 | static struct inet_peer *peer_root = peer_avl_empty; | 81 | static struct { |
| 80 | static DEFINE_RWLOCK(peer_pool_lock); | 82 | struct inet_peer *root; |
| 83 | spinlock_t lock; | ||
| 84 | int total; | ||
| 85 | } peers = { | ||
| 86 | .root = peer_avl_empty, | ||
| 87 | .lock = __SPIN_LOCK_UNLOCKED(peers.lock), | ||
| 88 | .total = 0, | ||
| 89 | }; | ||
| 81 | #define PEER_MAXDEPTH 40 /* sufficient for about 2^27 nodes */ | 90 | #define PEER_MAXDEPTH 40 /* sufficient for about 2^27 nodes */ |
| 82 | 91 | ||
| 83 | static int peer_total; | ||
| 84 | /* Exported for sysctl_net_ipv4. */ | 92 | /* Exported for sysctl_net_ipv4. */ |
| 85 | int inet_peer_threshold __read_mostly = 65536 + 128; /* start to throw entries more | 93 | int inet_peer_threshold __read_mostly = 65536 + 128; /* start to throw entries more |
| 86 | * aggressively at this stage */ | 94 | * aggressively at this stage */ |
| @@ -89,8 +97,13 @@ int inet_peer_maxttl __read_mostly = 10 * 60 * HZ; /* usual time to live: 10 min | |||
| 89 | int inet_peer_gc_mintime __read_mostly = 10 * HZ; | 97 | int inet_peer_gc_mintime __read_mostly = 10 * HZ; |
| 90 | int inet_peer_gc_maxtime __read_mostly = 120 * HZ; | 98 | int inet_peer_gc_maxtime __read_mostly = 120 * HZ; |
| 91 | 99 | ||
| 92 | static LIST_HEAD(unused_peers); | 100 | static struct { |
| 93 | static DEFINE_SPINLOCK(inet_peer_unused_lock); | 101 | struct list_head list; |
| 102 | spinlock_t lock; | ||
| 103 | } unused_peers = { | ||
| 104 | .list = LIST_HEAD_INIT(unused_peers.list), | ||
| 105 | .lock = __SPIN_LOCK_UNLOCKED(unused_peers.lock), | ||
| 106 | }; | ||
| 94 | 107 | ||
| 95 | static void peer_check_expire(unsigned long dummy); | 108 | static void peer_check_expire(unsigned long dummy); |
| 96 | static DEFINE_TIMER(peer_periodic_timer, peer_check_expire, 0, 0); | 109 | static DEFINE_TIMER(peer_periodic_timer, peer_check_expire, 0, 0); |
| @@ -116,7 +129,7 @@ void __init inet_initpeers(void) | |||
| 116 | 129 | ||
| 117 | peer_cachep = kmem_cache_create("inet_peer_cache", | 130 | peer_cachep = kmem_cache_create("inet_peer_cache", |
| 118 | sizeof(struct inet_peer), | 131 | sizeof(struct inet_peer), |
| 119 | 0, SLAB_HWCACHE_ALIGN|SLAB_PANIC, | 132 | 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, |
| 120 | NULL); | 133 | NULL); |
| 121 | 134 | ||
| 122 | /* All the timers, started at system startup tend | 135 | /* All the timers, started at system startup tend |
| @@ -131,38 +144,69 @@ void __init inet_initpeers(void) | |||
| 131 | /* Called with or without local BH being disabled. */ | 144 | /* Called with or without local BH being disabled. */ |
| 132 | static void unlink_from_unused(struct inet_peer *p) | 145 | static void unlink_from_unused(struct inet_peer *p) |
| 133 | { | 146 | { |
| 134 | spin_lock_bh(&inet_peer_unused_lock); | 147 | if (!list_empty(&p->unused)) { |
| 135 | list_del_init(&p->unused); | 148 | spin_lock_bh(&unused_peers.lock); |
| 136 | spin_unlock_bh(&inet_peer_unused_lock); | 149 | list_del_init(&p->unused); |
| 150 | spin_unlock_bh(&unused_peers.lock); | ||
| 151 | } | ||
| 137 | } | 152 | } |
| 138 | 153 | ||
| 139 | /* | 154 | /* |
| 140 | * Called with local BH disabled and the pool lock held. | 155 | * Called with local BH disabled and the pool lock held. |
| 141 | * _stack is known to be NULL or not at compile time, | ||
| 142 | * so compiler will optimize the if (_stack) tests. | ||
| 143 | */ | 156 | */ |
| 144 | #define lookup(_daddr, _stack) \ | 157 | #define lookup(_daddr, _stack) \ |
| 145 | ({ \ | 158 | ({ \ |
| 146 | struct inet_peer *u, **v; \ | 159 | struct inet_peer *u, **v; \ |
| 147 | if (_stack != NULL) { \ | 160 | \ |
| 148 | stackptr = _stack; \ | 161 | stackptr = _stack; \ |
| 149 | *stackptr++ = &peer_root; \ | 162 | *stackptr++ = &peers.root; \ |
| 150 | } \ | 163 | for (u = peers.root; u != peer_avl_empty; ) { \ |
| 151 | for (u = peer_root; u != peer_avl_empty; ) { \ | ||
| 152 | if (_daddr == u->v4daddr) \ | 164 | if (_daddr == u->v4daddr) \ |
| 153 | break; \ | 165 | break; \ |
| 154 | if ((__force __u32)_daddr < (__force __u32)u->v4daddr) \ | 166 | if ((__force __u32)_daddr < (__force __u32)u->v4daddr) \ |
| 155 | v = &u->avl_left; \ | 167 | v = &u->avl_left; \ |
| 156 | else \ | 168 | else \ |
| 157 | v = &u->avl_right; \ | 169 | v = &u->avl_right; \ |
| 158 | if (_stack != NULL) \ | 170 | *stackptr++ = v; \ |
| 159 | *stackptr++ = v; \ | ||
| 160 | u = *v; \ | 171 | u = *v; \ |
| 161 | } \ | 172 | } \ |
| 162 | u; \ | 173 | u; \ |
| 163 | }) | 174 | }) |
| 164 | 175 | ||
| 165 | /* Called with local BH disabled and the pool write lock held. */ | 176 | /* |
| 177 | * Called with rcu_read_lock_bh() | ||
| 178 | * Because we hold no lock against a writer, its quite possible we fall | ||
| 179 | * in an endless loop. | ||
| 180 | * But every pointer we follow is guaranteed to be valid thanks to RCU. | ||
| 181 | * We exit from this function if number of links exceeds PEER_MAXDEPTH | ||
| 182 | */ | ||
| 183 | static struct inet_peer *lookup_rcu_bh(__be32 daddr) | ||
| 184 | { | ||
| 185 | struct inet_peer *u = rcu_dereference_bh(peers.root); | ||
| 186 | int count = 0; | ||
| 187 | |||
| 188 | while (u != peer_avl_empty) { | ||
| 189 | if (daddr == u->v4daddr) { | ||
| 190 | /* Before taking a reference, check if this entry was | ||
| 191 | * deleted, unlink_from_pool() sets refcnt=-1 to make | ||
| 192 | * distinction between an unused entry (refcnt=0) and | ||
| 193 | * a freed one. | ||
| 194 | */ | ||
| 195 | if (unlikely(!atomic_add_unless(&u->refcnt, 1, -1))) | ||
| 196 | u = NULL; | ||
| 197 | return u; | ||
| 198 | } | ||
| 199 | if ((__force __u32)daddr < (__force __u32)u->v4daddr) | ||
| 200 | u = rcu_dereference_bh(u->avl_left); | ||
| 201 | else | ||
| 202 | u = rcu_dereference_bh(u->avl_right); | ||
| 203 | if (unlikely(++count == PEER_MAXDEPTH)) | ||
| 204 | break; | ||
| 205 | } | ||
| 206 | return NULL; | ||
| 207 | } | ||
| 208 | |||
| 209 | /* Called with local BH disabled and the pool lock held. */ | ||
| 166 | #define lookup_rightempty(start) \ | 210 | #define lookup_rightempty(start) \ |
| 167 | ({ \ | 211 | ({ \ |
| 168 | struct inet_peer *u, **v; \ | 212 | struct inet_peer *u, **v; \ |
| @@ -176,9 +220,10 @@ static void unlink_from_unused(struct inet_peer *p) | |||
| 176 | u; \ | 220 | u; \ |
| 177 | }) | 221 | }) |
| 178 | 222 | ||
| 179 | /* Called with local BH disabled and the pool write lock held. | 223 | /* Called with local BH disabled and the pool lock held. |
| 180 | * Variable names are the proof of operation correctness. | 224 | * Variable names are the proof of operation correctness. |
| 181 | * Look into mm/map_avl.c for more detail description of the ideas. */ | 225 | * Look into mm/map_avl.c for more detail description of the ideas. |
| 226 | */ | ||
| 182 | static void peer_avl_rebalance(struct inet_peer **stack[], | 227 | static void peer_avl_rebalance(struct inet_peer **stack[], |
| 183 | struct inet_peer ***stackend) | 228 | struct inet_peer ***stackend) |
| 184 | { | 229 | { |
| @@ -254,15 +299,21 @@ static void peer_avl_rebalance(struct inet_peer **stack[], | |||
| 254 | } | 299 | } |
| 255 | } | 300 | } |
| 256 | 301 | ||
| 257 | /* Called with local BH disabled and the pool write lock held. */ | 302 | /* Called with local BH disabled and the pool lock held. */ |
| 258 | #define link_to_pool(n) \ | 303 | #define link_to_pool(n) \ |
| 259 | do { \ | 304 | do { \ |
| 260 | n->avl_height = 1; \ | 305 | n->avl_height = 1; \ |
| 261 | n->avl_left = peer_avl_empty; \ | 306 | n->avl_left = peer_avl_empty; \ |
| 262 | n->avl_right = peer_avl_empty; \ | 307 | n->avl_right = peer_avl_empty; \ |
| 308 | smp_wmb(); /* lockless readers can catch us now */ \ | ||
| 263 | **--stackptr = n; \ | 309 | **--stackptr = n; \ |
| 264 | peer_avl_rebalance(stack, stackptr); \ | 310 | peer_avl_rebalance(stack, stackptr); \ |
| 265 | } while(0) | 311 | } while (0) |
| 312 | |||
| 313 | static void inetpeer_free_rcu(struct rcu_head *head) | ||
| 314 | { | ||
| 315 | kmem_cache_free(peer_cachep, container_of(head, struct inet_peer, rcu)); | ||
| 316 | } | ||
| 266 | 317 | ||
| 267 | /* May be called with local BH enabled. */ | 318 | /* May be called with local BH enabled. */ |
| 268 | static void unlink_from_pool(struct inet_peer *p) | 319 | static void unlink_from_pool(struct inet_peer *p) |
| @@ -271,13 +322,14 @@ static void unlink_from_pool(struct inet_peer *p) | |||
| 271 | 322 | ||
| 272 | do_free = 0; | 323 | do_free = 0; |
| 273 | 324 | ||
| 274 | write_lock_bh(&peer_pool_lock); | 325 | spin_lock_bh(&peers.lock); |
| 275 | /* Check the reference counter. It was artificially incremented by 1 | 326 | /* Check the reference counter. It was artificially incremented by 1 |
| 276 | * in cleanup() function to prevent sudden disappearing. If the | 327 | * in cleanup() function to prevent sudden disappearing. If we can |
| 277 | * reference count is still 1 then the node is referenced only as `p' | 328 | * atomically (because of lockless readers) take this last reference, |
| 278 | * here and from the pool. So under the exclusive pool lock it's safe | 329 | * it's safe to remove the node and free it later. |
| 279 | * to remove the node and free it later. */ | 330 | * We use refcnt=-1 to alert lockless readers this entry is deleted. |
| 280 | if (atomic_read(&p->refcnt) == 1) { | 331 | */ |
| 332 | if (atomic_cmpxchg(&p->refcnt, 1, -1) == 1) { | ||
| 281 | struct inet_peer **stack[PEER_MAXDEPTH]; | 333 | struct inet_peer **stack[PEER_MAXDEPTH]; |
| 282 | struct inet_peer ***stackptr, ***delp; | 334 | struct inet_peer ***stackptr, ***delp; |
| 283 | if (lookup(p->v4daddr, stack) != p) | 335 | if (lookup(p->v4daddr, stack) != p) |
| @@ -303,20 +355,21 @@ static void unlink_from_pool(struct inet_peer *p) | |||
| 303 | delp[1] = &t->avl_left; /* was &p->avl_left */ | 355 | delp[1] = &t->avl_left; /* was &p->avl_left */ |
| 304 | } | 356 | } |
| 305 | peer_avl_rebalance(stack, stackptr); | 357 | peer_avl_rebalance(stack, stackptr); |
| 306 | peer_total--; | 358 | peers.total--; |
| 307 | do_free = 1; | 359 | do_free = 1; |
| 308 | } | 360 | } |
| 309 | write_unlock_bh(&peer_pool_lock); | 361 | spin_unlock_bh(&peers.lock); |
| 310 | 362 | ||
| 311 | if (do_free) | 363 | if (do_free) |
| 312 | kmem_cache_free(peer_cachep, p); | 364 | call_rcu_bh(&p->rcu, inetpeer_free_rcu); |
| 313 | else | 365 | else |
| 314 | /* The node is used again. Decrease the reference counter | 366 | /* The node is used again. Decrease the reference counter |
| 315 | * back. The loop "cleanup -> unlink_from_unused | 367 | * back. The loop "cleanup -> unlink_from_unused |
| 316 | * -> unlink_from_pool -> putpeer -> link_to_unused | 368 | * -> unlink_from_pool -> putpeer -> link_to_unused |
| 317 | * -> cleanup (for the same node)" | 369 | * -> cleanup (for the same node)" |
| 318 | * doesn't really exist because the entry will have a | 370 | * doesn't really exist because the entry will have a |
| 319 | * recent deletion time and will not be cleaned again soon. */ | 371 | * recent deletion time and will not be cleaned again soon. |
| 372 | */ | ||
| 320 | inet_putpeer(p); | 373 | inet_putpeer(p); |
| 321 | } | 374 | } |
| 322 | 375 | ||
| @@ -326,16 +379,16 @@ static int cleanup_once(unsigned long ttl) | |||
| 326 | struct inet_peer *p = NULL; | 379 | struct inet_peer *p = NULL; |
| 327 | 380 | ||
| 328 | /* Remove the first entry from the list of unused nodes. */ | 381 | /* Remove the first entry from the list of unused nodes. */ |
| 329 | spin_lock_bh(&inet_peer_unused_lock); | 382 | spin_lock_bh(&unused_peers.lock); |
| 330 | if (!list_empty(&unused_peers)) { | 383 | if (!list_empty(&unused_peers.list)) { |
| 331 | __u32 delta; | 384 | __u32 delta; |
| 332 | 385 | ||
| 333 | p = list_first_entry(&unused_peers, struct inet_peer, unused); | 386 | p = list_first_entry(&unused_peers.list, struct inet_peer, unused); |
| 334 | delta = (__u32)jiffies - p->dtime; | 387 | delta = (__u32)jiffies - p->dtime; |
| 335 | 388 | ||
| 336 | if (delta < ttl) { | 389 | if (delta < ttl) { |
| 337 | /* Do not prune fresh entries. */ | 390 | /* Do not prune fresh entries. */ |
| 338 | spin_unlock_bh(&inet_peer_unused_lock); | 391 | spin_unlock_bh(&unused_peers.lock); |
| 339 | return -1; | 392 | return -1; |
| 340 | } | 393 | } |
| 341 | 394 | ||
| @@ -345,7 +398,7 @@ static int cleanup_once(unsigned long ttl) | |||
| 345 | * before unlink_from_pool() call. */ | 398 | * before unlink_from_pool() call. */ |
| 346 | atomic_inc(&p->refcnt); | 399 | atomic_inc(&p->refcnt); |
| 347 | } | 400 | } |
| 348 | spin_unlock_bh(&inet_peer_unused_lock); | 401 | spin_unlock_bh(&unused_peers.lock); |
| 349 | 402 | ||
| 350 | if (p == NULL) | 403 | if (p == NULL) |
| 351 | /* It means that the total number of USED entries has | 404 | /* It means that the total number of USED entries has |
| @@ -360,62 +413,56 @@ static int cleanup_once(unsigned long ttl) | |||
| 360 | /* Called with or without local BH being disabled. */ | 413 | /* Called with or without local BH being disabled. */ |
| 361 | struct inet_peer *inet_getpeer(__be32 daddr, int create) | 414 | struct inet_peer *inet_getpeer(__be32 daddr, int create) |
| 362 | { | 415 | { |
| 363 | struct inet_peer *p, *n; | 416 | struct inet_peer *p; |
| 364 | struct inet_peer **stack[PEER_MAXDEPTH], ***stackptr; | 417 | struct inet_peer **stack[PEER_MAXDEPTH], ***stackptr; |
| 365 | 418 | ||
| 366 | /* Look up for the address quickly. */ | 419 | /* Look up for the address quickly, lockless. |
| 367 | read_lock_bh(&peer_pool_lock); | 420 | * Because of a concurrent writer, we might not find an existing entry. |
| 368 | p = lookup(daddr, NULL); | 421 | */ |
| 369 | if (p != peer_avl_empty) | 422 | rcu_read_lock_bh(); |
| 370 | atomic_inc(&p->refcnt); | 423 | p = lookup_rcu_bh(daddr); |
| 371 | read_unlock_bh(&peer_pool_lock); | 424 | rcu_read_unlock_bh(); |
| 425 | |||
| 426 | if (p) { | ||
| 427 | /* The existing node has been found. | ||
| 428 | * Remove the entry from unused list if it was there. | ||
| 429 | */ | ||
| 430 | unlink_from_unused(p); | ||
| 431 | return p; | ||
| 432 | } | ||
| 372 | 433 | ||
| 434 | /* retry an exact lookup, taking the lock before. | ||
| 435 | * At least, nodes should be hot in our cache. | ||
| 436 | */ | ||
| 437 | spin_lock_bh(&peers.lock); | ||
| 438 | p = lookup(daddr, stack); | ||
| 373 | if (p != peer_avl_empty) { | 439 | if (p != peer_avl_empty) { |
| 374 | /* The existing node has been found. */ | 440 | atomic_inc(&p->refcnt); |
| 441 | spin_unlock_bh(&peers.lock); | ||
| 375 | /* Remove the entry from unused list if it was there. */ | 442 | /* Remove the entry from unused list if it was there. */ |
| 376 | unlink_from_unused(p); | 443 | unlink_from_unused(p); |
| 377 | return p; | 444 | return p; |
| 378 | } | 445 | } |
| 446 | p = create ? kmem_cache_alloc(peer_cachep, GFP_ATOMIC) : NULL; | ||
| 447 | if (p) { | ||
| 448 | p->v4daddr = daddr; | ||
| 449 | atomic_set(&p->refcnt, 1); | ||
| 450 | atomic_set(&p->rid, 0); | ||
| 451 | atomic_set(&p->ip_id_count, secure_ip_id(daddr)); | ||
| 452 | p->tcp_ts_stamp = 0; | ||
| 453 | INIT_LIST_HEAD(&p->unused); | ||
| 454 | |||
| 455 | |||
| 456 | /* Link the node. */ | ||
| 457 | link_to_pool(p); | ||
| 458 | peers.total++; | ||
| 459 | } | ||
| 460 | spin_unlock_bh(&peers.lock); | ||
| 379 | 461 | ||
| 380 | if (!create) | 462 | if (peers.total >= inet_peer_threshold) |
| 381 | return NULL; | ||
| 382 | |||
| 383 | /* Allocate the space outside the locked region. */ | ||
| 384 | n = kmem_cache_alloc(peer_cachep, GFP_ATOMIC); | ||
| 385 | if (n == NULL) | ||
| 386 | return NULL; | ||
| 387 | n->v4daddr = daddr; | ||
| 388 | atomic_set(&n->refcnt, 1); | ||
| 389 | atomic_set(&n->rid, 0); | ||
| 390 | atomic_set(&n->ip_id_count, secure_ip_id(daddr)); | ||
| 391 | n->tcp_ts_stamp = 0; | ||
| 392 | |||
| 393 | write_lock_bh(&peer_pool_lock); | ||
| 394 | /* Check if an entry has suddenly appeared. */ | ||
| 395 | p = lookup(daddr, stack); | ||
| 396 | if (p != peer_avl_empty) | ||
| 397 | goto out_free; | ||
| 398 | |||
| 399 | /* Link the node. */ | ||
| 400 | link_to_pool(n); | ||
| 401 | INIT_LIST_HEAD(&n->unused); | ||
| 402 | peer_total++; | ||
| 403 | write_unlock_bh(&peer_pool_lock); | ||
| 404 | |||
| 405 | if (peer_total >= inet_peer_threshold) | ||
| 406 | /* Remove one less-recently-used entry. */ | 463 | /* Remove one less-recently-used entry. */ |
| 407 | cleanup_once(0); | 464 | cleanup_once(0); |
| 408 | 465 | ||
| 409 | return n; | ||
| 410 | |||
| 411 | out_free: | ||
| 412 | /* The appropriate node is already in the pool. */ | ||
| 413 | atomic_inc(&p->refcnt); | ||
| 414 | write_unlock_bh(&peer_pool_lock); | ||
| 415 | /* Remove the entry from unused list if it was there. */ | ||
| 416 | unlink_from_unused(p); | ||
| 417 | /* Free preallocated the preallocated node. */ | ||
| 418 | kmem_cache_free(peer_cachep, n); | ||
| 419 | return p; | 466 | return p; |
| 420 | } | 467 | } |
| 421 | 468 | ||
| @@ -425,12 +472,12 @@ static void peer_check_expire(unsigned long dummy) | |||
| 425 | unsigned long now = jiffies; | 472 | unsigned long now = jiffies; |
| 426 | int ttl; | 473 | int ttl; |
| 427 | 474 | ||
| 428 | if (peer_total >= inet_peer_threshold) | 475 | if (peers.total >= inet_peer_threshold) |
| 429 | ttl = inet_peer_minttl; | 476 | ttl = inet_peer_minttl; |
| 430 | else | 477 | else |
| 431 | ttl = inet_peer_maxttl | 478 | ttl = inet_peer_maxttl |
| 432 | - (inet_peer_maxttl - inet_peer_minttl) / HZ * | 479 | - (inet_peer_maxttl - inet_peer_minttl) / HZ * |
| 433 | peer_total / inet_peer_threshold * HZ; | 480 | peers.total / inet_peer_threshold * HZ; |
| 434 | while (!cleanup_once(ttl)) { | 481 | while (!cleanup_once(ttl)) { |
| 435 | if (jiffies != now) | 482 | if (jiffies != now) |
| 436 | break; | 483 | break; |
| @@ -439,22 +486,25 @@ static void peer_check_expire(unsigned long dummy) | |||
| 439 | /* Trigger the timer after inet_peer_gc_mintime .. inet_peer_gc_maxtime | 486 | /* Trigger the timer after inet_peer_gc_mintime .. inet_peer_gc_maxtime |
| 440 | * interval depending on the total number of entries (more entries, | 487 | * interval depending on the total number of entries (more entries, |
| 441 | * less interval). */ | 488 | * less interval). */ |
| 442 | if (peer_total >= inet_peer_threshold) | 489 | if (peers.total >= inet_peer_threshold) |
| 443 | peer_periodic_timer.expires = jiffies + inet_peer_gc_mintime; | 490 | peer_periodic_timer.expires = jiffies + inet_peer_gc_mintime; |
| 444 | else | 491 | else |
| 445 | peer_periodic_timer.expires = jiffies | 492 | peer_periodic_timer.expires = jiffies |
| 446 | + inet_peer_gc_maxtime | 493 | + inet_peer_gc_maxtime |
| 447 | - (inet_peer_gc_maxtime - inet_peer_gc_mintime) / HZ * | 494 | - (inet_peer_gc_maxtime - inet_peer_gc_mintime) / HZ * |
| 448 | peer_total / inet_peer_threshold * HZ; | 495 | peers.total / inet_peer_threshold * HZ; |
| 449 | add_timer(&peer_periodic_timer); | 496 | add_timer(&peer_periodic_timer); |
| 450 | } | 497 | } |
| 451 | 498 | ||
| 452 | void inet_putpeer(struct inet_peer *p) | 499 | void inet_putpeer(struct inet_peer *p) |
| 453 | { | 500 | { |
| 454 | spin_lock_bh(&inet_peer_unused_lock); | 501 | local_bh_disable(); |
| 455 | if (atomic_dec_and_test(&p->refcnt)) { | 502 | |
| 456 | list_add_tail(&p->unused, &unused_peers); | 503 | if (atomic_dec_and_lock(&p->refcnt, &unused_peers.lock)) { |
| 504 | list_add_tail(&p->unused, &unused_peers.list); | ||
| 457 | p->dtime = (__u32)jiffies; | 505 | p->dtime = (__u32)jiffies; |
| 506 | spin_unlock(&unused_peers.lock); | ||
| 458 | } | 507 | } |
| 459 | spin_unlock_bh(&inet_peer_unused_lock); | 508 | |
| 509 | local_bh_enable(); | ||
| 460 | } | 510 | } |
