aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/libfc/fc_lport.c
diff options
context:
space:
mode:
authorJoe Eykholt <jeykholt@cisco.com>2009-08-25 17:03:10 -0400
committerJames Bottomley <James.Bottomley@suse.de>2009-09-10 13:07:58 -0400
commit131203a1ef53f3a4deb3260031bc53c7e4db4a24 (patch)
tree0f85ee5bf5db4612a7a62aa8835f33a1acc5a9ac /drivers/scsi/libfc/fc_lport.c
parent6bd054cbf3f7da3442f30a7d4eb7da4dd1c44f21 (diff)
[SCSI] libfc: move remote port lookup for ELS requests into fc_rport.c.
This moves the remote port lookup for incoming ELS requests into fc_rport.c, in preparation for handing PLOGI and LOGO from unknown rports. This changes the arg to rport_recv_req from an rdata to an lport. Signed-off-by: Joe Eykholt <jeykholt@cisco.com> Signed-off-by: Robert Love <robert.w.love@intel.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers/scsi/libfc/fc_lport.c')
-rw-r--r--drivers/scsi/libfc/fc_lport.c30
1 files changed, 2 insertions, 28 deletions
diff --git a/drivers/scsi/libfc/fc_lport.c b/drivers/scsi/libfc/fc_lport.c
index caf68240bddf..d3f4e0c34f5c 100644
--- a/drivers/scsi/libfc/fc_lport.c
+++ b/drivers/scsi/libfc/fc_lport.c
@@ -812,10 +812,6 @@ static void fc_lport_recv_req(struct fc_lport *lport, struct fc_seq *sp,
812{ 812{
813 struct fc_frame_header *fh = fc_frame_header_get(fp); 813 struct fc_frame_header *fh = fc_frame_header_get(fp);
814 void (*recv) (struct fc_seq *, struct fc_frame *, struct fc_lport *); 814 void (*recv) (struct fc_seq *, struct fc_frame *, struct fc_lport *);
815 struct fc_rport_priv *rdata;
816 u32 s_id;
817 u32 d_id;
818 struct fc_seq_els_data rjt_data;
819 815
820 mutex_lock(&lport->lp_mutex); 816 mutex_lock(&lport->lp_mutex);
821 817
@@ -831,7 +827,7 @@ static void fc_lport_recv_req(struct fc_lport *lport, struct fc_seq *sp,
831 /* 827 /*
832 * Check opcode. 828 * Check opcode.
833 */ 829 */
834 recv = NULL; 830 recv = lport->tt.rport_recv_req;
835 switch (fc_frame_payload_op(fp)) { 831 switch (fc_frame_payload_op(fp)) {
836 case ELS_FLOGI: 832 case ELS_FLOGI:
837 recv = fc_lport_recv_flogi_req; 833 recv = fc_lport_recv_flogi_req;
@@ -858,29 +854,7 @@ static void fc_lport_recv_req(struct fc_lport *lport, struct fc_seq *sp,
858 break; 854 break;
859 } 855 }
860 856
861 if (recv) 857 recv(sp, fp, lport);
862 recv(sp, fp, lport);
863 else {
864 /*
865 * Find session.
866 * If this is a new incoming PLOGI, we won't find it.
867 */
868 s_id = ntoh24(fh->fh_s_id);
869 d_id = ntoh24(fh->fh_d_id);
870
871 rdata = lport->tt.rport_lookup(lport, s_id);
872 if (rdata)
873 lport->tt.rport_recv_req(sp, fp, rdata);
874 else {
875 rjt_data.fp = NULL;
876 rjt_data.reason = ELS_RJT_UNAB;
877 rjt_data.explan = ELS_EXPL_NONE;
878 lport->tt.seq_els_rsp_send(sp,
879 ELS_LS_RJT,
880 &rjt_data);
881 fc_frame_free(fp);
882 }
883 }
884 } else { 858 } else {
885 FC_LPORT_DBG(lport, "dropping invalid frame (eof %x)\n", 859 FC_LPORT_DBG(lport, "dropping invalid frame (eof %x)\n",
886 fr_eof(fp)); 860 fr_eof(fp));