net: Fix for dst_negative_advice
dst_negative_advice() should check for changed dst and reset sk_tx_queue_mapping accordingly. Pass sock to the callers of dst_negative_advice. (sk_reset_txq is defined just for use by dst_negative_advice. The only way I could find to get around this is to move dst_negative_() from dst.h to dst.c, include sock.h in dst.c, etc) Signed-off-by: Krishna Kumar <krkumar2@in.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
f04c827624
commit
ea94ff3b55
@@ -141,14 +141,14 @@ static int tcp_write_timeout(struct sock *sk)
|
||||
|
||||
if ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV)) {
|
||||
if (icsk->icsk_retransmits)
|
||||
dst_negative_advice(&sk->sk_dst_cache);
|
||||
dst_negative_advice(&sk->sk_dst_cache, sk);
|
||||
retry_until = icsk->icsk_syn_retries ? : sysctl_tcp_syn_retries;
|
||||
} else {
|
||||
if (retransmits_timed_out(sk, sysctl_tcp_retries1)) {
|
||||
/* Black hole detection */
|
||||
tcp_mtu_probing(icsk, sk);
|
||||
|
||||
dst_negative_advice(&sk->sk_dst_cache);
|
||||
dst_negative_advice(&sk->sk_dst_cache, sk);
|
||||
}
|
||||
|
||||
retry_until = sysctl_tcp_retries2;
|
||||
|
Reference in New Issue
Block a user