diff options
author | Abhijeet Joglekar <abjoglek@cisco.com> | 2009-02-27 13:54:35 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2009-03-06 16:35:47 -0500 |
commit | 1f6ff364ceda516f88351a8ab640e656beed0b26 (patch) | |
tree | 227a5f6e39372eaf3c898d1de8feb2b88df707b0 /drivers/scsi/libfc/fc_exch.c | |
parent | 33dd6f92a1a7ad85c54d47fd9d73371a32c0bde4 (diff) |
[SCSI] libfc: Pass lport in exch_mgr_reset
fc_exch_mgr structure is private to fc_exch.c. To export exch_mgr_reset to
transport, transport needs access to the exch manager. Change
exch_mgr_reset to use lport param which is the shared structure between
libFC and transport.
Alternatively, fc_exch_mgr definition can be moved to libfc.h so that lport
can be accessed from mp*.
Signed-off-by: Abhijeet Joglekar <abjoglek@cisco.com>
Signed-off-by: Robert Love <robert.w.love@intel.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/libfc/fc_exch.c')
-rw-r--r-- | drivers/scsi/libfc/fc_exch.c | 3 |
1 files changed, 2 insertions, 1 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: |