diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2016-09-25 17:23:57 -0400 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2016-09-25 17:34:19 -0400 |
commit | f20fbc0717f9f007c94b2641134b19228d0ce9ed (patch) | |
tree | 1404248ebbec552a3fb7928b75322b65d74de1bd /net/ipv4/tcp_ipv4.c | |
parent | 8cb2a7d5667ab9a9c2fdd356357b85b63b320901 (diff) | |
parent | fe0acb5fcb7fe8cb3d68bbdb8459865c972d8f83 (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next
Conflicts:
net/netfilter/core.c
net/netfilter/nf_tables_netdev.c
Resolve two conflicts before pull request for David's net-next tree:
1) Between c73c24849011 ("netfilter: nf_tables_netdev: remove redundant
ip_hdr assignment") from the net tree and commit ddc8b6027ad0
("netfilter: introduce nft_set_pktinfo_{ipv4, ipv6}_validate()").
2) Between e8bffe0cf964 ("net: Add _nf_(un)register_hooks symbols") and
Aaron Conole's patches to replace list_head with single linked list.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/ipv4/tcp_ipv4.c')
-rw-r--r-- | net/ipv4/tcp_ipv4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c index 13b05adf9d3e..7ac37c314312 100644 --- a/net/ipv4/tcp_ipv4.c +++ b/net/ipv4/tcp_ipv4.c | |||
@@ -1844,7 +1844,7 @@ void tcp_v4_destroy_sock(struct sock *sk) | |||
1844 | tcp_write_queue_purge(sk); | 1844 | tcp_write_queue_purge(sk); |
1845 | 1845 | ||
1846 | /* Cleans up our, hopefully empty, out_of_order_queue. */ | 1846 | /* Cleans up our, hopefully empty, out_of_order_queue. */ |
1847 | __skb_queue_purge(&tp->out_of_order_queue); | 1847 | skb_rbtree_purge(&tp->out_of_order_queue); |
1848 | 1848 | ||
1849 | #ifdef CONFIG_TCP_MD5SIG | 1849 | #ifdef CONFIG_TCP_MD5SIG |
1850 | /* Clean up the MD5 key list, if any */ | 1850 | /* Clean up the MD5 key list, if any */ |