Commit 87443e87 authored by Helmut Schaa's avatar Helmut Schaa Committed by John W. Linville

rt2x00: Make use of unlikely during tx status processing

These conditions are unlikely to happen, tell the compiler.
Signed-off-by: default avatarHelmut Schaa <helmut.schaa@googlemail.com>
Signed-off-by: default avatarIvo van Doorn <IvDoorn@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 11f818e0
...@@ -726,7 +726,7 @@ static void rt2800pci_txdone(struct rt2x00_dev *rt2x00dev) ...@@ -726,7 +726,7 @@ static void rt2800pci_txdone(struct rt2x00_dev *rt2x00dev)
while (kfifo_get(&rt2x00dev->txstatus_fifo, &status)) { while (kfifo_get(&rt2x00dev->txstatus_fifo, &status)) {
qid = rt2x00_get_field32(status, TX_STA_FIFO_PID_QUEUE); qid = rt2x00_get_field32(status, TX_STA_FIFO_PID_QUEUE);
if (qid >= QID_RX) { if (unlikely(qid >= QID_RX)) {
/* /*
* Unknown queue, this shouldn't happen. Just drop * Unknown queue, this shouldn't happen. Just drop
* this tx status. * this tx status.
...@@ -747,7 +747,7 @@ static void rt2800pci_txdone(struct rt2x00_dev *rt2x00dev) ...@@ -747,7 +747,7 @@ static void rt2800pci_txdone(struct rt2x00_dev *rt2x00dev)
break; break;
} }
if (rt2x00queue_empty(queue)) { if (unlikely(rt2x00queue_empty(queue))) {
/* /*
* The queue is empty. Stop processing here * The queue is empty. Stop processing here
* and drop the tx status. * and drop the tx status.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment