Commit 456413c9 authored by Andrey Vagin's avatar Andrey Vagin Committed by Pavel Emelyanov

tcp: check a state in refresh_inet_sk (v2)

A socket can get fin and a state will be changed on CLOSE_WAIT,
which is not supported yet.
Signed-off-by: 's avatarAndrey Vagin <avagin@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent e1082937
......@@ -54,6 +54,21 @@ static int tcp_repair_on(int fd)
static int refresh_inet_sk(struct inet_sk_desc *sk)
{
int size;
struct tcp_info info;
if (dump_opt(sk->rfd, SOL_TCP, TCP_INFO, &info)) {
pr_perror("Failt to obtain TCP_INFO");
return -1;
}
switch (info.tcpi_state) {
case TCP_ESTABLISHED:
case TCP_CLOSE:
break;
default:
pr_err("Unknown state %d\n", sk->state);
return -1;
}
if (ioctl(sk->rfd, SIOCOUTQ, &size) == -1) {
pr_perror("Unable to get size of snd queue");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment