aboutsummaryrefslogtreecommitdiffstats
path: root/net/iucv/af_iucv.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/iucv/af_iucv.c')
-rw-r--r--net/iucv/af_iucv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/iucv/af_iucv.c b/net/iucv/af_iucv.c
index 057b5647ef92..1cd3f8107239 100644
--- a/net/iucv/af_iucv.c
+++ b/net/iucv/af_iucv.c
@@ -1122,7 +1122,7 @@ static int iucv_sock_sendmsg(struct kiocb *iocb, struct socket *sock,
1122 } 1122 }
1123 if (iucv->transport == AF_IUCV_TRANS_HIPER) 1123 if (iucv->transport == AF_IUCV_TRANS_HIPER)
1124 skb_reserve(skb, sizeof(struct af_iucv_trans_hdr) + ETH_HLEN); 1124 skb_reserve(skb, sizeof(struct af_iucv_trans_hdr) + ETH_HLEN);
1125 if (memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len)) { 1125 if (memcpy_from_msg(skb_put(skb, len), msg, len)) {
1126 err = -EFAULT; 1126 err = -EFAULT;
1127 goto fail; 1127 goto fail;
1128 } 1128 }