diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/scsi/libfc/fc_exch.c | 3 | ||||
-rw-r--r-- | drivers/scsi/libfc/fc_lport.c | 4 | ||||
-rw-r--r-- | drivers/scsi/libfc/fc_rport.c | 4 |
3 files changed, 6 insertions, 5 deletions
diff --git a/drivers/scsi/libfc/fc_exch.c b/drivers/scsi/libfc/fc_exch.c index 66db08a5f27f..a09416fd843c 100644 --- a/drivers/scsi/libfc/fc_exch.c +++ b/drivers/scsi/libfc/fc_exch.c | |||
@@ -1480,10 +1480,11 @@ static void fc_exch_reset(struct fc_exch *ep) | |||
1480 | * If sid is non-zero, reset only exchanges we source from that FID. | 1480 | * If sid is non-zero, reset only exchanges we source from that FID. |
1481 | * If did is non-zero, reset only exchanges destined to that FID. | 1481 | * If did is non-zero, reset only exchanges destined to that FID. |
1482 | */ | 1482 | */ |
1483 | void fc_exch_mgr_reset(struct fc_exch_mgr *mp, u32 sid, u32 did) | 1483 | void fc_exch_mgr_reset(struct fc_lport *lp, u32 sid, u32 did) |
1484 | { | 1484 | { |
1485 | struct fc_exch *ep; | 1485 | struct fc_exch *ep; |
1486 | struct fc_exch *next; | 1486 | struct fc_exch *next; |
1487 | struct fc_exch_mgr *mp = lp->emp; | ||
1487 | 1488 | ||
1488 | spin_lock_bh(&mp->em_lock); | 1489 | spin_lock_bh(&mp->em_lock); |
1489 | restart: | 1490 | restart: |
diff --git a/drivers/scsi/libfc/fc_lport.c b/drivers/scsi/libfc/fc_lport.c index 0b9bdb1fb807..5db223ce3b25 100644 --- a/drivers/scsi/libfc/fc_lport.c +++ b/drivers/scsi/libfc/fc_lport.c | |||
@@ -663,7 +663,7 @@ int fc_lport_destroy(struct fc_lport *lport) | |||
663 | { | 663 | { |
664 | lport->tt.frame_send = fc_frame_drop; | 664 | lport->tt.frame_send = fc_frame_drop; |
665 | lport->tt.fcp_abort_io(lport); | 665 | lport->tt.fcp_abort_io(lport); |
666 | lport->tt.exch_mgr_reset(lport->emp, 0, 0); | 666 | lport->tt.exch_mgr_reset(lport, 0, 0); |
667 | return 0; | 667 | return 0; |
668 | } | 668 | } |
669 | EXPORT_SYMBOL(fc_lport_destroy); | 669 | EXPORT_SYMBOL(fc_lport_destroy); |
@@ -973,7 +973,7 @@ static void fc_lport_enter_reset(struct fc_lport *lport) | |||
973 | 973 | ||
974 | lport->tt.disc_stop(lport); | 974 | lport->tt.disc_stop(lport); |
975 | 975 | ||
976 | lport->tt.exch_mgr_reset(lport->emp, 0, 0); | 976 | lport->tt.exch_mgr_reset(lport, 0, 0); |
977 | fc_host_fabric_name(lport->host) = 0; | 977 | fc_host_fabric_name(lport->host) = 0; |
978 | fc_host_port_id(lport->host) = 0; | 978 | fc_host_port_id(lport->host) = 0; |
979 | 979 | ||
diff --git a/drivers/scsi/libfc/fc_rport.c b/drivers/scsi/libfc/fc_rport.c index e780d8caf70e..dec7bae0e56d 100644 --- a/drivers/scsi/libfc/fc_rport.c +++ b/drivers/scsi/libfc/fc_rport.c | |||
@@ -1285,7 +1285,7 @@ void fc_rport_terminate_io(struct fc_rport *rport) | |||
1285 | struct fc_rport_libfc_priv *rdata = rport->dd_data; | 1285 | struct fc_rport_libfc_priv *rdata = rport->dd_data; |
1286 | struct fc_lport *lport = rdata->local_port; | 1286 | struct fc_lport *lport = rdata->local_port; |
1287 | 1287 | ||
1288 | lport->tt.exch_mgr_reset(lport->emp, 0, rport->port_id); | 1288 | lport->tt.exch_mgr_reset(lport, 0, rport->port_id); |
1289 | lport->tt.exch_mgr_reset(lport->emp, rport->port_id, 0); | 1289 | lport->tt.exch_mgr_reset(lport, rport->port_id, 0); |
1290 | } | 1290 | } |
1291 | EXPORT_SYMBOL(fc_rport_terminate_io); | 1291 | EXPORT_SYMBOL(fc_rport_terminate_io); |