Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 369070
b: refs/heads/master
c: 657e276
h: refs/heads/master
v: v3
  • Loading branch information
Jussi Kivilinna authored and John W. Linville committed Mar 25, 2013
1 parent 357a07d commit 8f23f69
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 29bb7013a53d8fc43f79f39d22a15ba8d3e77d9b
refs/heads/master: 657e27656dfb3a99e81c99df6e78e770d7fe0d48
41 changes: 40 additions & 1 deletion trunk/drivers/net/wireless/rtlwifi/usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -569,6 +569,37 @@ static void _rtl_rx_work(unsigned long param)
}
}

static unsigned int _rtl_rx_get_padding(struct ieee80211_hdr *hdr,
unsigned int len)
{
unsigned int padding = 0;

/* make function no-op when possible */
if (NET_IP_ALIGN == 0 || len < sizeof(*hdr))
return 0;

/* alignment calculation as in lbtf_rx() / carl9170_rx_copy_data() */
/* TODO: deduplicate common code, define helper function instead? */

if (ieee80211_is_data_qos(hdr->frame_control)) {
u8 *qc = ieee80211_get_qos_ctl(hdr);

padding ^= NET_IP_ALIGN;

/* Input might be invalid, avoid accessing memory outside
* the buffer.
*/
if ((unsigned long)qc - (unsigned long)hdr < len &&
*qc & IEEE80211_QOS_CTL_A_MSDU_PRESENT)
padding ^= NET_IP_ALIGN;
}

if (ieee80211_has_a4(hdr->frame_control))
padding ^= NET_IP_ALIGN;

return padding;
}

#define __RADIO_TAP_SIZE_RSV 32

static void _rtl_rx_completed(struct urb *_urb)
Expand All @@ -582,9 +613,11 @@ static void _rtl_rx_completed(struct urb *_urb)
goto free;

if (likely(0 == _urb->status)) {
unsigned int padding;
struct sk_buff *skb;
unsigned int qlen;
unsigned int size = _urb->actual_length;
struct ieee80211_hdr *hdr;

if (size < RTL_RX_DESC_SIZE + sizeof(struct ieee80211_hdr)) {
RT_TRACE(rtlpriv, COMP_USB, DBG_EMERG,
Expand All @@ -601,7 +634,10 @@ static void _rtl_rx_completed(struct urb *_urb)
goto resubmit;
}

skb = dev_alloc_skb(size + __RADIO_TAP_SIZE_RSV);
hdr = (void *)(_urb->transfer_buffer + RTL_RX_DESC_SIZE);
padding = _rtl_rx_get_padding(hdr, size - RTL_RX_DESC_SIZE);

skb = dev_alloc_skb(size + __RADIO_TAP_SIZE_RSV + padding);
if (!skb) {
RT_TRACE(rtlpriv, COMP_USB, DBG_EMERG,
"Can't allocate skb for bulk IN!\n");
Expand All @@ -610,6 +646,9 @@ static void _rtl_rx_completed(struct urb *_urb)

_rtl_install_trx_info(rtlusb, skb, rtlusb->in_ep);

/* Make sure the payload data is 4 byte aligned. */
skb_reserve(skb, padding);

/* reserve some space for mac80211's radiotap */
skb_reserve(skb, __RADIO_TAP_SIZE_RSV);

Expand Down

0 comments on commit 8f23f69

Please sign in to comment.