aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Aring <alex.aring@gmail.com>2014-10-27 12:13:28 -0400
committerMarcel Holtmann <marcel@holtmann.org>2014-10-27 13:07:36 -0400
commit061ef8f915988839b12460c47ebfcf3700e124f0 (patch)
treed0be975ce42d506ead60ad00e6b8a60bf2dcad64
parent01141234f237957ec962dda2f1ca89d9ef180884 (diff)
mac802154: tx: use put_unaligned_le16 for copy crc
This patch replaces the memcpy with a put_unaligned_le16. The placement of crc inside of PSDU can also be unaligned. With memcpy this can fail on some architectures. Signed-off-by: Alexander Aring <alex.aring@gmail.com> Reported-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
-rw-r--r--net/mac802154/tx.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/mac802154/tx.c b/net/mac802154/tx.c
index fe2e17e6fee3..31e51e4635e4 100644
--- a/net/mac802154/tx.c
+++ b/net/mac802154/tx.c
@@ -20,6 +20,7 @@
20#include <linux/netdevice.h> 20#include <linux/netdevice.h>
21#include <linux/if_arp.h> 21#include <linux/if_arp.h>
22#include <linux/crc-ccitt.h> 22#include <linux/crc-ccitt.h>
23#include <asm/unaligned.h>
23 24
24#include <net/rtnetlink.h> 25#include <net/rtnetlink.h>
25#include <net/ieee802154_netdev.h> 26#include <net/ieee802154_netdev.h>
@@ -84,9 +85,9 @@ ieee802154_tx(struct ieee802154_local *local, struct sk_buff *skb)
84 mac802154_monitors_rx(local, skb); 85 mac802154_monitors_rx(local, skb);
85 86
86 if (!(local->hw.flags & IEEE802154_HW_OMIT_CKSUM)) { 87 if (!(local->hw.flags & IEEE802154_HW_OMIT_CKSUM)) {
87 __le16 crc = cpu_to_le16(crc_ccitt(0, skb->data, skb->len)); 88 u16 crc = crc_ccitt(0, skb->data, skb->len);
88 89
89 memcpy(skb_put(skb, 2), &crc, 2); 90 put_unaligned_le16(crc, skb_put(skb, 2));
90 } 91 }
91 92
92 if (skb_cow_head(skb, local->hw.extra_tx_headroom)) 93 if (skb_cow_head(skb, local->hw.extra_tx_headroom))