mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-12 08:48:48 +00:00
[SCSI] qla2xxx: Correct truncation in return-code status checking.
QLA_* return codes are 'int' in size. There were still several legacy check-points which assumed a return-code width of 8-bits. This could cause incorrect assumptions of 'good' status if a return of QLA_FUNCTION_TIMEOUT. Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com> Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
This commit is contained in:
parent
ee546b6e04
commit
c6b2fca820
@ -3435,7 +3435,7 @@ qla2x00_abort_isp(scsi_qla_host_t *vha)
|
|||||||
static int
|
static int
|
||||||
qla2x00_restart_isp(scsi_qla_host_t *vha)
|
qla2x00_restart_isp(scsi_qla_host_t *vha)
|
||||||
{
|
{
|
||||||
uint8_t status = 0;
|
int status = 0;
|
||||||
uint32_t wait_time;
|
uint32_t wait_time;
|
||||||
struct qla_hw_data *ha = vha->hw;
|
struct qla_hw_data *ha = vha->hw;
|
||||||
struct req_que *req = ha->req_q_map[0];
|
struct req_que *req = ha->req_q_map[0];
|
||||||
|
@ -2568,7 +2568,7 @@ qla2x00_do_work(struct scsi_qla_host *vha)
|
|||||||
void qla2x00_relogin(struct scsi_qla_host *vha)
|
void qla2x00_relogin(struct scsi_qla_host *vha)
|
||||||
{
|
{
|
||||||
fc_port_t *fcport;
|
fc_port_t *fcport;
|
||||||
uint8_t status;
|
int status;
|
||||||
uint16_t next_loopid = 0;
|
uint16_t next_loopid = 0;
|
||||||
struct qla_hw_data *ha = vha->hw;
|
struct qla_hw_data *ha = vha->hw;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user