On Wed, Jan 27, 2016 at 12:03:35PM -0500, Himanshu Madhani wrote:
> From: Harish Zunjarrao <[email protected]>
> 
> Signed-off-by: Harish Zunjarrao <[email protected]>
> Signed-off-by: Himanshu Madhani <[email protected]>
> ---
>  drivers/scsi/qla2xxx/qla_bsg.c |    9 +++++++--
>  drivers/scsi/qla2xxx/qla_bsg.h |    4 +++-
>  2 files changed, 10 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/scsi/qla2xxx/qla_bsg.c b/drivers/scsi/qla2xxx/qla_bsg.c
> index 913fef2..392c147 100644
> --- a/drivers/scsi/qla2xxx/qla_bsg.c
> +++ b/drivers/scsi/qla2xxx/qla_bsg.c
> @@ -2204,8 +2204,12 @@ qla27xx_get_bbcr_data(struct fc_bsg_job *bsg_job)
>       if (bbcr.status == QLA_BBCR_STATUS_ENABLED) {
>               rval = qla2x00_get_adapter_id(vha, &loop_id, &al_pa,
>                       &area, &domain, &topo, &sw_cap);
> -             if (rval != QLA_SUCCESS)
> -                     return -EIO;
> +             if (rval != QLA_SUCCESS) {
> +                     bbcr.status = QLA_BBCR_STATUS_UNKNOWN;
> +                     bbcr.state = QLA_BBCR_STATE_OFFLINE;
> +                     bbcr.mbx1 = loop_id;
> +                     goto done;
> +             }
>  
>               state = (vha->bbcr >> 12) & 0x1;
>  
> @@ -2220,6 +2224,7 @@ qla27xx_get_bbcr_data(struct fc_bsg_job *bsg_job)
>               bbcr.configured_bbscn = vha->bbcr & 0xf;
>       }
>  
> +done:
>       sg_copy_from_buffer(bsg_job->reply_payload.sg_list,
>               bsg_job->reply_payload.sg_cnt, &bbcr, sizeof(bbcr));
>       bsg_job->reply->reply_payload_rcv_len = sizeof(bbcr);
> diff --git a/drivers/scsi/qla2xxx/qla_bsg.h b/drivers/scsi/qla2xxx/qla_bsg.h
> index c40dd8b..c80192d 100644
> --- a/drivers/scsi/qla2xxx/qla_bsg.h
> +++ b/drivers/scsi/qla2xxx/qla_bsg.h
> @@ -245,6 +245,7 @@ struct qla_flash_update_caps {
>  /* BB_CR Status */
>  #define QLA_BBCR_STATUS_DISABLED       0
>  #define QLA_BBCR_STATUS_ENABLED        1
> +#define QLA_BBCR_STATUS_UNKNOWN        2
>  
>  /* BB_CR State */
>  #define QLA_BBCR_STATE_OFFLINE         0
> @@ -262,6 +263,7 @@ struct  qla_bbcr_data {
>       uint8_t   configured_bbscn;       /* 0-15 */
>       uint8_t   negotiated_bbscn;       /* 0-15 */
>       uint8_t   offline_reason_code;
> -     uint8_t   reserved[11];
> +     uint16_t  mbx1;                 /* Port state */
> +     uint8_t   reserved[9];
>  } __packed;
>  #endif
> -- 
> 1.7.7
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
> the body of a message to [email protected]
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reviewed-by: Johannes Thumshirn <[email protected]>
-- 
Johannes Thumshirn                                          Storage
[email protected]                                +49 911 74053 689
SUSE LINUX GmbH, Maxfeldstr. 5, 90409 Nürnberg
GF: Felix Imendörffer, Jane Smithard, Graham Norton
HRB 21284 (AG Nürnberg)
Key fingerprint = EC38 9CAB C2C4 F25D 8600 D0D0 0393 969D 2D76 0850
--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to