[SCSI] bfa: Observed auto D-port mode instead of manual
authorVijaya Mohan Guvva <vmohan@brocade.com>
Thu, 21 Nov 2013 09:37:47 +0000 (01:37 -0800)
committerJames Bottomley <JBottomley@Parallels.com>
Thu, 19 Dec 2013 15:39:05 +0000 (07:39 -0800)
Observed Auto mode in the HBA side while doing manual D-Port test on the
switch side. Mode is not passed to BFA from firmware when the test is
triggered by switch side. BFA just blindly using Auto mode.

Signed-off-by: Vijaya Mohan Guvva <vmohan@brocade.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
drivers/scsi/bfa/bfa_svc.c
drivers/scsi/bfa/bfi.h

index 6c41e57fd75219fb7403cccc76c0a6e89d32bbdb..625225f31081ada0f732621c38f078f174ab0fdf 100644 (file)
@@ -6758,7 +6758,7 @@ bfa_dport_scn(struct bfa_dport_s *dport, struct bfi_diag_dport_scn_s *msg)
                dport->rp_pwwn = msg->info.teststart.pwwn;
                dport->rp_nwwn = msg->info.teststart.nwwn;
                dport->lpcnt = cpu_to_be32(msg->info.teststart.numfrm);
-               bfa_dport_result_start(dport, BFA_DPORT_OPMODE_AUTO);
+               bfa_dport_result_start(dport, msg->info.teststart.mode);
                break;
 
        case BFI_DPORT_SCN_SUBTESTSTART:
index bf05cc831cbc80bed65e15cba04c156d0c55291b..9ef91f907decb70d74c689082830003d08bf0855 100644 (file)
@@ -1144,7 +1144,8 @@ struct bfi_diag_dport_scn_teststart_s {
        wwn_t   pwwn;   /* switch port wwn. 8 bytes */
        wwn_t   nwwn;   /* switch node wwn. 8 bytes */
        u8      type;   /* bfa_diag_dport_test_type_e */
-       u8      rsvd[3];
+       u8      mode;   /* bfa_diag_dport_test_opmode */
+       u8      rsvd[2];
        u32     numfrm; /* from switch uint in 1M */
 };
 
This page took 0.026635 seconds and 5 git commands to generate.