Commit ea94ff3b authored by Krishna Kumar's avatar Krishna Kumar Committed by David S. Miller

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: default avatarKrishna Kumar <krkumar2@in.ibm.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f04c8276
...@@ -222,11 +222,19 @@ static inline void dst_confirm(struct dst_entry *dst) ...@@ -222,11 +222,19 @@ static inline void dst_confirm(struct dst_entry *dst)
neigh_confirm(dst->neighbour); neigh_confirm(dst->neighbour);
} }
static inline void dst_negative_advice(struct dst_entry **dst_p) static inline void dst_negative_advice(struct dst_entry **dst_p,
struct sock *sk)
{ {
struct dst_entry * dst = *dst_p; struct dst_entry * dst = *dst_p;
if (dst && dst->ops->negative_advice) if (dst && dst->ops->negative_advice) {
*dst_p = dst->ops->negative_advice(dst); *dst_p = dst->ops->negative_advice(dst);
if (dst != *dst_p) {
extern void sk_reset_txq(struct sock *sk);
sk_reset_txq(sk);
}
}
} }
static inline void dst_link_failure(struct sk_buff *skb) static inline void dst_link_failure(struct sk_buff *skb)
......
...@@ -352,6 +352,12 @@ int sk_receive_skb(struct sock *sk, struct sk_buff *skb, const int nested) ...@@ -352,6 +352,12 @@ int sk_receive_skb(struct sock *sk, struct sk_buff *skb, const int nested)
} }
EXPORT_SYMBOL(sk_receive_skb); EXPORT_SYMBOL(sk_receive_skb);
void sk_reset_txq(struct sock *sk)
{
sk_tx_queue_clear(sk);
}
EXPORT_SYMBOL(sk_reset_txq);
struct dst_entry *__sk_dst_check(struct sock *sk, u32 cookie) struct dst_entry *__sk_dst_check(struct sock *sk, u32 cookie)
{ {
struct dst_entry *dst = sk->sk_dst_cache; struct dst_entry *dst = sk->sk_dst_cache;
......
...@@ -38,7 +38,7 @@ static int dccp_write_timeout(struct sock *sk) ...@@ -38,7 +38,7 @@ static int dccp_write_timeout(struct sock *sk)
if (sk->sk_state == DCCP_REQUESTING || sk->sk_state == DCCP_PARTOPEN) { if (sk->sk_state == DCCP_REQUESTING || sk->sk_state == DCCP_PARTOPEN) {
if (icsk->icsk_retransmits != 0) if (icsk->icsk_retransmits != 0)
dst_negative_advice(&sk->sk_dst_cache); dst_negative_advice(&sk->sk_dst_cache, sk);
retry_until = icsk->icsk_syn_retries ? retry_until = icsk->icsk_syn_retries ?
: sysctl_dccp_request_retries; : sysctl_dccp_request_retries;
} else { } else {
...@@ -63,7 +63,7 @@ static int dccp_write_timeout(struct sock *sk) ...@@ -63,7 +63,7 @@ static int dccp_write_timeout(struct sock *sk)
Golden words :-). Golden words :-).
*/ */
dst_negative_advice(&sk->sk_dst_cache); dst_negative_advice(&sk->sk_dst_cache, sk);
} }
retry_until = sysctl_dccp_retries2; retry_until = sysctl_dccp_retries2;
......
...@@ -1955,7 +1955,7 @@ static int dn_sendmsg(struct kiocb *iocb, struct socket *sock, ...@@ -1955,7 +1955,7 @@ static int dn_sendmsg(struct kiocb *iocb, struct socket *sock,
} }
if ((flags & MSG_TRYHARD) && sk->sk_dst_cache) if ((flags & MSG_TRYHARD) && sk->sk_dst_cache)
dst_negative_advice(&sk->sk_dst_cache); dst_negative_advice(&sk->sk_dst_cache, sk);
mss = scp->segsize_rem; mss = scp->segsize_rem;
fctype = scp->services_rem & NSP_FC_MASK; fctype = scp->services_rem & NSP_FC_MASK;
......
...@@ -141,14 +141,14 @@ static int tcp_write_timeout(struct sock *sk) ...@@ -141,14 +141,14 @@ static int tcp_write_timeout(struct sock *sk)
if ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV)) { if ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV)) {
if (icsk->icsk_retransmits) 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; retry_until = icsk->icsk_syn_retries ? : sysctl_tcp_syn_retries;
} else { } else {
if (retransmits_timed_out(sk, sysctl_tcp_retries1)) { if (retransmits_timed_out(sk, sysctl_tcp_retries1)) {
/* Black hole detection */ /* Black hole detection */
tcp_mtu_probing(icsk, sk); 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; retry_until = sysctl_tcp_retries2;
......
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