Home
last modified time | relevance | path

Searched refs:issue_queue (Results 1 – 3 of 3) sorted by relevance

/linux-4.1.27/drivers/scsi/
Datari_NCR5380.c696 for (ptr = (struct scsi_cmnd *)hostdata->issue_queue; ptr; ptr = NEXT(ptr)) in NCR5380_print_status()
739 for (ptr = (struct scsi_cmnd *)hostdata->issue_queue; ptr; ptr = NEXT(ptr)) in NCR5380_show_info()
787 hostdata->issue_queue = NULL; in NCR5380_init()
885 if (!(hostdata->issue_queue) || (cmd->cmnd[0] == REQUEST_SENSE)) { in NCR5380_queue_command()
886 LIST(cmd, hostdata->issue_queue); in NCR5380_queue_command()
887 SET_NEXT(cmd, hostdata->issue_queue); in NCR5380_queue_command()
888 hostdata->issue_queue = cmd; in NCR5380_queue_command()
890 for (tmp = (struct scsi_cmnd *)hostdata->issue_queue; in NCR5380_queue_command()
921 !hostdata->issue_queue && in maybe_release_dma_irq()
984 for (tmp = (struct scsi_cmnd *) hostdata->issue_queue, prev = NULL; in NCR5380_main()
[all …]
DNCR5380.c744 …for (ptr = (struct scsi_cmnd *) hostdata->issue_queue; ptr; ptr = (struct scsi_cmnd *) ptr->host_s… in NCR5380_show_info()
825 hostdata->issue_queue = NULL; in NCR5380_init()
946 if (!(hostdata->issue_queue) || (cmd->cmnd[0] == REQUEST_SENSE)) { in NCR5380_queue_command_lck()
947 LIST(cmd, hostdata->issue_queue); in NCR5380_queue_command_lck()
948 cmd->host_scribble = (unsigned char *) hostdata->issue_queue; in NCR5380_queue_command_lck()
949 hostdata->issue_queue = cmd; in NCR5380_queue_command_lck()
951 …for (tmp = (struct scsi_cmnd *) hostdata->issue_queue; tmp->host_scribble; tmp = (struct scsi_cmnd… in NCR5380_queue_command_lck()
995 …for (tmp = (struct scsi_cmnd *) hostdata->issue_queue, prev = NULL; tmp; prev = tmp, tmp = (struct… in DEF_SCSI_QCMD()
1006 REMOVE(-1, hostdata->issue_queue, tmp, tmp->host_scribble); in DEF_SCSI_QCMD()
1007 hostdata->issue_queue = (struct scsi_cmnd *) tmp->host_scribble; in DEF_SCSI_QCMD()
[all …]
DNCR5380.h270 volatile struct scsi_cmnd *issue_queue; /* waiting to be issued */ member