提交 f01ea0c3 编写于 作者: T Thomas Hellstrom

drm/vmwgfx: Fix a potential infinite spin waiting for fifo idle

The code waiting for fifo idle was incorrect and could possibly spin
forever under certain circumstances.
Signed-off-by: NThomas Hellstrom <thellstrom@vmware.com>
Reported-by: NMark Sheldon <markshel@vmware.com>
Reviewed-by: NJakob Bornecrantz <jakob@vmware.com>
Reivewed-by: NMark Sheldon <markshel@vmware.com>
Cc: <stable@vger.kernel.org>
上级 9f9cb84f
......@@ -180,8 +180,9 @@ void vmw_fifo_release(struct vmw_private *dev_priv, struct vmw_fifo_state *fifo)
mutex_lock(&dev_priv->hw_mutex);
vmw_write(dev_priv, SVGA_REG_SYNC, SVGA_SYNC_GENERIC);
while (vmw_read(dev_priv, SVGA_REG_BUSY) != 0)
vmw_write(dev_priv, SVGA_REG_SYNC, SVGA_SYNC_GENERIC);
;
dev_priv->last_read_seqno = ioread32(fifo_mem + SVGA_FIFO_FENCE);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册