Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 300761
b: refs/heads/master
c: 3e1d83f
h: refs/heads/master
i:
  300759: f025491
v: v3
  • Loading branch information
Tony Zelenoff authored and David S. Miller committed Apr 15, 2012
1 parent edfef4a commit d47a2d0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: c5c23260594c5701af66ef754916775ba6a46bbc
refs/heads/master: 3e1d83f711cda05e326d8a4baa6fa34ee18ad7b8
19 changes: 10 additions & 9 deletions trunk/drivers/net/ethernet/atheros/atlx/atl1.c
Original file line number Diff line number Diff line change
Expand Up @@ -2502,18 +2502,19 @@ 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))
if (netif_msg_intr(adapter))
dev_printk(KERN_DEBUG,
&adapter->pdev->dev,
"rx exception, ISR = 0x%x\n",
status);
ISR_HOST_RRD_OV))) {
if (netif_msg_intr(adapter))
dev_printk(KERN_DEBUG,
&adapter->pdev->dev,
"rx exception, ISR = 0x%x\n",
status);
atl1_intr_rx(adapter);
}

Expand Down

0 comments on commit d47a2d0

Please sign in to comment.