Commit 5a3611ef authored by Doron Roberts-Kedes's avatar Doron Roberts-Kedes Committed by David S. Miller

tls: Remove dead code in tls_sw_sendmsg

tls_push_record either returns 0 on success or a negative value on failure.
This patch removes code that would only be executed if tls_push_record
were to return a positive value.
Signed-off-by: default avatarDoron Roberts-Kedes <doronrk@fb.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 37b81dc5
...@@ -423,12 +423,10 @@ int tls_sw_sendmsg(struct sock *sk, struct msghdr *msg, size_t size) ...@@ -423,12 +423,10 @@ int tls_sw_sendmsg(struct sock *sk, struct msghdr *msg, size_t size)
copied += try_to_copy; copied += try_to_copy;
ret = tls_push_record(sk, msg->msg_flags, record_type); ret = tls_push_record(sk, msg->msg_flags, record_type);
if (!ret) if (ret)
continue;
if (ret < 0)
goto send_end; goto send_end;
continue;
copied -= try_to_copy;
fallback_to_reg_send: fallback_to_reg_send:
iov_iter_revert(&msg->msg_iter, iov_iter_revert(&msg->msg_iter,
ctx->sg_plaintext_size - orig_size); ctx->sg_plaintext_size - orig_size);
......
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