aboutsummaryrefslogtreecommitdiffstats
path: root/net/rose/af_rose.c
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2007-03-27 17:55:52 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2007-04-26 01:28:23 -0400
commitd626f62b11e00c16e81e4308ab93d3f13551812a (patch)
treefac4af6ced853755e12fc709d55f0c2bec51265d /net/rose/af_rose.c
parent2a123b86e2b242a4a6db990d2851d45e192f88e5 (diff)
[SK_BUFF]: Introduce skb_copy_from_linear_data{_offset}
To clearly state the intent of copying from linear sk_buffs, _offset being a overly long variant but interesting for the sake of saving some bytes. Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
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 */