aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/ipv4/tcp.c9
-rw-r--r--net/ipv4/tcp_diag.c8
2 files changed, 12 insertions, 5 deletions
diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c
index 18c64c74f6d5..4f322003835d 100644
--- a/net/ipv4/tcp.c
+++ b/net/ipv4/tcp.c
@@ -2031,8 +2031,13 @@ void tcp_get_info(struct sock *sk, struct tcp_info *info)
2031 info->tcpi_snd_mss = tp->mss_cache; 2031 info->tcpi_snd_mss = tp->mss_cache;
2032 info->tcpi_rcv_mss = icsk->icsk_ack.rcv_mss; 2032 info->tcpi_rcv_mss = icsk->icsk_ack.rcv_mss;
2033 2033
2034 info->tcpi_unacked = tp->packets_out; 2034 if (sk->sk_state == TCP_LISTEN) {
2035 info->tcpi_sacked = tp->sacked_out; 2035 info->tcpi_unacked = sk->sk_ack_backlog;
2036 info->tcpi_sacked = sk->sk_max_ack_backlog;
2037 } else {
2038 info->tcpi_unacked = tp->packets_out;
2039 info->tcpi_sacked = tp->sacked_out;
2040 }
2036 info->tcpi_lost = tp->lost_out; 2041 info->tcpi_lost = tp->lost_out;
2037 info->tcpi_retrans = tp->retrans_out; 2042 info->tcpi_retrans = tp->retrans_out;
2038 info->tcpi_fackets = tp->fackets_out; 2043 info->tcpi_fackets = tp->fackets_out;
diff --git a/net/ipv4/tcp_diag.c b/net/ipv4/tcp_diag.c
index 57c5f0b10e6c..3904d2158a92 100644
--- a/net/ipv4/tcp_diag.c
+++ b/net/ipv4/tcp_diag.c
@@ -25,11 +25,13 @@ static void tcp_diag_get_info(struct sock *sk, struct inet_diag_msg *r,
25 const struct tcp_sock *tp = tcp_sk(sk); 25 const struct tcp_sock *tp = tcp_sk(sk);
26 struct tcp_info *info = _info; 26 struct tcp_info *info = _info;
27 27
28 if (sk->sk_state == TCP_LISTEN) 28 if (sk->sk_state == TCP_LISTEN) {
29 r->idiag_rqueue = sk->sk_ack_backlog; 29 r->idiag_rqueue = sk->sk_ack_backlog;
30 else 30 r->idiag_wqueue = sk->sk_max_ack_backlog;
31 } else {
31 r->idiag_rqueue = tp->rcv_nxt - tp->copied_seq; 32 r->idiag_rqueue = tp->rcv_nxt - tp->copied_seq;
32 r->idiag_wqueue = tp->write_seq - tp->snd_una; 33 r->idiag_wqueue = tp->write_seq - tp->snd_una;
34 }
33 if (info != NULL) 35 if (info != NULL)
34 tcp_get_info(sk, info); 36 tcp_get_info(sk, info);
35} 37}