mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-09 02:56:39 +07:00
ath9k: move the rx_stats->rs_datalen check to ath9k_rx_accept()
Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
5ca42627f3
commit
0a45da765e
@ -100,6 +100,9 @@ static bool ath9k_rx_accept(struct ath_common *common,
|
||||
hdr = (struct ieee80211_hdr *) skb->data;
|
||||
fc = hdr->frame_control;
|
||||
|
||||
if (!rx_stats->rs_datalen)
|
||||
return false;
|
||||
|
||||
if (rx_stats->rs_more) {
|
||||
/*
|
||||
* Frame spans multiple descriptors; this cannot happen yet
|
||||
@ -793,9 +796,6 @@ int ath_rx_tasklet(struct ath_softc *sc, int flush)
|
||||
if (flush)
|
||||
goto requeue;
|
||||
|
||||
if (!rx_stats->rs_datalen)
|
||||
goto requeue;
|
||||
|
||||
/* The status portion of the descriptor could get corrupted. */
|
||||
if (sc->rx.bufsize < rx_stats->rs_datalen)
|
||||
goto requeue;
|
||||
|
Loading…
Reference in New Issue
Block a user