OSDN Git Service

udp: implement complete book-keeping for encap_needed
authorPaolo Abeni <pabeni@redhat.com>
Wed, 7 Nov 2018 11:38:28 +0000 (12:38 +0100)
committerDavid S. Miller <davem@davemloft.net>
Thu, 8 Nov 2018 00:23:04 +0000 (16:23 -0800)
commit60fb9567bf30937e6bedfa939d7c8fd4ee6a1b1c
tree92197dd09800c0f4704f94bfd49ffe2d9a9d664e
parent7e225619e8afc432fb054ef135f10c11cf8cfc85
udp: implement complete book-keeping for encap_needed

The *encap_needed static keys are enabled by UDP tunnels
and several UDP encapsulations type, but they are never
turned off. This can cause unneeded overall performance
degradation for systems where such features are used
transiently.

This patch introduces complete book-keeping for such keys,
decreasing the usage at socket destruction time, if needed,
and avoiding that the same socket could increase the key
usage multiple times.

rfc v3 -> v1:
 - add socket lock around udp_tunnel_encap_enable()

rfc v2 -> rfc v3:
 - use udp_tunnel_encap_enable() in setsockopt()

Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/udp.h
include/net/udp_tunnel.h
net/ipv4/udp.c
net/ipv6/udp.c