diff options
author | Arnaldo Carvalho de Melo <acme@ghostprotocols.net> | 2007-03-31 10:55:45 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:28:30 -0400 |
commit | 1a4e2d093fd5f3eaf8cffc04a1b803f8b0ddef6d (patch) | |
tree | 2743aa6311b434840e82b6107013c34605534816 /net/ax25 | |
parent | 27d7ff46a3498d3debc6ba68fb8014c702b81170 (diff) |
[SK_BUFF]: Some more conversions to skb_copy_from_linear_data
Signed-off-by: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Diffstat (limited to 'net/ax25')
-rw-r--r-- | net/ax25/ax25_in.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/ax25/ax25_in.c b/net/ax25/ax25_in.c index 31c59387a6fc..0ddaff0df217 100644 --- a/net/ax25/ax25_in.c +++ b/net/ax25/ax25_in.c | |||
@@ -66,7 +66,9 @@ static int ax25_rx_fragment(ax25_cb *ax25, struct sk_buff *skb) | |||
66 | 66 | ||
67 | /* Copy data from the fragments */ | 67 | /* Copy data from the fragments */ |
68 | while ((skbo = skb_dequeue(&ax25->frag_queue)) != NULL) { | 68 | while ((skbo = skb_dequeue(&ax25->frag_queue)) != NULL) { |
69 | memcpy(skb_put(skbn, skbo->len), skbo->data, skbo->len); | 69 | skb_copy_from_linear_data(skbo, |
70 | skb_put(skbn, skbo->len), | ||
71 | skbo->len); | ||
70 | kfree_skb(skbo); | 72 | kfree_skb(skbo); |
71 | } | 73 | } |
72 | 74 | ||