提交 4b584369 编写于 作者: D Damien Lespiau 提交者: Daniel Vetter

drm/i915: Empty the circular buffer when asked for a new source

So we don't read out stale CRCs from a previous run left in the buffer.
Signed-off-by: NDamien Lespiau <damien.lespiau@intel.com>
Signed-off-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
上级 ae676fcd
......@@ -1820,6 +1820,12 @@ static int pipe_crc_set_source(struct drm_device *dev, enum pipe pipe,
if (pipe_crc->source && source)
return -EINVAL;
/* none -> real source transition */
if (source) {
atomic_set(&pipe_crc->head, 0);
atomic_set(&pipe_crc->tail, 0);
}
pipe_crc->source = source;
switch (source) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册