Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 195236
b: refs/heads/master
c: 9637e51
h: refs/heads/master
v: v3
  • Loading branch information
Luis R. Rodriguez authored and John W. Linville committed May 11, 2010
1 parent 0f84aad commit 9609fcd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 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: b1b3751c750277c92684c932b46eeb723babe196
refs/heads/master: 9637e516d16a58b13f6098cfe899e22963132be3
12 changes: 6 additions & 6 deletions trunk/drivers/net/wireless/ath/ath5k/base.c
Original file line number Diff line number Diff line change
Expand Up @@ -1931,12 +1931,6 @@ ath5k_tasklet_rx(unsigned long data)

sc->stats.rx_all_count++;

if (unlikely(rs.rs_more)) {
ATH5K_WARN(sc, "unsupported jumbo\n");
sc->stats.rxerr_jumbo++;
goto next;
}

if (unlikely(rs.rs_status)) {
if (rs.rs_status & AR5K_RXERR_CRC)
sc->stats.rxerr_crc++;
Expand Down Expand Up @@ -1976,6 +1970,12 @@ ath5k_tasklet_rx(unsigned long data)
sc->opmode != NL80211_IFTYPE_MONITOR)
goto next;
}

if (unlikely(rs.rs_more)) {
sc->stats.rxerr_jumbo++;
goto next;

}
accept:
next_skb = ath5k_rx_skb_alloc(sc, &next_skb_addr);

Expand Down

0 comments on commit 9609fcd

Please sign in to comment.