aboutsummaryrefslogtreecommitdiffstats
path: root/net/rose/af_rose.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/rose/af_rose.c')
-rw-r--r--net/rose/af_rose.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/rose/af_rose.c b/net/rose/af_rose.c
index 1511697b22ba..f38c3b3471ee 100644
--- a/net/rose/af_rose.c
+++ b/net/rose/af_rose.c
@@ -1156,7 +1156,7 @@ static int rose_sendmsg(struct kiocb *iocb, struct socket *sock,
1156 int lg; 1156 int lg;
1157 1157
1158 /* Save a copy of the Header */ 1158 /* Save a copy of the Header */
1159 memcpy(header, skb->data, ROSE_MIN_LEN); 1159 skb_copy_from_linear_data(skb, header, ROSE_MIN_LEN);
1160 skb_pull(skb, ROSE_MIN_LEN); 1160 skb_pull(skb, ROSE_MIN_LEN);
1161 1161
1162 frontlen = skb_headroom(skb); 1162 frontlen = skb_headroom(skb);
@@ -1176,7 +1176,7 @@ static int rose_sendmsg(struct kiocb *iocb, struct socket *sock,
1176 lg = (ROSE_PACLEN > skb->len) ? skb->len : ROSE_PACLEN; 1176 lg = (ROSE_PACLEN > skb->len) ? skb->len : ROSE_PACLEN;
1177 1177
1178 /* Copy the user data */ 1178 /* Copy the user data */
1179 memcpy(skb_put(skbn, lg), skb->data, lg); 1179 skb_copy_from_linear_data(skb, skb_put(skbn, lg), lg);
1180 skb_pull(skb, lg); 1180 skb_pull(skb, lg);
1181 1181
1182 /* Duplicate the Header */ 1182 /* Duplicate the Header */