Re: [PATCH v3 4/4] net: diag: Support destroying TCP sockets.

2015-11-30 Thread Lorenzo Colitti
On Tue, Dec 1, 2015 at 3:23 PM, kbuild test robot wrote: >>> ERROR: "tcp_send_active_reset" undefined! I used tcp_send_active_reset from tcp_diag.ko without an EXPORT_SYMBOL_GPL in net/ipv4/tcp_output.c. Fixed in patch v4. -- To unsubscribe from this list: send the line "unsubscribe netdev" in th

Re: [PATCH v3 4/4] net: diag: Support destroying TCP sockets.

2015-11-30 Thread kbuild test robot
Hi Lorenzo, [auto build test ERROR on net/master] [also build test ERROR on v4.4-rc3 next-20151127] url: https://github.com/0day-ci/linux/commits/Lorenzo-Colitti/net-diag-split-inet_diag_dump_one_icsk-into-two/20151201-103636 config: i386-allmodconfig (attached as .config) reproduce:

[PATCH v3 4/4] net: diag: Support destroying TCP sockets.

2015-11-30 Thread Lorenzo Colitti
This implements SOCK_DESTROY for TCP sockets. It causes all blocking calls on the socket to fail fast with ECONNABORTED and causes a protocol close of the socket. It informs the other end of the connection by sending a RST, i.e., initiating a TCP ABORT as per RFC 793. ECONNABORTED was chosen for co