@@ -179,7 +179,6 @@ void _zfcp_dbf_hba_fsf_response(const char *tag2, int level,
179
179
case FSF_QTCB_SEND_ELS :
180
180
send_els = (struct zfcp_send_els * )fsf_req -> data ;
181
181
response -> u .els .d_id = ntoh24 (qtcb -> bottom .support .d_id );
182
- response -> u .els .ls_code = send_els -> ls_code >> 24 ;
183
182
break ;
184
183
185
184
case FSF_QTCB_ABORT_FCP_CMND :
@@ -349,7 +348,6 @@ static void zfcp_dbf_hba_view_response(char **p,
349
348
350
349
case FSF_QTCB_SEND_ELS :
351
350
zfcp_dbf_out (p , "d_id" , "0x%06x" , r -> u .els .d_id );
352
- zfcp_dbf_out (p , "ls_code" , "0x%02x" , r -> u .els .ls_code );
353
351
break ;
354
352
355
353
case FSF_QTCB_ABORT_FCP_CMND :
@@ -678,12 +676,12 @@ void zfcp_dbf_rec_action(char *id2, struct zfcp_erp_action *erp_action)
678
676
/**
679
677
* zfcp_dbf_san_ct_request - trace event for issued CT request
680
678
* @fsf_req: request containing issued CT data
679
+ * @d_id: destination id where ct request is sent to
681
680
*/
682
- void zfcp_dbf_san_ct_request (struct zfcp_fsf_req * fsf_req )
681
+ void zfcp_dbf_san_ct_request (struct zfcp_fsf_req * fsf_req , u32 d_id )
683
682
{
684
- struct zfcp_send_ct * ct = (struct zfcp_send_ct * )fsf_req -> data ;
685
- struct zfcp_fc_wka_port * wka_port = ct -> wka_port ;
686
- struct zfcp_adapter * adapter = wka_port -> adapter ;
683
+ struct zfcp_fsf_ct_els * ct = (struct zfcp_fsf_ct_els * )fsf_req -> data ;
684
+ struct zfcp_adapter * adapter = fsf_req -> adapter ;
687
685
struct zfcp_dbf * dbf = adapter -> dbf ;
688
686
struct fc_ct_hdr * hdr = sg_virt (ct -> req );
689
687
struct zfcp_dbf_san_record * r = & dbf -> san_buf ;
@@ -696,8 +694,7 @@ void zfcp_dbf_san_ct_request(struct zfcp_fsf_req *fsf_req)
696
694
strncpy (r -> tag , "octc" , ZFCP_DBF_TAG_SIZE );
697
695
r -> fsf_reqid = fsf_req -> req_id ;
698
696
r -> fsf_seqno = fsf_req -> seq_no ;
699
- r -> s_id = fc_host_port_id (adapter -> scsi_host );
700
- r -> d_id = wka_port -> d_id ;
697
+ oct -> d_id = d_id ;
701
698
oct -> cmd_req_code = hdr -> ct_cmd ;
702
699
oct -> revision = hdr -> ct_rev ;
703
700
oct -> gs_type = hdr -> ct_fs_type ;
@@ -718,9 +715,8 @@ void zfcp_dbf_san_ct_request(struct zfcp_fsf_req *fsf_req)
718
715
*/
719
716
void zfcp_dbf_san_ct_response (struct zfcp_fsf_req * fsf_req )
720
717
{
721
- struct zfcp_send_ct * ct = (struct zfcp_send_ct * )fsf_req -> data ;
722
- struct zfcp_fc_wka_port * wka_port = ct -> wka_port ;
723
- struct zfcp_adapter * adapter = wka_port -> adapter ;
718
+ struct zfcp_fsf_ct_els * ct = (struct zfcp_fsf_ct_els * )fsf_req -> data ;
719
+ struct zfcp_adapter * adapter = fsf_req -> adapter ;
724
720
struct fc_ct_hdr * hdr = sg_virt (ct -> resp );
725
721
struct zfcp_dbf * dbf = adapter -> dbf ;
726
722
struct zfcp_dbf_san_record * r = & dbf -> san_buf ;
@@ -733,8 +729,6 @@ void zfcp_dbf_san_ct_response(struct zfcp_fsf_req *fsf_req)
733
729
strncpy (r -> tag , "rctc" , ZFCP_DBF_TAG_SIZE );
734
730
r -> fsf_reqid = fsf_req -> req_id ;
735
731
r -> fsf_seqno = fsf_req -> seq_no ;
736
- r -> s_id = wka_port -> d_id ;
737
- r -> d_id = fc_host_port_id (adapter -> scsi_host );
738
732
rct -> cmd_rsp_code = hdr -> ct_cmd ;
739
733
rct -> revision = hdr -> ct_rev ;
740
734
rct -> reason_code = hdr -> ct_reason ;
@@ -750,8 +744,8 @@ void zfcp_dbf_san_ct_response(struct zfcp_fsf_req *fsf_req)
750
744
}
751
745
752
746
static void zfcp_dbf_san_els (const char * tag , int level ,
753
- struct zfcp_fsf_req * fsf_req , u32 s_id , u32 d_id ,
754
- u8 ls_code , void * buffer , int buflen )
747
+ struct zfcp_fsf_req * fsf_req , u32 d_id ,
748
+ void * buffer , int buflen )
755
749
{
756
750
struct zfcp_adapter * adapter = fsf_req -> adapter ;
757
751
struct zfcp_dbf * dbf = adapter -> dbf ;
@@ -763,9 +757,7 @@ static void zfcp_dbf_san_els(const char *tag, int level,
763
757
strncpy (rec -> tag , tag , ZFCP_DBF_TAG_SIZE );
764
758
rec -> fsf_reqid = fsf_req -> req_id ;
765
759
rec -> fsf_seqno = fsf_req -> seq_no ;
766
- rec -> s_id = s_id ;
767
- rec -> d_id = d_id ;
768
- rec -> u .els .ls_code = ls_code ;
760
+ rec -> u .els .d_id = d_id ;
769
761
debug_event (dbf -> san , level , rec , sizeof (* rec ));
770
762
zfcp_dbf_hexdump (dbf -> san , rec , sizeof (* rec ), level ,
771
763
buffer , min (buflen , ZFCP_DBF_SAN_MAX_PAYLOAD ));
@@ -778,12 +770,11 @@ static void zfcp_dbf_san_els(const char *tag, int level,
778
770
*/
779
771
void zfcp_dbf_san_els_request (struct zfcp_fsf_req * fsf_req )
780
772
{
781
- struct zfcp_send_els * els = (struct zfcp_send_els * )fsf_req -> data ;
773
+ struct zfcp_fsf_ct_els * els = (struct zfcp_fsf_ct_els * )fsf_req -> data ;
774
+ u32 d_id = ntoh24 (fsf_req -> qtcb -> bottom .support .d_id );
782
775
783
- zfcp_dbf_san_els ("oels" , 2 , fsf_req ,
784
- fc_host_port_id (els -> adapter -> scsi_host ),
785
- els -> d_id , * (u8 * ) sg_virt (els -> req ),
786
- sg_virt (els -> req ), els -> req -> length );
776
+ zfcp_dbf_san_els ("oels" , 2 , fsf_req , d_id ,
777
+ sg_virt (els -> req ), els -> req -> length );
787
778
}
788
779
789
780
/**
@@ -792,12 +783,11 @@ void zfcp_dbf_san_els_request(struct zfcp_fsf_req *fsf_req)
792
783
*/
793
784
void zfcp_dbf_san_els_response (struct zfcp_fsf_req * fsf_req )
794
785
{
795
- struct zfcp_send_els * els = (struct zfcp_send_els * )fsf_req -> data ;
786
+ struct zfcp_fsf_ct_els * els = (struct zfcp_fsf_ct_els * )fsf_req -> data ;
787
+ u32 d_id = ntoh24 (fsf_req -> qtcb -> bottom .support .d_id );
796
788
797
- zfcp_dbf_san_els ("rels" , 2 , fsf_req , els -> d_id ,
798
- fc_host_port_id (els -> adapter -> scsi_host ),
799
- * (u8 * )sg_virt (els -> req ), sg_virt (els -> resp ),
800
- els -> resp -> length );
789
+ zfcp_dbf_san_els ("rels" , 2 , fsf_req , d_id ,
790
+ sg_virt (els -> resp ), els -> resp -> length );
801
791
}
802
792
803
793
/**
@@ -806,16 +796,13 @@ void zfcp_dbf_san_els_response(struct zfcp_fsf_req *fsf_req)
806
796
*/
807
797
void zfcp_dbf_san_incoming_els (struct zfcp_fsf_req * fsf_req )
808
798
{
809
- struct zfcp_adapter * adapter = fsf_req -> adapter ;
810
799
struct fsf_status_read_buffer * buf =
811
800
(struct fsf_status_read_buffer * )fsf_req -> data ;
812
801
int length = (int )buf -> length -
813
802
(int )((void * )& buf -> payload - (void * )buf );
814
803
815
804
zfcp_dbf_san_els ("iels" , 1 , fsf_req , ntoh24 (buf -> d_id ),
816
- fc_host_port_id (adapter -> scsi_host ),
817
- buf -> payload .data [0 ], (void * )buf -> payload .data ,
818
- length );
805
+ (void * )buf -> payload .data , length );
819
806
}
820
807
821
808
static int zfcp_dbf_san_view_format (debug_info_t * id , struct debug_view * view ,
@@ -830,11 +817,10 @@ static int zfcp_dbf_san_view_format(debug_info_t *id, struct debug_view *view,
830
817
zfcp_dbf_tag (& p , "tag" , r -> tag );
831
818
zfcp_dbf_out (& p , "fsf_reqid" , "0x%0Lx" , r -> fsf_reqid );
832
819
zfcp_dbf_out (& p , "fsf_seqno" , "0x%08x" , r -> fsf_seqno );
833
- zfcp_dbf_out (& p , "s_id" , "0x%06x" , r -> s_id );
834
- zfcp_dbf_out (& p , "d_id" , "0x%06x" , r -> d_id );
835
820
836
821
if (strncmp (r -> tag , "octc" , ZFCP_DBF_TAG_SIZE ) == 0 ) {
837
822
struct zfcp_dbf_san_record_ct_request * ct = & r -> u .ct_req ;
823
+ zfcp_dbf_out (& p , "d_id" , "0x%06x" , ct -> d_id );
838
824
zfcp_dbf_out (& p , "cmd_req_code" , "0x%04x" , ct -> cmd_req_code );
839
825
zfcp_dbf_out (& p , "revision" , "0x%02x" , ct -> revision );
840
826
zfcp_dbf_out (& p , "gs_type" , "0x%02x" , ct -> gs_type );
@@ -853,7 +839,7 @@ static int zfcp_dbf_san_view_format(debug_info_t *id, struct debug_view *view,
853
839
strncmp (r -> tag , "rels" , ZFCP_DBF_TAG_SIZE ) == 0 ||
854
840
strncmp (r -> tag , "iels" , ZFCP_DBF_TAG_SIZE ) == 0 ) {
855
841
struct zfcp_dbf_san_record_els * els = & r -> u .els ;
856
- zfcp_dbf_out (& p , "ls_code " , "0x%02x " , els -> ls_code );
842
+ zfcp_dbf_out (& p , "d_id " , "0x%06x " , els -> d_id );
857
843
}
858
844
return p - out_buf ;
859
845
}
0 commit comments