From: Eric Dumazet
Date: Fri, 02 Jun 2017 08:02:26 -0700
> From: Eric Dumazet
>
> DCCP uses dccp_write_space() for sk->sk_write_space method.
>
> Unfortunately a passive connection (as provided by accept())
> is using the generic sk_stream_write_space() function.
>
> Lets simply inherit sk->s
From: Eric Dumazet
DCCP uses dccp_write_space() for sk->sk_write_space method.
Unfortunately a passive connection (as provided by accept())
is using the generic sk_stream_write_space() function.
Lets simply inherit sk->sk_write_space from the parent
instead of forcing the generic one.
Signed-o