diff options
author | Eric Dumazet <dada1@cosmosbay.com> | 2007-11-06 02:39:16 -0500 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-11-07 07:08:58 -0500 |
commit | 47a31a6ffcca3b55149bccd5b99763e5eea60ac4 (patch) | |
tree | de45b7c03799f16e717b9bf63b249bfe5f0f19a4 /net/ipv4/tcp_ipv4.c | |
parent | 286ab3d46058840d68e5d7d52e316c1f7e98c59f (diff) |
[IPV4]: Use the {DEFINE|REF}_PROTO_INUSE infrastructure
Trivial patch to make "tcp,udp,udplite,raw" protocols uses the fast
"inuse sockets" infrastructure
Each protocol use then a static percpu var, instead of a dynamic one.
This saves some ram and some cpu cycles
Signed-off-by: Eric Dumazet <dada1@cosmosbay.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp_ipv4.c')
-rw-r--r-- | net/ipv4/tcp_ipv4.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c index d438dfb0c8f3..e9127cdced20 100644 --- a/net/ipv4/tcp_ipv4.c +++ b/net/ipv4/tcp_ipv4.c | |||
@@ -2417,6 +2417,8 @@ void tcp4_proc_exit(void) | |||
2417 | } | 2417 | } |
2418 | #endif /* CONFIG_PROC_FS */ | 2418 | #endif /* CONFIG_PROC_FS */ |
2419 | 2419 | ||
2420 | DEFINE_PROTO_INUSE(tcp) | ||
2421 | |||
2420 | struct proto tcp_prot = { | 2422 | struct proto tcp_prot = { |
2421 | .name = "TCP", | 2423 | .name = "TCP", |
2422 | .owner = THIS_MODULE, | 2424 | .owner = THIS_MODULE, |
@@ -2451,6 +2453,7 @@ struct proto tcp_prot = { | |||
2451 | .compat_setsockopt = compat_tcp_setsockopt, | 2453 | .compat_setsockopt = compat_tcp_setsockopt, |
2452 | .compat_getsockopt = compat_tcp_getsockopt, | 2454 | .compat_getsockopt = compat_tcp_getsockopt, |
2453 | #endif | 2455 | #endif |
2456 | REF_PROTO_INUSE(tcp) | ||
2454 | }; | 2457 | }; |
2455 | 2458 | ||
2456 | void __init tcp_v4_init(struct net_proto_family *ops) | 2459 | void __init tcp_v4_init(struct net_proto_family *ops) |