mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-24 22:35:11 +02:00
orion: fix the alignment related ath9k crash bug (#5815)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19387 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
7af86956a9
commit
d09a189ccf
11
target/linux/orion/patches/300-skb_cb_align.patch
Normal file
11
target/linux/orion/patches/300-skb_cb_align.patch
Normal file
@ -0,0 +1,11 @@
|
||||
--- a/include/linux/skbuff.h
|
||||
+++ b/include/linux/skbuff.h
|
||||
@@ -335,7 +335,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] __attribute__((aligned(8)));
|
||||
#if defined(CONFIG_IMQ) || defined(CONFIG_IMQ_MODULE)
|
||||
void *cb_next;
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user