mirror of https://gitee.com/openkylin/linux.git
drm/amdgpu: fix scheduler thread creation error checking
Signed-off-by: Christian König <christian.koenig@amd.com> Reviewed-by: Chunming Zhou <david1.zhou@amd.com>
This commit is contained in:
parent
aef4852eed
commit
f495659821
|
@ -367,15 +367,14 @@ struct amd_gpu_scheduler *amd_sched_create(void *device,
|
|||
init_waitqueue_head(&sched->wait_queue);
|
||||
atomic_set(&sched->hw_rq_count, 0);
|
||||
/* Each scheduler will run on a seperate kernel thread */
|
||||
sched->thread = kthread_create(amd_sched_main, sched, name);
|
||||
if (sched->thread) {
|
||||
wake_up_process(sched->thread);
|
||||
return sched;
|
||||
sched->thread = kthread_run(amd_sched_main, sched, name);
|
||||
if (IS_ERR(sched->thread)) {
|
||||
DRM_ERROR("Failed to create scheduler for id %d.\n", ring);
|
||||
kfree(sched);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
DRM_ERROR("Failed to create scheduler for id %d.\n", ring);
|
||||
kfree(sched);
|
||||
return NULL;
|
||||
return sched;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue