Lines Matching refs:cmnd_timerp
617 struct timer_list *cmnd_timerp; member
3691 if (sqcp->cmnd_timerp) in stop_queued_cmnd()
3693 sqcp->cmnd_timerp); in stop_queued_cmnd()
3732 if (sqcp->cmnd_timerp) in stop_all_queued()
3734 sqcp->cmnd_timerp); in stop_all_queued()
3757 kfree(sqcp->cmnd_timerp); in free_all_queued()
3758 sqcp->cmnd_timerp = NULL; in free_all_queued()
4011 if (NULL == sqcp->cmnd_timerp) { in schedule_resp()
4012 sqcp->cmnd_timerp = kmalloc(sizeof(struct timer_list), in schedule_resp()
4014 if (NULL == sqcp->cmnd_timerp) in schedule_resp()
4016 init_timer(sqcp->cmnd_timerp); in schedule_resp()
4018 sqcp->cmnd_timerp->function = sdebug_q_cmd_complete; in schedule_resp()
4019 sqcp->cmnd_timerp->data = k; in schedule_resp()
4020 sqcp->cmnd_timerp->expires = get_jiffies_64() + delta_jiff; in schedule_resp()
4021 add_timer(sqcp->cmnd_timerp); in schedule_resp()