diff options
author | Michael Chan <mchan@broadcom.com> | 2010-02-15 14:42:08 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-02-16 18:19:02 -0500 |
commit | e9f26c49ce790de0064474f97d6402ce1fefac2a (patch) | |
tree | 5f8fdcbf3b9b08b3b0f3c3aa77402a889aaed5bf /drivers/net/bnx2.c | |
parent | efde73a35c2fc88db26a1583b19e0ab0fdfcd4f8 (diff) |
bnx2: Need to call cnic_setup_cnic_irq_info() after MTU change.
New status blocks are allocated during MTU change so we need to
update this information for the cnic driver.
Signed-off-by: Michael Chan <mchan@broadcom.com>
Signed-off-by: Benjamin Li <benli@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bnx2.c')
-rw-r--r-- | drivers/net/bnx2.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/net/bnx2.c b/drivers/net/bnx2.c index 48bc57803856..063f28394e3d 100644 --- a/drivers/net/bnx2.c +++ b/drivers/net/bnx2.c | |||
@@ -7141,6 +7141,13 @@ bnx2_change_ring_size(struct bnx2 *bp, u32 rx, u32 tx) | |||
7141 | dev_close(bp->dev); | 7141 | dev_close(bp->dev); |
7142 | return rc; | 7142 | return rc; |
7143 | } | 7143 | } |
7144 | #ifdef BCM_CNIC | ||
7145 | mutex_lock(&bp->cnic_lock); | ||
7146 | /* Let cnic know about the new status block. */ | ||
7147 | if (bp->cnic_eth_dev.drv_state & CNIC_DRV_STATE_REGD) | ||
7148 | bnx2_setup_cnic_irq_info(bp); | ||
7149 | mutex_unlock(&bp->cnic_lock); | ||
7150 | #endif | ||
7144 | bnx2_netif_start(bp); | 7151 | bnx2_netif_start(bp); |
7145 | } | 7152 | } |
7146 | return 0; | 7153 | return 0; |