Skip to content

Commit

Permalink
be2net: stop checking the UE registers after an EEH error
Browse files Browse the repository at this point in the history
Signed-off-by: Sathya Perla <sathya.perla@emulex.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Sathya Perla authored and David S. Miller committed Nov 12, 2011
1 parent 3012803 commit 72f0248
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions drivers/net/ethernet/emulex/benet/be_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1978,6 +1978,9 @@ void be_detect_dump_ue(struct be_adapter *adapter)
u32 sliport_status = 0, sliport_err1 = 0, sliport_err2 = 0;
u32 i;

if (adapter->eeh_err || adapter->ue_detected)
return;

if (lancer_chip(adapter)) {
sliport_status = ioread32(adapter->db + SLIPORT_STATUS_OFFSET);
if (sliport_status & SLIPORT_STATUS_ERR_MASK) {
Expand Down Expand Up @@ -2039,8 +2042,7 @@ static void be_worker(struct work_struct *work)
struct be_rx_obj *rxo;
int i;

if (!adapter->ue_detected)
be_detect_dump_ue(adapter);
be_detect_dump_ue(adapter);

/* when interrupts are not yet enabled, just reap any pending
* mcc completions */
Expand Down

0 comments on commit 72f0248

Please sign in to comment.