projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e5a2000
)
scsi: libfc: Do not login if the port is already started
author
Hannes Reinecke
<
[email protected]
>
Fri, 30 Sep 2016 09:01:18 +0000
(11:01 +0200)
committer
Martin K. Petersen
<
[email protected]
>
Tue, 8 Nov 2016 22:29:47 +0000
(17:29 -0500)
When the port is already started we don't need to login; that
will only confuse the state machine.
Signed-off-by: Hannes Reinecke <
[email protected]
>
Acked-by: Johannes Thumshirn <
[email protected]
>
Signed-off-by: Martin K. Petersen <
[email protected]
>
drivers/scsi/libfc/fc_rport.c
patch
|
blob
|
history
diff --git
a/drivers/scsi/libfc/fc_rport.c
b/drivers/scsi/libfc/fc_rport.c
index 4e4087a0083673e5c9f989c961a37e18a009ed58..72a7183fdd06d8243b8f42ca824461aba74a34b2 100644
(file)
--- a/
drivers/scsi/libfc/fc_rport.c
+++ b/
drivers/scsi/libfc/fc_rport.c
@@
-418,6
+418,12
@@
static int fc_rport_login(struct fc_rport_priv *rdata)
{
mutex_lock(&rdata->rp_mutex);
+ if (rdata->flags & FC_RP_STARTED) {
+ FC_RPORT_DBG(rdata, "port already started\n");
+ mutex_unlock(&rdata->rp_mutex);
+ return 0;
+ }
+
rdata->flags |= FC_RP_STARTED;
switch (rdata->rp_state) {
case RPORT_ST_READY: