Skip to content

Commit

Permalink
GRETH: handle frame error interrupts
Browse files Browse the repository at this point in the history
Frame error interrupts must also be handled since the RX flag only indicates
successful reception, it is unlikely but the old code may lead to dead lock
if 128 error frames are recieved in a row.

Signed-off-by: Daniel Hellstrom <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
daniel-hellstrom authored and davem330 committed Jan 14, 2011
1 parent 2436af8 commit 1ca2343
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 5 additions & 4 deletions drivers/net/greth.c
Original file line number Diff line number Diff line change
Expand Up @@ -586,12 +586,13 @@ static irqreturn_t greth_interrupt(int irq, void *dev_id)
status = GRETH_REGLOAD(greth->regs->status);

/* Handle rx and tx interrupts through poll */
if (status & (GRETH_INT_RX | GRETH_INT_TX)) {
if (status & (GRETH_INT_RE | GRETH_INT_RX |
GRETH_INT_TE | GRETH_INT_TX)) {

/* Clear interrupt status */
GRETH_REGORIN(greth->regs->status,
status & (GRETH_INT_RX | GRETH_INT_TX));

GRETH_REGSAVE(greth->regs->status,
status & (GRETH_INT_RE | GRETH_INT_RX |
GRETH_INT_TE | GRETH_INT_TX));
retval = IRQ_HANDLED;

/* Disable interrupts and schedule poll() */
Expand Down
2 changes: 2 additions & 0 deletions drivers/net/greth.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#define GRETH_BD_LEN 0x7FF

#define GRETH_TXEN 0x1
#define GRETH_INT_TE 0x2
#define GRETH_INT_TX 0x8
#define GRETH_TXI 0x4
#define GRETH_TXBD_STATUS 0x0001C000
Expand All @@ -35,6 +36,7 @@
#define GRETH_TXBD_ERR_UE 0x4000
#define GRETH_TXBD_ERR_AL 0x8000

#define GRETH_INT_RE 0x1
#define GRETH_INT_RX 0x4
#define GRETH_RXEN 0x2
#define GRETH_RXI 0x8
Expand Down

0 comments on commit 1ca2343

Please sign in to comment.