mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-19 02:04:19 +08:00
ath9k: move RX skb post processing to a helper
Use a helper for the RX skb post processing, ath9k_rx_skb_postprocess(). Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
dc1e001bf4
commit
c9b1417055
@ -316,6 +316,55 @@ static int ath9k_rx_skb_preprocess(struct ath_common *common,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void ath9k_rx_skb_postprocess(struct ath_common *common,
|
||||||
|
struct sk_buff *skb,
|
||||||
|
struct ath_rx_status *rx_stats,
|
||||||
|
struct ieee80211_rx_status *rxs,
|
||||||
|
bool decrypt_error)
|
||||||
|
{
|
||||||
|
struct ath_hw *ah = common->ah;
|
||||||
|
struct ieee80211_hdr *hdr;
|
||||||
|
int hdrlen, padsize;
|
||||||
|
u8 keyix;
|
||||||
|
__le16 fc;
|
||||||
|
|
||||||
|
/* see if any padding is done by the hw and remove it */
|
||||||
|
hdr = (struct ieee80211_hdr *) skb->data;
|
||||||
|
hdrlen = ieee80211_get_hdrlen_from_skb(skb);
|
||||||
|
fc = hdr->frame_control;
|
||||||
|
|
||||||
|
/* The MAC header is padded to have 32-bit boundary if the
|
||||||
|
* packet payload is non-zero. The general calculation for
|
||||||
|
* padsize would take into account odd header lengths:
|
||||||
|
* padsize = (4 - hdrlen % 4) % 4; However, since only
|
||||||
|
* even-length headers are used, padding can only be 0 or 2
|
||||||
|
* bytes and we can optimize this a bit. In addition, we must
|
||||||
|
* not try to remove padding from short control frames that do
|
||||||
|
* not have payload. */
|
||||||
|
padsize = hdrlen & 3;
|
||||||
|
if (padsize && hdrlen >= 24) {
|
||||||
|
memmove(skb->data + padsize, skb->data, hdrlen);
|
||||||
|
skb_pull(skb, padsize);
|
||||||
|
}
|
||||||
|
|
||||||
|
keyix = rx_stats->rs_keyix;
|
||||||
|
|
||||||
|
if (!(keyix == ATH9K_RXKEYIX_INVALID) && !decrypt_error) {
|
||||||
|
rxs->flag |= RX_FLAG_DECRYPTED;
|
||||||
|
} else if (ieee80211_has_protected(fc)
|
||||||
|
&& !decrypt_error && skb->len >= hdrlen + 4) {
|
||||||
|
keyix = skb->data[hdrlen + 3] >> 6;
|
||||||
|
|
||||||
|
if (test_bit(keyix, common->keymap))
|
||||||
|
rxs->flag |= RX_FLAG_DECRYPTED;
|
||||||
|
}
|
||||||
|
if (ah->sw_mgmt_crypto &&
|
||||||
|
(rxs->flag & RX_FLAG_DECRYPTED) &&
|
||||||
|
ieee80211_is_mgmt(fc))
|
||||||
|
/* Use software decrypt for management frames. */
|
||||||
|
rxs->flag &= ~RX_FLAG_DECRYPTED;
|
||||||
|
}
|
||||||
|
|
||||||
static void ath_opmode_init(struct ath_softc *sc)
|
static void ath_opmode_init(struct ath_softc *sc)
|
||||||
{
|
{
|
||||||
struct ath_hw *ah = sc->sc_ah;
|
struct ath_hw *ah = sc->sc_ah;
|
||||||
@ -716,10 +765,8 @@ int ath_rx_tasklet(struct ath_softc *sc, int flush)
|
|||||||
*/
|
*/
|
||||||
struct ieee80211_hw *hw = NULL;
|
struct ieee80211_hw *hw = NULL;
|
||||||
struct ieee80211_hdr *hdr;
|
struct ieee80211_hdr *hdr;
|
||||||
int hdrlen, padsize, retval;
|
int retval;
|
||||||
bool decrypt_error = false;
|
bool decrypt_error = false;
|
||||||
u8 keyix;
|
|
||||||
__le16 fc;
|
|
||||||
|
|
||||||
spin_lock_bh(&sc->rx.rxbuflock);
|
spin_lock_bh(&sc->rx.rxbuflock);
|
||||||
|
|
||||||
@ -830,40 +877,8 @@ int ath_rx_tasklet(struct ath_softc *sc, int flush)
|
|||||||
|
|
||||||
skb_put(skb, rx_stats->rs_datalen);
|
skb_put(skb, rx_stats->rs_datalen);
|
||||||
|
|
||||||
/* see if any padding is done by the hw and remove it */
|
ath9k_rx_skb_postprocess(common, skb, rx_stats,
|
||||||
hdrlen = ieee80211_get_hdrlen_from_skb(skb);
|
rxs, decrypt_error);
|
||||||
fc = hdr->frame_control;
|
|
||||||
|
|
||||||
/* The MAC header is padded to have 32-bit boundary if the
|
|
||||||
* packet payload is non-zero. The general calculation for
|
|
||||||
* padsize would take into account odd header lengths:
|
|
||||||
* padsize = (4 - hdrlen % 4) % 4; However, since only
|
|
||||||
* even-length headers are used, padding can only be 0 or 2
|
|
||||||
* bytes and we can optimize this a bit. In addition, we must
|
|
||||||
* not try to remove padding from short control frames that do
|
|
||||||
* not have payload. */
|
|
||||||
padsize = hdrlen & 3;
|
|
||||||
if (padsize && hdrlen >= 24) {
|
|
||||||
memmove(skb->data + padsize, skb->data, hdrlen);
|
|
||||||
skb_pull(skb, padsize);
|
|
||||||
}
|
|
||||||
|
|
||||||
keyix = rx_stats->rs_keyix;
|
|
||||||
|
|
||||||
if (!(keyix == ATH9K_RXKEYIX_INVALID) && !decrypt_error) {
|
|
||||||
rxs->flag |= RX_FLAG_DECRYPTED;
|
|
||||||
} else if (ieee80211_has_protected(fc)
|
|
||||||
&& !decrypt_error && skb->len >= hdrlen + 4) {
|
|
||||||
keyix = skb->data[hdrlen + 3] >> 6;
|
|
||||||
|
|
||||||
if (test_bit(keyix, common->keymap))
|
|
||||||
rxs->flag |= RX_FLAG_DECRYPTED;
|
|
||||||
}
|
|
||||||
if (ah->sw_mgmt_crypto &&
|
|
||||||
(rxs->flag & RX_FLAG_DECRYPTED) &&
|
|
||||||
ieee80211_is_mgmt(fc))
|
|
||||||
/* Use software decrypt for management frames. */
|
|
||||||
rxs->flag &= ~RX_FLAG_DECRYPTED;
|
|
||||||
|
|
||||||
/* We will now give hardware our shiny new allocated skb */
|
/* We will now give hardware our shiny new allocated skb */
|
||||||
bf->bf_mpdu = requeue_skb;
|
bf->bf_mpdu = requeue_skb;
|
||||||
|
Loading…
Reference in New Issue
Block a user