Fix bug_on condition check in RPSC (Report Port Speed Capabilities)
response processing.

Signed-off-by: Vijaya Mohan Guvva <vmo...@brocade.com>
---
 drivers/scsi/bfa/bfa_fcs_rport.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/scsi/bfa/bfa_fcs_rport.c b/drivers/scsi/bfa/bfa_fcs_rport.c
index 807622b..891aab6 100644
--- a/drivers/scsi/bfa/bfa_fcs_rport.c
+++ b/drivers/scsi/bfa/bfa_fcs_rport.c
@@ -3430,9 +3430,10 @@ bfa_fcs_rpf_rpsc2_response(void *fcsarg, struct 
bfa_fcxp_s *fcxp, void *cbarg,
                num_ents = be16_to_cpu(rpsc2_acc->num_pids);
                bfa_trc(rport->fcs, num_ents);
                if (num_ents > 0) {
-                       WARN_ON(rpsc2_acc->port_info[0].pid == rport->pid);
+                       WARN_ON(be32_to_cpu(rpsc2_acc->port_info[0].pid) !=
+                                               bfa_ntoh3b(rport->pid));
                        bfa_trc(rport->fcs,
-                               be16_to_cpu(rpsc2_acc->port_info[0].pid));
+                               be32_to_cpu(rpsc2_acc->port_info[0].pid));
                        bfa_trc(rport->fcs,
                                be16_to_cpu(rpsc2_acc->port_info[0].speed));
                        bfa_trc(rport->fcs,
-- 
1.7.12

--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to