提交 9e9402eb 编写于 作者: M Michael Chan 提交者: David S. Miller

cnic, bnx2i: Fix bug on some bnx2x devices that don't support iSCSI

On some bnx2x devices, iSCSI is determined to be unsupported only after
firmware is downloaded.  We need to check max_iscsi_conn again after
NETDEV_UP and block iSCSI init operations.  Without this fix, iscsiadm
can hang as the firmware will not respond to the iSCSI init message.
Signed-off-by: NEddie Wai <eddie.wai@broadcom.com>
Signed-off-by: NMichael Chan <mchan@broadcom.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 4b42df5d
...@@ -5276,6 +5276,13 @@ static int cnic_register_netdev(struct cnic_dev *dev) ...@@ -5276,6 +5276,13 @@ static int cnic_register_netdev(struct cnic_dev *dev)
if (err) if (err)
netdev_err(dev->netdev, "register_cnic failed\n"); netdev_err(dev->netdev, "register_cnic failed\n");
/* Read iSCSI config again. On some bnx2x device, iSCSI config
* can change after firmware is downloaded.
*/
dev->max_iscsi_conn = ethdev->max_iscsi_conn;
if (ethdev->drv_state & CNIC_DRV_STATE_NO_ISCSI)
dev->max_iscsi_conn = 0;
return err; return err;
} }
......
...@@ -172,16 +172,14 @@ void bnx2i_start(void *handle) ...@@ -172,16 +172,14 @@ void bnx2i_start(void *handle)
struct bnx2i_hba *hba = handle; struct bnx2i_hba *hba = handle;
int i = HZ; int i = HZ;
/* /* On some bnx2x devices, it is possible that iSCSI is no
* We should never register devices that don't support iSCSI * longer supported after firmware is downloaded. In that
* (see bnx2i_init_one), so something is wrong if we try to * case, the iscsi_init_msg will return failure.
* start a iSCSI adapter on hardware with 0 supported iSCSI
* connections
*/ */
BUG_ON(!hba->cnic->max_iscsi_conn);
bnx2i_send_fw_iscsi_init_msg(hba); bnx2i_send_fw_iscsi_init_msg(hba);
while (!test_bit(ADAPTER_STATE_UP, &hba->adapter_state) && i--) while (!test_bit(ADAPTER_STATE_UP, &hba->adapter_state) &&
!test_bit(ADAPTER_STATE_INIT_FAILED, &hba->adapter_state) && i--)
msleep(BNX2I_INIT_POLL_TIME); msleep(BNX2I_INIT_POLL_TIME);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册