On Fri, 2013-02-01 at 18:16 -0800, Eric Dumazet wrote: > skb->sk might be a TIMEWAIT socket. > > Therefore, you cant blindly use skb->sk->sk_socket >
A fix would be to add after :
sk = skb->sk;
the following code :
if (sk && sk->sk_state == TCP_TIME_WAIT)
sk = NULL;
--
To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html
