struct amd_sched_job, node);
if (next) {
- INIT_DELAYED_WORK(&next->work_tdr,
- s_job->timeout_callback);
amd_sched_job_get(next);
schedule_delayed_work(&next->work_tdr, sched->timeout);
}
list_first_entry_or_null(&sched->ring_mirror_list,
struct amd_sched_job, node) == s_job)
{
- INIT_DELAYED_WORK(&s_job->work_tdr, s_job->timeout_callback);
amd_sched_job_get(s_job);
schedule_delayed_work(&s_job->work_tdr, sched->timeout);
}
return -ENOMEM;
job->s_fence->s_job = job;
- job->timeout_callback = timeout_cb;
+ INIT_DELAYED_WORK(&job->work_tdr, timeout_cb);
job->free_callback = free_cb;
if (fence)
struct work_struct work_free_job;
struct list_head node;
struct delayed_work work_tdr;
- void (*timeout_callback) (struct work_struct *work);
void (*free_callback)(struct kref *refcount);
};