Lines Matching defs:SC
634 static inline void append_SC(struct scsi_cmnd **SC, struct scsi_cmnd *new_SC)
639 if (!*SC)
640 *SC = new_SC;
642 for (end = *SC; SCNEXT(end); end = SCNEXT(end))
648 static inline struct scsi_cmnd *remove_first_SC(struct scsi_cmnd ** SC)
652 ptr = *SC;
654 *SC = SCNEXT(*SC);
660 static inline struct scsi_cmnd *remove_lun_SC(struct scsi_cmnd ** SC,
665 for (ptr = *SC, prev = NULL;
674 *SC = SCNEXT(ptr);
682 static inline struct scsi_cmnd *remove_SC(struct scsi_cmnd **SC,
687 for (ptr = *SC, prev = NULL;
696 *SC = SCNEXT(ptr);
1031 * for disconnected command: pseudo SC with ABORT message or ABORT on reselection?