net: Use a percpu_counter for orphan_count
Instead of using one atomic_t per protocol, use a percpu_counter for "orphan_count", to reduce cache line contention on heavy duty network servers. Signed-off-by: Eric Dumazet <dada1@cosmosbay.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
1748376b66
commit
dd24c00191
8 changed files with 24 additions and 18 deletions
|
|
@ -666,7 +666,7 @@ struct proto {
|
|||
unsigned int obj_size;
|
||||
int slab_flags;
|
||||
|
||||
atomic_t *orphan_count;
|
||||
struct percpu_counter *orphan_count;
|
||||
|
||||
struct request_sock_ops *rsk_prot;
|
||||
struct timewait_sock_ops *twsk_prot;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue