The START_SP_W_RETRIES macro previously returned a positive EINVAL code when chip generation or login generation mismatches were detected, potentially leading to improper error handling in caller functions and creating security risks if the error state was misinterpreted. This patch updates the macro to return -EINVAL, aligning with kernel error handling conventions and mitigating unintended behavior in error handling. Signed-off-by: Ingyu Jang <ingyujang25@xxxxxxxxxxx> --- drivers/scsi/qla2xxx/qla_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c index 31fc6a0eca3e..089d560e4114 100644 --- a/drivers/scsi/qla2xxx/qla_init.c +++ b/drivers/scsi/qla2xxx/qla_init.c @@ -2059,7 +2059,7 @@ static void qla_marker_sp_done(srb_t *sp, int res) int cnt = 5; \ do { \ if (_chip_gen != sp->vha->hw->chip_reset || _login_gen != sp->fcport->login_gen) {\ - _rval = EINVAL; \ + _rval = -EINVAL; \ break; \ } \ _rval = qla2x00_start_sp(_sp); \ -- 2.34.1