Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3e1d83f7 authored by Tony Zelenoff's avatar Tony Zelenoff Committed by David S. Miller
Browse files

atl1: handle rx in separate condition



Remove rx from unlikely optimization in case of rx is very
likely thing for network card. This also reduce code a bit.

Signed-off-by: default avatarTony Zelenoff <antonz@parallels.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c5c23260
Loading
Loading
Loading
Loading
+10 −9
Original line number Diff line number Diff line
@@ -2502,13 +2502,14 @@ static irqreturn_t atl1_intr(int irq, void *data)
		if (status & ISR_CMB_TX)
			atl1_intr_tx(adapter);

		/* rx event */
		if (status & ISR_CMB_RX)
			alt1_intr_rx(adapter);

		/* rx exception */
		if (unlikely(status & (ISR_RXF_OV | ISR_RFD_UNRUN |
			ISR_RRD_OV | ISR_HOST_RFD_UNRUN |
			ISR_HOST_RRD_OV | ISR_CMB_RX))) {
			if (status & (ISR_RXF_OV | ISR_RFD_UNRUN |
				ISR_RRD_OV | ISR_HOST_RFD_UNRUN |
				ISR_HOST_RRD_OV))
			ISR_HOST_RRD_OV))) {
			if (netif_msg_intr(adapter))
				dev_printk(KERN_DEBUG,
					&adapter->pdev->dev,