netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] skbuff: align sk_buff::cb to 64 bit
@ 2010-01-30  0:38 Felix Fietkau
  2010-01-30  7:07 ` Eric Dumazet
  0 siblings, 1 reply; 7+ messages in thread
From: Felix Fietkau @ 2010-01-30  0:38 UTC (permalink / raw)
  To: netdev; +Cc: Lennert Buytenhek, David Daney

The alignment requirement for 64-bit load/store instructions on ARM is
implementation defined. Some CPUs (such as Marvell Feroceon) do not
generate an exception, if such an instruction is executed with an
address that is not 64 bit aligned. In such a case, the Feroceon
corrupts adjacent memory, which showed up
in my tests as a crash in the rx path of ath9k that only occured with
CONFIG_XFRM set. This crash happened, because the first field of the
mac80211 rx status info in the cb is an u64, and changing it corrupted
the skb->sp field.

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Cc: stable@kernel.org
---
--- a/include/linux/skbuff.h
+++ b/include/linux/skbuff.h
@@ -329,7 +329,7 @@ struct sk_buff {
 	 * want to keep them across layers you have to do a skb_clone()
 	 * first. This is owned by whoever has the skb queued ATM.
 	 */
-	char			cb[48];
+	char			cb[48] __aligned(8);
  	unsigned int		len,
 				data_len;


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2010-02-27 11:17 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-30  0:38 [PATCH v2] skbuff: align sk_buff::cb to 64 bit Felix Fietkau
2010-01-30  7:07 ` Eric Dumazet
2010-02-01 18:26   ` David Daney
2010-02-01 18:37     ` Felix Fietkau
2010-02-12 20:13       ` David Miller
2010-02-23 21:45         ` [PATCH v3] skbuff: align sk_buff::cb to 64 bit and close some potential holes Felix Fietkau
2010-02-27 11:17           ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).