]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
cxgb4 : Disable recursive mailbox commands when enabling vi
authorAnish Bhatt <anish@chelsio.com>
Tue, 5 Aug 2014 23:05:23 +0000 (16:05 -0700)
committerDavid S. Miller <davem@davemloft.net>
Tue, 5 Aug 2014 23:48:59 +0000 (16:48 -0700)
Enabling a Virtual Interface can result in an interrupt during the processing
 of the VI Enable command and, in some paths, result in an attempt to issue
another command in the interrupt context, eventually crashing the system. Thus,
 we disable interrupts during the course of the VI Enable command and ensure
enable doesn't sleep.

Signed-off-by: Anish Bhatt <anish@chelsio.com>
Signed-off-by: Casey Leedom <leedom@chelsio.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c
drivers/net/ethernet/chelsio/cxgb4/t4_hw.c

index 8b46534b06c1350f1273092efa4e163a38df29de..4247356c16ffda89db7868797f8c09c2b4ff6073 100644 (file)
@@ -673,9 +673,12 @@ static int link_start(struct net_device *dev)
        if (ret == 0)
                ret = t4_link_start(pi->adapter, mb, pi->tx_chan,
                                    &pi->link_cfg);
-       if (ret == 0)
+       if (ret == 0) {
+               local_bh_disable();
                ret = t4_enable_vi_params(pi->adapter, mb, pi->viid, true,
                                          true, CXGB4_DCB_ENABLED);
+               local_bh_enable();
+       }
 
        return ret;
 }
index 448bec119c3ca147c611e52c34a884384358081e..a853133d8db826029ac042006e89c6d99348f2d7 100644 (file)
@@ -3558,7 +3558,7 @@ int t4_enable_vi_params(struct adapter *adap, unsigned int mbox,
        c.ien_to_len16 = htonl(FW_VI_ENABLE_CMD_IEN(rx_en) |
                               FW_VI_ENABLE_CMD_EEN(tx_en) | FW_LEN16(c) |
                               FW_VI_ENABLE_CMD_DCB_INFO(dcb_en));
-       return t4_wr_mbox(adap, mbox, &c, sizeof(c), NULL);
+       return t4_wr_mbox_ns(adap, mbox, &c, sizeof(c), NULL);
 }
 
 /**