Lines Matching refs:cmnd_timerp
620 struct timer_list *cmnd_timerp; member
3687 if (sqcp->cmnd_timerp) in stop_queued_cmnd()
3689 sqcp->cmnd_timerp); in stop_queued_cmnd()
3728 if (sqcp->cmnd_timerp) in stop_all_queued()
3730 sqcp->cmnd_timerp); in stop_all_queued()
3753 kfree(sqcp->cmnd_timerp); in free_all_queued()
3754 sqcp->cmnd_timerp = NULL; in free_all_queued()
4012 if (NULL == sqcp->cmnd_timerp) { in schedule_resp()
4013 sqcp->cmnd_timerp = kmalloc(sizeof(struct timer_list), in schedule_resp()
4015 if (NULL == sqcp->cmnd_timerp) in schedule_resp()
4017 init_timer(sqcp->cmnd_timerp); in schedule_resp()
4019 sqcp->cmnd_timerp->function = sdebug_q_cmd_complete; in schedule_resp()
4020 sqcp->cmnd_timerp->data = k; in schedule_resp()
4021 sqcp->cmnd_timerp->expires = get_jiffies_64() + delta_jiff; in schedule_resp()
4022 add_timer(sqcp->cmnd_timerp); in schedule_resp()