mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-05 04:16:43 +07:00
drm/msm: fix some crashes in submit fail path
If submit fails, before fence is created or before submit is added to submit-list, then unitialized fields cause problems in the clean-up path. Signed-off-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
parent
69a834c28f
commit
ba344afd66
@ -40,12 +40,14 @@ static struct msm_gem_submit *submit_create(struct drm_device *dev,
|
||||
|
||||
submit->dev = dev;
|
||||
submit->gpu = gpu;
|
||||
submit->fence = NULL;
|
||||
submit->pid = get_pid(task_pid(current));
|
||||
|
||||
/* initially, until copy_from_user() and bo lookup succeeds: */
|
||||
submit->nr_bos = 0;
|
||||
submit->nr_cmds = 0;
|
||||
|
||||
INIT_LIST_HEAD(&submit->node);
|
||||
INIT_LIST_HEAD(&submit->bo_list);
|
||||
ww_acquire_init(&submit->ticket, &reservation_ww_class);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user