Skip to content

Commit

Permalink
cxgbe(4): Be explicit about ignoring the return value of cmpset in some
Browse files Browse the repository at this point in the history
cases.

Reported by:	Coverity (CIDs 1009398, 1009400, 1009401, 1357325, 1394783).  All false positives.
Sponsored by:	Chelsio Communications
  • Loading branch information
np-2020 committed Aug 21, 2018
1 parent b35b6ea commit 7bd4e19
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion sys/dev/cxgbe/t4_netmap.c
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ cxgbe_netmap_on(struct adapter *sc, struct vi_info *vi, struct ifnet *ifp,
t4_write_reg(sc, sc->sge_kdoorbell_reg,
nm_rxq->fl_db_val | V_PIDX(j));

atomic_cmpset_int(&nm_rxq->nm_state, NM_OFF, NM_ON);
(void) atomic_cmpset_int(&nm_rxq->nm_state, NM_OFF, NM_ON);
}

for_each_nm_txq(vi, i, nm_txq) {
Expand Down
10 changes: 5 additions & 5 deletions sys/dev/cxgbe/t4_sge.c
Original file line number Diff line number Diff line change
Expand Up @@ -1383,7 +1383,7 @@ t4_intr_evt(void *arg)

if (atomic_cmpset_int(&iq->state, IQS_IDLE, IQS_BUSY)) {
service_iq(iq, 0);
atomic_cmpset_int(&iq->state, IQS_BUSY, IQS_IDLE);
(void) atomic_cmpset_int(&iq->state, IQS_BUSY, IQS_IDLE);
}
}

Expand All @@ -1397,7 +1397,7 @@ t4_intr(void *arg)

if (atomic_cmpset_int(&iq->state, IQS_IDLE, IQS_BUSY)) {
service_iq_fl(iq, 0);
atomic_cmpset_int(&iq->state, IQS_BUSY, IQS_IDLE);
(void) atomic_cmpset_int(&iq->state, IQS_BUSY, IQS_IDLE);
}
}

Expand All @@ -1412,7 +1412,7 @@ t4_nm_intr(void *arg)

if (atomic_cmpset_int(&nm_rxq->nm_state, NM_ON, NM_BUSY)) {
service_nm_rxq(nm_rxq);
atomic_cmpset_int(&nm_rxq->nm_state, NM_BUSY, NM_ON);
(void) atomic_cmpset_int(&nm_rxq->nm_state, NM_BUSY, NM_ON);
}
}

Expand Down Expand Up @@ -1498,7 +1498,7 @@ service_iq(struct sge_iq *iq, int budget)
if (atomic_cmpset_int(&q->state, IQS_IDLE,
IQS_BUSY)) {
if (service_iq_fl(q, q->qsize / 16) == 0) {
atomic_cmpset_int(&q->state,
(void) atomic_cmpset_int(&q->state,
IQS_BUSY, IQS_IDLE);
} else {
STAILQ_INSERT_TAIL(&iql, q,
Expand Down Expand Up @@ -1546,7 +1546,7 @@ service_iq(struct sge_iq *iq, int budget)
q = STAILQ_FIRST(&iql);
STAILQ_REMOVE_HEAD(&iql, link);
if (service_iq_fl(q, q->qsize / 8) == 0)
atomic_cmpset_int(&q->state, IQS_BUSY, IQS_IDLE);
(void) atomic_cmpset_int(&q->state, IQS_BUSY, IQS_IDLE);
else
STAILQ_INSERT_TAIL(&iql, q, link);
}
Expand Down

0 comments on commit 7bd4e19

Please sign in to comment.