aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/algif_skcipher.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/algif_skcipher.c')
-rw-r--r--crypto/algif_skcipher.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/algif_skcipher.c b/crypto/algif_skcipher.c
index 8f903b6df299..945075292bc9 100644
--- a/crypto/algif_skcipher.c
+++ b/crypto/algif_skcipher.c
@@ -641,7 +641,7 @@ static int skcipher_recvmsg_sync(struct socket *sock, struct msghdr *msg,
641 long copied = 0; 641 long copied = 0;
642 642
643 lock_sock(sk); 643 lock_sock(sk);
644 while (iov_iter_count(&msg->msg_iter)) { 644 while (msg_data_left(msg)) {
645 sgl = list_first_entry(&ctx->tsgl, 645 sgl = list_first_entry(&ctx->tsgl,
646 struct skcipher_sg_list, list); 646 struct skcipher_sg_list, list);
647 sg = sgl->sg; 647 sg = sgl->sg;
@@ -655,7 +655,7 @@ static int skcipher_recvmsg_sync(struct socket *sock, struct msghdr *msg,
655 goto unlock; 655 goto unlock;
656 } 656 }
657 657
658 used = min_t(unsigned long, ctx->used, iov_iter_count(&msg->msg_iter)); 658 used = min_t(unsigned long, ctx->used, msg_data_left(msg));
659 659
660 used = af_alg_make_sg(&ctx->rsgl, &msg->msg_iter, used); 660 used = af_alg_make_sg(&ctx->rsgl, &msg->msg_iter, used);
661 err = used; 661 err = used;