diff options
author | Stanislaw Gruszka <sgruszka@redhat.com> | 2009-05-05 23:22:12 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-05-08 21:52:04 (GMT) |
commit | 17cb4006bc40eea949f62adbbad99d8b980c0678 (patch) | |
tree | 64dcda2ef2515d594491bbfd090944a3bfab0e71 | |
parent | dd21ca6de703230785b755c8290365fc1640200e (diff) | |
download | linux-17cb4006bc40eea949f62adbbad99d8b980c0678.tar.xz |
bnx2x: do not return negative number of received packages
Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
Acked-by: Eilon Greenstein <eilong@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/bnx2x_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/bnx2x_main.c b/drivers/net/bnx2x_main.c index 519e207..e01539c 100644 --- a/drivers/net/bnx2x_main.c +++ b/drivers/net/bnx2x_main.c @@ -1546,7 +1546,7 @@ static int bnx2x_rx_int(struct bnx2x_fastpath *fp, int budget) len, cqe, comp_ring_cons); #ifdef BNX2X_STOP_ON_ERROR if (bp->panic) - return -EINVAL; + return 0; #endif bnx2x_update_sge_prod(fp, |