Commit f31ce76b authored by Vladimir Davydov's avatar Vladimir Davydov Committed by David S. Miller

[LIBERTAS]: fix oops on the blackfin architecture

Reserve two bytes to align pointer to the IP header.
Signed-off-by: default avatarVladimir Davydov <vladimir.davydov@promwad.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 28de0b36
...@@ -402,10 +402,12 @@ static struct sk_buff *if_cs_receive_data(wlan_private *priv) ...@@ -402,10 +402,12 @@ static struct sk_buff *if_cs_receive_data(wlan_private *priv)
} }
//TODO: skb = dev_alloc_skb(len+ETH_FRAME_LEN+MRVDRV_SNAP_HEADER_LEN+EXTRA_LEN); //TODO: skb = dev_alloc_skb(len+ETH_FRAME_LEN+MRVDRV_SNAP_HEADER_LEN+EXTRA_LEN);
skb = dev_alloc_skb(MRVDRV_ETH_RX_PACKET_BUFFER_SIZE); skb = dev_alloc_skb(MRVDRV_ETH_RX_PACKET_BUFFER_SIZE + 2);
if (!skb) if (!skb)
goto out; goto out;
data = skb_put(skb, len); skb_put(skb, len);
skb_reserve(skb, 2);/* 16 byte align */
data = skb->data;
/* read even number of bytes, then odd byte if necessary */ /* read even number of bytes, then odd byte if necessary */
if_cs_read16_rep(priv->card, IF_CS_H_READ, data, len/sizeof(u16)); if_cs_read16_rep(priv->card, IF_CS_H_READ, data, len/sizeof(u16));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment