Driver contains far too many ASSERTs.

Signed-off-by: Roland Vossen <[email protected]>
Reviewed-by: Arend van Spriel <[email protected]>
---
 drivers/staging/brcm80211/brcmsmac/wlc_ampdu.c |   57 +-----------------------
 1 files changed, 1 insertions(+), 56 deletions(-)

diff --git a/drivers/staging/brcm80211/brcmsmac/wlc_ampdu.c 
b/drivers/staging/brcm80211/brcmsmac/wlc_ampdu.c
index 8a89723..af6db24 100644
--- a/drivers/staging/brcm80211/brcmsmac/wlc_ampdu.c
+++ b/drivers/staging/brcm80211/brcmsmac/wlc_ampdu.c
@@ -164,9 +164,6 @@ struct ampdu_info *wlc_ampdu_attach(struct wlc_info *wlc)
        struct ampdu_info *ampdu;
        int i;
 
-       ASSERT(wlc->pub->tunables->ampdunummpdu <= AMPDU_MAX_MPDU);
-       ASSERT(wlc->pub->tunables->ampdunummpdu > 0);
-
        ampdu = kzalloc(sizeof(struct ampdu_info), GFP_ATOMIC);
        if (!ampdu) {
                dev_err(wlc->dev, "wl%d: wlc_ampdu_attach: out of mem\n",
@@ -239,8 +236,6 @@ void scb_ampdu_cleanup(struct ampdu_info *ampdu, struct scb 
*scb)
        u8 tid;
 
        WL_AMPDU_UPDN("scb_ampdu_cleanup: enter\n");
-       ASSERT(scb_ampdu);
-
        for (tid = 0; tid < AMPDU_MAX_SCB_TID; tid++) {
                ampdu_cleanup_tid_ini(ampdu, scb_ampdu, tid, false);
        }
@@ -280,8 +275,6 @@ static void scb_ampdu_update_config(struct ampdu_info 
*ampdu, struct scb *scb)
        scb_ampdu->release = min(scb_ampdu->release,
                                 ampdu->fifo_tb[TX_AC_BE_FIFO].
                                 mcs2ampdu_table[FFPLD_MAX_MCS]);
-
-       ASSERT(scb_ampdu->release);
 }
 
 void scb_ampdu_update_config_all(struct ampdu_info *ampdu)
@@ -523,10 +516,7 @@ wlc_sendampdu(struct ampdu_info *ampdu, struct 
wlc_txq_info *qi,
        dev = wlc->dev;
        p = *pdu;
 
-       ASSERT(p);
-
        tid = (u8) (p->priority);
-       ASSERT(tid < AMPDU_MAX_SCB_TID);
 
        f = ampdu->fifo_tb + prio2fifo[tid];
 
@@ -534,7 +524,6 @@ wlc_sendampdu(struct ampdu_info *ampdu, struct wlc_txq_info 
*qi,
        ASSERT(scb->magic == SCB_MAGIC);
 
        scb_ampdu = SCB_AMPDU_CUBBY(ampdu, scb);
-       ASSERT(scb_ampdu);
        ini = &scb_ampdu->ini[tid];
 
        /* Let pressure continue to build ... */
@@ -587,7 +576,6 @@ wlc_sendampdu(struct ampdu_info *ampdu, struct wlc_txq_info 
*qi,
                }
 
                /* pkt is good to be aggregated */
-               ASSERT(tx_info->flags & IEEE80211_TX_CTL_AMPDU);
                txh = (d11txh_t *) p->data;
                plcp = (u8 *) (txh + 1);
                h = (struct ieee80211_hdr *)(plcp + D11_PHY_HDR_LEN);
@@ -598,7 +586,6 @@ wlc_sendampdu(struct ampdu_info *ampdu, struct wlc_txq_info 
*qi,
                mcl = le16_to_cpu(txh->MacTxControlLow);
                mcl &= ~TXC_AMPDU_MASK;
                fbr_iscck = !(le16_to_cpu(txh->XtraFrameTypes) & 0x3);
-               ASSERT(!fbr_iscck);
                txh->PreloadSize = 0;   /* always default to 0 */
 
                /*  Handle retry limits */
@@ -606,7 +593,6 @@ wlc_sendampdu(struct ampdu_info *ampdu, struct wlc_txq_info 
*qi,
                        txrate[0].count++;
                        rr = true;
                        fbr = false;
-                       ASSERT(!fbr);
                } else {
                        fbr = true;
                        rr = false;
@@ -678,7 +664,6 @@ wlc_sendampdu(struct ampdu_info *ampdu, struct wlc_txq_info 
*qi,
                        is40 = (plcp0 & MIMO_PLCP_40MHZ) ? 1 : 0;
                        sgi = PLCP3_ISSGI(plcp3) ? 1 : 0;
                        mcs = plcp0 & ~MIMO_PLCP_40MHZ;
-                       ASSERT(mcs < MCS_TABLE_SIZE);
                        maxlen =
                            min(scb_ampdu->max_rxlen,
                                ampdu->max_txlen[mcs][is40][sgi]);
@@ -757,7 +742,6 @@ wlc_sendampdu(struct ampdu_info *ampdu, struct wlc_txq_info 
*qi,
                                        p = NULL;
                                        dev_err(dev, "%s: Bogus plen #1\n",
                                                __func__);
-                                       ASSERT(3 == 4);
                                        continue;
                                }
 
@@ -769,7 +753,6 @@ wlc_sendampdu(struct ampdu_info *ampdu, struct wlc_txq_info 
*qi,
                                        continue;
                                }
                                p = pktq_pdeq(&qi->q, prec);
-                               ASSERT(p);
                        } else {
                                p = NULL;
                        }
@@ -900,8 +883,6 @@ wlc_ampdu_dotxstatus(struct ampdu_info *ampdu, struct scb 
*scb,
        struct ieee80211_tx_info *tx_info;
 
        tx_info = IEEE80211_SKB_CB(p);
-       ASSERT(tx_info->flags & IEEE80211_TX_CTL_AMPDU);
-       ASSERT(txs->status & TX_STATUS_AMPDU);
 
        /* BMAC_NOTE: For the split driver, second level txstatus comes later
         * So if the ACK was received then wait for the second level else just
@@ -915,20 +896,15 @@ wlc_ampdu_dotxstatus(struct ampdu_info *ampdu, struct scb 
*scb,
                        udelay(1);
                        status_delay++;
                        if (status_delay > 10) {
-                               ASSERT(status_delay <= 10);
-                               return;
+                               return; /* error condition */
                        }
                }
 
-               ASSERT(!(s1 & TX_STATUS_INTERMEDIATE));
-               ASSERT(s1 & TX_STATUS_AMPDU);
                s2 = R_REG(&wlc->regs->frmtxstatus2);
        }
 
        if (likely(scb)) {
-               ASSERT(scb->magic == SCB_MAGIC);
                scb_ampdu = SCB_AMPDU_CUBBY(ampdu, scb);
-               ASSERT(scb_ampdu);
                ini = SCB_AMPDU_INI(scb_ampdu, p->priority);
                ASSERT(ini->scb == scb);
                wlc_ampdu_dotxstatus_complete(ampdu, scb, p, txs, s1, s2);
@@ -941,14 +917,12 @@ wlc_ampdu_dotxstatus(struct ampdu_info *ampdu, struct scb 
*scb,
                        tx_info = IEEE80211_SKB_CB(p);
                        txh = (d11txh_t *) p->data;
                        mcl = le16_to_cpu(txh->MacTxControlLow);
-                       ASSERT(tx_info->flags & IEEE80211_TX_CTL_AMPDU);
                        pkt_buf_free_skb(p);
                        /* break out if last packet of ampdu */
                        if (((mcl & TXC_AMPDU_MASK) >> TXC_AMPDU_SHIFT) ==
                            TXC_AMPDU_LAST)
                                break;
                        p = GETNEXTTXP(wlc, queue);
-                       ASSERT(p != NULL);
                }
                wlc_txfifo_complete(wlc, queue, ampdu->txpkt_weight);
        }
@@ -1000,24 +974,14 @@ wlc_ampdu_dotxstatus_complete(struct ampdu_info *ampdu, 
struct scb *scb,
        memset(hole, 0, sizeof(hole));
 #endif
 
-       ASSERT(tx_info->flags & IEEE80211_TX_CTL_AMPDU);
-       ASSERT(txs->status & TX_STATUS_AMPDU);
-
        scb_ampdu = SCB_AMPDU_CUBBY(ampdu, scb);
-       ASSERT(scb_ampdu);
-
        tid = (u8) (p->priority);
 
        ini = SCB_AMPDU_INI(scb_ampdu, tid);
        retry_limit = ampdu->retry_limit_tid[tid];
        rr_retry_limit = ampdu->rr_retry_limit_tid[tid];
-
-       ASSERT(ini->scb == scb);
-
        memset(bitmap, 0, sizeof(bitmap));
        queue = txs->frameid & TXFID_QUEUE_MASK;
-       ASSERT(queue < AC_COUNT);
-
        supr_status = txs->status & TX_STATUS_SUPR_MASK;
 
        if (txs->status & TX_STATUS_ACK_RCV) {
@@ -1099,7 +1063,6 @@ wlc_ampdu_dotxstatus_complete(struct ampdu_info *ampdu, 
struct scb *scb,
        /* loop through all pkts and retry if not acked */
        while (p) {
                tx_info = IEEE80211_SKB_CB(p);
-               ASSERT(tx_info->flags & IEEE80211_TX_CTL_AMPDU);
                txh = (d11txh_t *) p->data;
                mcl = le16_to_cpu(txh->MacTxControlLow);
                plcp = (u8 *) (txh + 1);
@@ -1179,10 +1142,6 @@ wlc_ampdu_dotxstatus_complete(struct ampdu_info *ampdu, 
struct scb *scb,
                        break;
 
                p = GETNEXTTXP(wlc, queue);
-               if (p == NULL) {
-                       ASSERT(p);
-                       break;
-               }
        }
        wlc_send_q(wlc, wlc->active_queue);
 
@@ -1208,7 +1167,6 @@ ampdu_cleanup_tid_ini(struct ampdu_info *ampdu, 
scb_ampdu_t *scb_ampdu, u8 tid,
                return;
 
        scb_ampdu = SCB_AMPDU_CUBBY(ampdu, ini->scb);
-       ASSERT(ini == &scb_ampdu->ini[ini->tid]);
 
        /* free all buffered tx packets */
        pktq_pflush(&scb_ampdu->txq, ini->tid, true, NULL, 0);
@@ -1221,11 +1179,6 @@ static scb_ampdu_tid_ini_t 
*wlc_ampdu_init_tid_ini(struct ampdu_info *ampdu,
 {
        scb_ampdu_tid_ini_t *ini;
 
-       ASSERT(scb_ampdu);
-       ASSERT(scb_ampdu->scb);
-       ASSERT(SCB_AMPDU(scb_ampdu->scb));
-       ASSERT(tid < AMPDU_MAX_SCB_TID);
-
        /* check for per-tid control of ampdu */
        if (!ampdu->ini_enable[tid]) {
                dev_err(ampdu->wlc->dev, "%s: Rejecting tid %d\n", __func__,
@@ -1302,12 +1255,7 @@ wlc_ampdu_null_delim_cnt(struct ampdu_info *ampdu, 
struct scb *scb,
        int bytes, cnt, tmp;
        u8 tx_density;
 
-       ASSERT(scb);
-       ASSERT(SCB_AMPDU(scb));
-
        scb_ampdu = SCB_AMPDU_CUBBY(ampdu, scb);
-       ASSERT(scb_ampdu);
-
        if (scb_ampdu->mpdu_density == 0)
                return 0;
 
@@ -1318,14 +1266,11 @@ wlc_ampdu_null_delim_cnt(struct ampdu_info *ampdu, 
struct scb *scb,
         */
 
        tx_density = scb_ampdu->mpdu_density;
-
-       ASSERT(tx_density <= AMPDU_MAX_MPDU_DENSITY);
        tmp = 1 << (17 - tx_density);
        bytes = CEIL(RSPEC2RATE(rspec), tmp);
 
        if (bytes > phylen) {
                cnt = CEIL(bytes - phylen, AMPDU_DELIMITER_LEN);
-               ASSERT(cnt <= 255);
                return (u8) cnt;
        } else
                return 0;
-- 
1.7.1


_______________________________________________
devel mailing list
[email protected]
http://driverdev.linuxdriverproject.org/mailman/listinfo/devel

Reply via email to