Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 171708
b: refs/heads/master
c: 1e875e9
h: refs/heads/master
v: v3
  • Loading branch information
Luis R. Rodriguez authored and John W. Linville committed Nov 11, 2009
1 parent f6dc438 commit e991bec
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 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: 2c74aa4d73dbed2e879e7eb5ee9de95d40e5298d
refs/heads/master: 1e875e9f16e3138d0e23cbf806a6d9520b622db2
20 changes: 10 additions & 10 deletions trunk/drivers/net/wireless/ath/ath9k/recv.c
Original file line number Diff line number Diff line change
Expand Up @@ -288,16 +288,17 @@ static void ath9k_process_rssi(struct ath_common *common,
* up the frame up to let mac80211 handle the actual error case, be it no
* decryption key or real decryption error. This let us keep statistics there.
*/
static int ath_rx_prepare(struct ath_common *common,
struct ieee80211_hw *hw,
struct sk_buff *skb, struct ath_rx_status *rx_stats,
struct ieee80211_rx_status *rx_status,
bool *decrypt_error)
static int ath9k_rx_skb_preprocess(struct ath_common *common,
struct ieee80211_hw *hw,
struct sk_buff *skb,
struct ath_rx_status *rx_stats,
struct ieee80211_rx_status *rx_status,
bool *decrypt_error)
{
struct ath_hw *ah = common->ah;

if (!ath9k_rx_accept(common, skb, rx_status, rx_stats, decrypt_error))
goto rx_next;
return -EINVAL;

ath9k_process_rssi(common, hw, skb, rx_stats);

Expand All @@ -312,8 +313,6 @@ static int ath_rx_prepare(struct ath_common *common,
rx_status->qual = ath9k_compute_qual(hw, rx_stats);
rx_status->flag |= RX_FLAG_TSFT;

return 1;
rx_next:
return 0;
}

Expand Down Expand Up @@ -808,8 +807,9 @@ int ath_rx_tasklet(struct ath_softc *sc, int flush)
if (flush)
goto requeue;

if (!ath_rx_prepare(common, hw, skb, rx_stats,
rxs, &decrypt_error))
retval = ath9k_rx_skb_preprocess(common, hw, skb, rx_stats,
rxs, &decrypt_error);
if (retval)
goto requeue;

/* Ensure we always have an skb to requeue once we are done
Expand Down

0 comments on commit e991bec

Please sign in to comment.