Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit eb49a973 authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller
Browse files

ipv4: fix ip_rt_update_pmtu()

commit 2c8cec5c (Cache learned PMTU information in inetpeer) added
an extra inet_putpeer() call in ip_rt_update_pmtu().

This results in various problems, since we can free one inetpeer, while
it is still in use.

Ref: http://www.spinics.net/lists/netdev/msg159121.html



Reported-by: default avatarAlexander Beregalov <a.beregalov@gmail.com>
Signed-off-by: default avatarEric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 406b6f97
Loading
Loading
Loading
Loading
+0 −2
Original line number Original line Diff line number Diff line
@@ -1593,8 +1593,6 @@ static void ip_rt_update_pmtu(struct dst_entry *dst, u32 mtu)
			rt->rt_peer_genid = rt_peer_genid();
			rt->rt_peer_genid = rt_peer_genid();
		}
		}
		check_peer_pmtu(dst, peer);
		check_peer_pmtu(dst, peer);

		inet_putpeer(peer);
	}
	}
}
}