Lines Matching defs:SC
653 static inline void append_SC(struct scsi_cmnd **SC, struct scsi_cmnd *new_SC)
658 if (!*SC)
659 *SC = new_SC;
661 for (end = *SC; SCNEXT(end); end = SCNEXT(end))
667 static inline struct scsi_cmnd *remove_first_SC(struct scsi_cmnd ** SC)
671 ptr = *SC;
673 *SC = SCNEXT(*SC);
679 static inline struct scsi_cmnd *remove_lun_SC(struct scsi_cmnd ** SC,
684 for (ptr = *SC, prev = NULL;
693 *SC = SCNEXT(ptr);
701 static inline struct scsi_cmnd *remove_SC(struct scsi_cmnd **SC,
706 for (ptr = *SC, prev = NULL;
715 *SC = SCNEXT(ptr);
1057 * for disconnected command: pseudo SC with ABORT message or ABORT on reselection?