aboutsummaryrefslogtreecommitdiffstats
path: root/net/tls/tls_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/tls/tls_main.c')
-rw-r--r--net/tls/tls_main.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/net/tls/tls_main.c b/net/tls/tls_main.c
index ab1bd167b63b..e07ee3ae0023 100644
--- a/net/tls/tls_main.c
+++ b/net/tls/tls_main.c
@@ -401,9 +401,6 @@ static int do_tls_setsockopt_tx(struct sock *sk, char __user *optval,
401 goto out; 401 goto out;
402 } 402 }
403 403
404 ctx->sk_write_space = sk->sk_write_space;
405 sk->sk_write_space = tls_write_space;
406
407 /* currently SW is default, we will have ethtool in future */ 404 /* currently SW is default, we will have ethtool in future */
408 rc = tls_set_sw_offload(sk, ctx); 405 rc = tls_set_sw_offload(sk, ctx);
409 tx_conf = TLS_SW_TX; 406 tx_conf = TLS_SW_TX;
@@ -412,6 +409,8 @@ static int do_tls_setsockopt_tx(struct sock *sk, char __user *optval,
412 409
413 ctx->tx_conf = tx_conf; 410 ctx->tx_conf = tx_conf;
414 update_sk_prot(sk, ctx); 411 update_sk_prot(sk, ctx);
412 ctx->sk_write_space = sk->sk_write_space;
413 sk->sk_write_space = tls_write_space;
415 goto out; 414 goto out;
416 415
417err_crypto_info: 416err_crypto_info: