diff options
author | Bhanu Prakash Gollapudi <bprakash@broadcom.com> | 2011-10-03 16:45:00 -0700 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2011-10-16 10:35:45 -0500 |
commit | fd8fa9071e49a56cc91f739813ea88f16b7c1240 (patch) | |
tree | 5d046a9b3a471ad4774420eb189815c40fb85818 | |
parent | ac013ed1cb7b1b36113548ce83881a1b5f757b58 (diff) | |
download | linux-3.10-fd8fa9071e49a56cc91f739813ea88f16b7c1240.tar.gz linux-3.10-fd8fa9071e49a56cc91f739813ea88f16b7c1240.tar.bz2 linux-3.10-fd8fa9071e49a56cc91f739813ea88f16b7c1240.zip |
[SCSI] bnx2fc: call ctlr_link_up only when the interface is enabled
Link may not be up when the driver receives ulp_start event, and hence
fcoe_ctlr_link_up is not called. Call fcoe_ctlr_link_up during
indicate_netevent only when the interface is enabled. (It has to be called when
enabled because that is an indication that the vlan discovery is completed).
Signed-off-by: Bhanu Prakash Gollapudi <bprakash@broadcom.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
-rw-r--r-- | drivers/scsi/bnx2fc/bnx2fc_fcoe.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/scsi/bnx2fc/bnx2fc_fcoe.c b/drivers/scsi/bnx2fc/bnx2fc_fcoe.c index 7e6ce7bd0fb..d2bbb8030f7 100644 --- a/drivers/scsi/bnx2fc/bnx2fc_fcoe.c +++ b/drivers/scsi/bnx2fc/bnx2fc_fcoe.c @@ -870,6 +870,8 @@ static void bnx2fc_indicate_netevent(void *context, unsigned long event, * enable to avoid sending discovery solicitation * on a stale vlan */ + if (interface->enabled) + fcoe_ctlr_link_up(&interface->ctlr); } else if (fcoe_ctlr_link_down(&interface->ctlr)) { mutex_lock(&lport->lp_mutex); list_for_each_entry(vport, &lport->vports, list) |