mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 05:01:48 +00:00
drm/nv50: initialize ramht_refs list for faked 0 channel
We need it for PFIFO_INTR_CACHE_ERROR interrupt handling, because nouveau_fifo_swmthd looks for matching gpuobj in ramht_refs list. It fixes kernel panic in nouveau_gpuobj_ref_find. Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
parent
374c3af880
commit
615661f394
@ -139,6 +139,8 @@ nv50_instmem_init(struct drm_device *dev)
|
|||||||
chan->file_priv = (struct drm_file *)-2;
|
chan->file_priv = (struct drm_file *)-2;
|
||||||
dev_priv->fifos[0] = dev_priv->fifos[127] = chan;
|
dev_priv->fifos[0] = dev_priv->fifos[127] = chan;
|
||||||
|
|
||||||
|
INIT_LIST_HEAD(&chan->ramht_refs);
|
||||||
|
|
||||||
/* Channel's PRAMIN object + heap */
|
/* Channel's PRAMIN object + heap */
|
||||||
ret = nouveau_gpuobj_new_fake(dev, 0, c_offset, c_size, 0,
|
ret = nouveau_gpuobj_new_fake(dev, 0, c_offset, c_size, 0,
|
||||||
NULL, &chan->ramin);
|
NULL, &chan->ramin);
|
||||||
|
Loading…
Reference in New Issue
Block a user