]> git.baikalelectronics.ru Git - kernel.git/commit
ipv4: Invalidate the socket cached route on pmtu events if possible
authorSteffen Klassert <steffen.klassert@secunet.com>
Mon, 21 Jan 2013 01:59:11 +0000 (01:59 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 21 Jan 2013 19:17:05 +0000 (14:17 -0500)
commit4f142f3d175c179607d18fc98f9d5f673420b724
tree2dc26f0aef8f48c21e91496492eaddae3d133c7f
parente0eae61daf42f781205131c9a98ad8c58395466e
ipv4: Invalidate the socket cached route on pmtu events if possible

The route lookup in ipv4_sk_update_pmtu() might return a route
different from the route we cached at the socket. This is because
standart routes are per cpu, so each cpu has it's own struct rtable.
This means that we do not invalidate the socket cached route if the
NET_RX_SOFTIRQ is not served by the same cpu that the sending socket
uses. As a result, the cached route reused until we disconnect.

With this patch we invalidate the socket cached route if possible.
If the socket is owened by the user, we can't update the cached
route directly. A followup patch will implement socket release
callback functions for datagram sockets to handle this case.

Reported-by: Yurij M. Plotnikov <Yurij.Plotnikov@oktetlabs.ru>
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/route.c