Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[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: David S. Miller <davem@davemloft.net>

+3 -2
+3 -2
net/ipv4/tcp.c
··· 2364 2364 2365 2365 EXPORT_SYMBOL(__tcp_get_md5sig_pool); 2366 2366 2367 - void __tcp_put_md5sig_pool(void) { 2368 - __tcp_free_md5sig_pool(tcp_md5sig_pool); 2367 + void __tcp_put_md5sig_pool(void) 2368 + { 2369 + tcp_free_md5sig_pool(); 2369 2370 } 2370 2371 2371 2372 EXPORT_SYMBOL(__tcp_put_md5sig_pool);