diff options
-rw-r--r-- | drivers/net/bnx2x/bnx2x_main.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/bnx2x/bnx2x_main.c b/drivers/net/bnx2x/bnx2x_main.c index f45c0caf3240..fb23d575d633 100644 --- a/drivers/net/bnx2x/bnx2x_main.c +++ b/drivers/net/bnx2x/bnx2x_main.c | |||
@@ -3666,7 +3666,8 @@ static int bnx2x_cnic_handle_cfc_del(struct bnx2x *bp, u32 cid, | |||
3666 | union event_ring_elem *elem) | 3666 | union event_ring_elem *elem) |
3667 | { | 3667 | { |
3668 | if (!bp->cnic_eth_dev.starting_cid || | 3668 | if (!bp->cnic_eth_dev.starting_cid || |
3669 | cid < bp->cnic_eth_dev.starting_cid) | 3669 | (cid < bp->cnic_eth_dev.starting_cid && |
3670 | cid != bp->cnic_eth_dev.iscsi_l2_cid)) | ||
3670 | return 1; | 3671 | return 1; |
3671 | 3672 | ||
3672 | DP(BNX2X_MSG_SP, "got delete ramrod for CNIC CID %d\n", cid); | 3673 | DP(BNX2X_MSG_SP, "got delete ramrod for CNIC CID %d\n", cid); |