diff options
Diffstat (limited to 'net/ipv4/tcp_diag.c')
| -rw-r--r-- | net/ipv4/tcp_diag.c | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/net/ipv4/tcp_diag.c b/net/ipv4/tcp_diag.c index c148c1081880..b56399c7cc12 100644 --- a/net/ipv4/tcp_diag.c +++ b/net/ipv4/tcp_diag.c | |||
| @@ -26,7 +26,10 @@ static void tcp_diag_get_info(struct sock *sk, struct inet_diag_msg *r, | |||
| 26 | const struct tcp_sock *tp = tcp_sk(sk); | 26 | const struct tcp_sock *tp = tcp_sk(sk); | 
| 27 | struct tcp_info *info = _info; | 27 | struct tcp_info *info = _info; | 
| 28 | 28 | ||
| 29 | r->idiag_rqueue = tp->rcv_nxt - tp->copied_seq; | 29 | if (sk->sk_state == TCP_LISTEN) | 
| 30 | r->idiag_rqueue = sk->sk_ack_backlog; | ||
| 31 | else | ||
| 32 | r->idiag_rqueue = tp->rcv_nxt - tp->copied_seq; | ||
| 30 | r->idiag_wqueue = tp->write_seq - tp->snd_una; | 33 | r->idiag_wqueue = tp->write_seq - tp->snd_una; | 
| 31 | if (info != NULL) | 34 | if (info != NULL) | 
| 32 | tcp_get_info(sk, info); | 35 | tcp_get_info(sk, info); | 
