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

Commit 6931ba7c authored by David S. Miller's avatar David S. Miller
Browse files

[TCP]: Fix oops caused by __tcp_put_md5sig_pool()



It should call tcp_free_md5sig_pool() not __tcp_free_md5sig_pool()
so that it does proper refcounting.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent befffe90
Loading
Loading
Loading
Loading
+3 −2
Original line number Original line Diff line number Diff line
@@ -2364,8 +2364,9 @@ struct tcp_md5sig_pool *__tcp_get_md5sig_pool(int cpu)


EXPORT_SYMBOL(__tcp_get_md5sig_pool);
EXPORT_SYMBOL(__tcp_get_md5sig_pool);


void __tcp_put_md5sig_pool(void) {
void __tcp_put_md5sig_pool(void)
	__tcp_free_md5sig_pool(tcp_md5sig_pool);
{
	tcp_free_md5sig_pool();
}
}


EXPORT_SYMBOL(__tcp_put_md5sig_pool);
EXPORT_SYMBOL(__tcp_put_md5sig_pool);