diff options
Diffstat (limited to 'net/ipv4/tcp_ulp.c')
| -rw-r--r-- | net/ipv4/tcp_ulp.c | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/net/ipv4/tcp_ulp.c b/net/ipv4/tcp_ulp.c index 12ab5db2b71c..38d3ad141161 100644 --- a/net/ipv4/tcp_ulp.c +++ b/net/ipv4/tcp_ulp.c @@ -99,17 +99,19 @@ void tcp_get_available_ulp(char *buf, size_t maxlen)  	rcu_read_unlock();  } -void tcp_update_ulp(struct sock *sk, struct proto *proto) +void tcp_update_ulp(struct sock *sk, struct proto *proto, +		    void (*write_space)(struct sock *sk))  {  	struct inet_connection_sock *icsk = inet_csk(sk);  	if (!icsk->icsk_ulp_ops) { +		sk->sk_write_space = write_space;  		sk->sk_prot = proto;  		return;  	}  	if (icsk->icsk_ulp_ops->update) -		icsk->icsk_ulp_ops->update(sk, proto); +		icsk->icsk_ulp_ops->update(sk, proto, write_space);  }  void tcp_cleanup_ulp(struct sock *sk) | 
