On Wed, 2017-01-25 at 22:07 -0200, Mauricio Faria de Oliveira wrote: > Avoid that issuing a LIP as follows: > > find /sys -name 'issue_lip'|while read f; do echo 1 > $f; done > > triggers the following: > > BUG: unable to handle kernel NULL pointer dereference at (null) > Call Trace: > qla2x00_abort_all_cmds+0xed/0x140 [qla2xxx] > qla2x00_abort_isp_cleanup+0x1e3/0x280 [qla2xxx] > qla2x00_abort_isp+0xef/0x690 [qla2xxx] > qla2x00_do_dpc+0x36c/0x880 [qla2xxx] > kthread+0x10c/0x140 A smaller patch would have been sufficient, namely: drivers/scsi/qla2xxx/qla_os.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/scsi/qla2xxx/qla_os.c b/drivers/scsi/qla2xxx/qla_os.c index 0a000ecf0881..40660461a4b5 100644 --- a/drivers/scsi/qla2xxx/qla_os.c +++ b/drivers/scsi/qla2xxx/qla_os.c @@ -1616,7 +1616,7 @@ qla2x00_abort_all_cmds(scsi_qla_host_t *vha, int res) /* Don't abort commands in adapter during EEH * recovery as it's not accessible/responding. */ - if (!ha->flags.eeh_busy) { + if (!ha->flags.eeh_busy && GET_CMD_SP(sp)) { /* Get a reference to the sp and drop the lock. * The reference ensures this sp->done() call * - and not the call in qla2xxx_eh_abort() - Anyway: Reviewed-by: Bart Van Assche <bart.vanassche@xxxxxxxxxxx>-- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html