diff mbox series

[v2] drm/i915/guc/slpc: Restore efficient freq earlier

Message ID 20230726010044.3280402-1-vinay.belgaumkar@intel.com (mailing list archive)
State New, archived
Headers show
Series [v2] drm/i915/guc/slpc: Restore efficient freq earlier | expand

Commit Message

Vinay Belgaumkar July 26, 2023, 1 a.m. UTC
This should be done before the soft min/max frequencies are restored.
When we disable the "Ignore efficient frequency" flag, GuC does not
actually bring the requested freq down to RPn.

Specifically, this scenario-

- ignore efficient freq set to true
- reduce min to RPn (from efficient)
- suspend
- resume (includes GuC load, restore soft min/max, restore efficient freq)
- validate min freq has been resored to RPn

This will fail if we didn't first restore(disable, in this case) efficient
freq flag before setting the soft min frequency.

v2: Bring the min freq down to RPn when we disable efficient freq (Rodrigo)
Also made the change to set the min softlimit to RPn at init. Otherwise, we
were storing RPe there.

Link: https://gitlab.freedesktop.org/drm/intel/-/issues/8736
Fixes: 55f9720dbf23 ("drm/i915/guc/slpc: Provide sysfs for efficient freq")
Fixes: 95ccf312a1e4 ("drm/i915/guc/slpc: Allow SLPC to use efficient frequency")
Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
---
 drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c | 22 +++++++++++++--------
 1 file changed, 14 insertions(+), 8 deletions(-)

Comments

Rodrigo Vivi July 28, 2023, 3:36 p.m. UTC | #1
On Tue, Jul 25, 2023 at 06:00:44PM -0700, Vinay Belgaumkar wrote:
> This should be done before the soft min/max frequencies are restored.
> When we disable the "Ignore efficient frequency" flag, GuC does not
> actually bring the requested freq down to RPn.
> 
> Specifically, this scenario-
> 
> - ignore efficient freq set to true
> - reduce min to RPn (from efficient)
> - suspend
> - resume (includes GuC load, restore soft min/max, restore efficient freq)
> - validate min freq has been resored to RPn
> 
> This will fail if we didn't first restore(disable, in this case) efficient
> freq flag before setting the soft min frequency.
> 
> v2: Bring the min freq down to RPn when we disable efficient freq (Rodrigo)
> Also made the change to set the min softlimit to RPn at init. Otherwise, we
> were storing RPe there.

Thanks
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>

> 
> Link: https://gitlab.freedesktop.org/drm/intel/-/issues/8736
> Fixes: 55f9720dbf23 ("drm/i915/guc/slpc: Provide sysfs for efficient freq")
> Fixes: 95ccf312a1e4 ("drm/i915/guc/slpc: Allow SLPC to use efficient frequency")
> Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> ---
>  drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c | 22 +++++++++++++--------
>  1 file changed, 14 insertions(+), 8 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
> index ee9f83af7cf6..477df260ae3a 100644
> --- a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
> +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
> @@ -470,12 +470,19 @@ int intel_guc_slpc_set_ignore_eff_freq(struct intel_guc_slpc *slpc, bool val)
>  	ret = slpc_set_param(slpc,
>  			     SLPC_PARAM_IGNORE_EFFICIENT_FREQUENCY,
>  			     val);
> -	if (ret)
> +	if (ret) {
>  		guc_probe_error(slpc_to_guc(slpc), "Failed to set efficient freq(%d): %pe\n",
>  				val, ERR_PTR(ret));
> -	else
> +	} else {
>  		slpc->ignore_eff_freq = val;
>  
> +		/* Set min to RPn when we disable efficient freq */
> +		if (val)
> +			ret = slpc_set_param(slpc,
> +					     SLPC_PARAM_GLOBAL_MIN_GT_UNSLICE_FREQ_MHZ,
> +					     slpc->min_freq);
> +	}
> +
>  	intel_runtime_pm_put(&i915->runtime_pm, wakeref);
>  	mutex_unlock(&slpc->lock);
>  	return ret;
> @@ -602,9 +609,8 @@ static int slpc_set_softlimits(struct intel_guc_slpc *slpc)
>  		return ret;
>  
>  	if (!slpc->min_freq_softlimit) {
> -		ret = intel_guc_slpc_get_min_freq(slpc, &slpc->min_freq_softlimit);
> -		if (unlikely(ret))
> -			return ret;
> +		/* Min softlimit is initialized to RPn */
> +		slpc->min_freq_softlimit = slpc->min_freq;
>  		slpc_to_gt(slpc)->defaults.min_freq = slpc->min_freq_softlimit;
>  	} else {
>  		return intel_guc_slpc_set_min_freq(slpc,
> @@ -755,6 +761,9 @@ int intel_guc_slpc_enable(struct intel_guc_slpc *slpc)
>  		return ret;
>  	}
>  
> +	/* Set cached value of ignore efficient freq */
> +	intel_guc_slpc_set_ignore_eff_freq(slpc, slpc->ignore_eff_freq);
> +
>  	/* Revert SLPC min/max to softlimits if necessary */
>  	ret = slpc_set_softlimits(slpc);
>  	if (unlikely(ret)) {
> @@ -765,9 +774,6 @@ int intel_guc_slpc_enable(struct intel_guc_slpc *slpc)
>  	/* Set cached media freq ratio mode */
>  	intel_guc_slpc_set_media_ratio_mode(slpc, slpc->media_ratio_mode);
>  
> -	/* Set cached value of ignore efficient freq */
> -	intel_guc_slpc_set_ignore_eff_freq(slpc, slpc->ignore_eff_freq);
> -
>  	return 0;
>  }
>  
> -- 
> 2.38.1
>
Vinay Belgaumkar Aug. 2, 2023, 12:41 a.m. UTC | #2
From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: Thursday, July 27, 2023 6:59 PM
To: Belgaumkar, Vinay <vinay.belgaumkar@intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: ✗ Fi.CI.IGT: failure for drm/i915/guc/slpc: Restore efficient freq earlier (rev3)

Patch Details
Series:
drm/i915/guc/slpc: Restore efficient freq earlier (rev3)
URL:
https://patchwork.freedesktop.org/series/121150/
State:
failure
Details:
https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/index.html
CI Bug Log - changes from CI_DRM_13432_full -> Patchwork_121150v3_full
Summary

FAILURE

Serious unknown changes coming with Patchwork_121150v3_full absolutely need to be
verified manually.

If you think the reported changes have nothing to do with the changes
introduced in Patchwork_121150v3_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.

Participating hosts (10 -> 10)

No changes in participating hosts

Possible new issues

Here are the unknown changes that may have been introduced in Patchwork_121150v3_full:

IGT changes
Possible regressions

  *   igt@sysfs_timeslice_duration@invalid:
     *   shard-mtlp: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@sysfs_timeslice_duration@invalid.html>
Does not seem related to this patch.
Thanks,
Vinay.
Known issues

Here are the changes found in Patchwork_121150v3_full that come from known issues:

IGT changes
Issues hit

  *   igt@drm_fdinfo@virtual-busy:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@drm_fdinfo@virtual-busy.html> (i915#8414<https://gitlab.freedesktop.org/drm/intel/issues/8414>)
  *   igt@gem_ccs@ctrl-surf-copy-new-ctx:
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html> (i915#5325<https://gitlab.freedesktop.org/drm/intel/issues/5325>)
  *   igt@gem_ctx_isolation@preservation-s3@rcs0:
     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl2/igt@gem_ctx_isolation@preservation-s3@rcs0.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl7/igt@gem_ctx_isolation@preservation-s3@rcs0.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>)
  *   igt@gem_ctx_persistence@legacy-engines-queued:
     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb6/igt@gem_ctx_persistence@legacy-engines-queued.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1099<https://gitlab.freedesktop.org/drm/intel/issues/1099>) +4 similar issues
  *   igt@gem_eio@in-flight-suspend:
     *   shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-3/igt@gem_eio@in-flight-suspend.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-5/igt@gem_eio@in-flight-suspend.html> (fdo#103375<https://bugs.freedesktop.org/show_bug.cgi?id=103375>)
  *   igt@gem_eio@kms:
     *   shard-dg1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_eio@kms.html> (i915#5784<https://gitlab.freedesktop.org/drm/intel/issues/5784>)
  *   igt@gem_exec_await@wide-contexts:
     *   shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-6/igt@gem_exec_await@wide-contexts.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-8/igt@gem_exec_await@wide-contexts.html> (i915#5892<https://gitlab.freedesktop.org/drm/intel/issues/5892>)
  *   igt@gem_exec_capture@capture@bcs0-smem:
     *   shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-5/igt@gem_exec_capture@capture@bcs0-smem.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@gem_exec_capture@capture@bcs0-smem.html> (i915#7941<https://gitlab.freedesktop.org/drm/intel/issues/7941>)
  *   igt@gem_exec_fair@basic-pace@rcs0:
     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>)
  *   igt@gem_exec_fair@basic-throttle:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_fair@basic-throttle.html> (i915#3539<https://gitlab.freedesktop.org/drm/intel/issues/3539>)
  *   igt@gem_exec_flush@basic-wb-rw-before-default:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_flush@basic-wb-rw-before-default.html> (i915#3539<https://gitlab.freedesktop.org/drm/intel/issues/3539> / i915#4852<https://gitlab.freedesktop.org/drm/intel/issues/4852>)
  *   igt@gem_exec_reloc@basic-cpu-wc-active:
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_exec_reloc@basic-cpu-wc-active.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>) +1 similar issue
  *   igt@gem_exec_reloc@basic-wc-read-active:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_reloc@basic-wc-read-active.html> (i915#3281<https://gitlab.freedesktop.org/drm/intel/issues/3281>)
  *   igt@gem_exec_schedule@preempt-queue-contexts:
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-contexts.html> (i915#4812<https://gitlab.freedesktop.org/drm/intel/issues/4812>)
  *   igt@gem_fenced_exec_thrash@no-spare-fences:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_fenced_exec_thrash@no-spare-fences.html> (i915#4860<https://gitlab.freedesktop.org/drm/intel/issues/4860>)
  *   igt@gem_lmem_swapping@smem-oom:
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_lmem_swapping@smem-oom.html> (i915#4613<https://gitlab.freedesktop.org/drm/intel/issues/4613>)
  *   igt@gem_mmap@short-mmap:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_mmap@short-mmap.html> (i915#4083<https://gitlab.freedesktop.org/drm/intel/issues/4083>)
  *   igt@gem_mmap_gtt@basic-read-write:
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_mmap_gtt@basic-read-write.html> (i915#4077<https://gitlab.freedesktop.org/drm/intel/issues/4077>)
  *   igt@gem_mmap_gtt@cpuset-big-copy-xy:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_mmap_gtt@cpuset-big-copy-xy.html> (i915#4077<https://gitlab.freedesktop.org/drm/intel/issues/4077>)
  *   igt@gem_readwrite@read-write:
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_readwrite@read-write.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>)
  *   igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html> (i915#8428<https://gitlab.freedesktop.org/drm/intel/issues/8428>) +1 similar issue
  *   igt@gem_softpin@evict-snoop:
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_softpin@evict-snoop.html> (i915#4885<https://gitlab.freedesktop.org/drm/intel/issues/4885>)
  *   igt@gem_userptr_blits@forbidden-operations:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_userptr_blits@forbidden-operations.html> (i915#3282<https://gitlab.freedesktop.org/drm/intel/issues/3282>)
  *   igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html> (i915#3297<https://gitlab.freedesktop.org/drm/intel/issues/3297> / i915#4880<https://gitlab.freedesktop.org/drm/intel/issues/4880>)
  *   igt@gen9_exec_parse@basic-rejected-ctx-param:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gen9_exec_parse@basic-rejected-ctx-param.html> (i915#2527<https://gitlab.freedesktop.org/drm/intel/issues/2527>)
  *   igt@i915_pm_dc@dc6-dpms:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@i915_pm_dc@dc6-dpms.html> (i915#3361<https://gitlab.freedesktop.org/drm/intel/issues/3361>)
  *   igt@i915_pm_dc@dc9-dpms:
     *   shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-10/igt@i915_pm_dc@dc9-dpms.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-7/igt@i915_pm_dc@dc9-dpms.html> (i915#4281<https://gitlab.freedesktop.org/drm/intel/issues/4281>)
  *   igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
     *   shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html> (i915#1937<https://gitlab.freedesktop.org/drm/intel/issues/1937>)
  *   igt@i915_pm_lpsp@screens-disabled:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@i915_pm_lpsp@screens-disabled.html> (i915#1902<https://gitlab.freedesktop.org/drm/intel/issues/1902>)
  *   igt@i915_pm_rpm@basic-pci-d3-state:
     *   shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@basic-pci-d3-state.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@i915_pm_rpm@basic-pci-d3-state.html> (i915#7691<https://gitlab.freedesktop.org/drm/intel/issues/7691>)
  *   igt@i915_pm_rpm@dpms-lpsp:
     *   shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@dpms-lpsp.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@dpms-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) +1 similar issue
  *   igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0:
     *   shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-9/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-4/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html> (i915#7940<https://gitlab.freedesktop.org/drm/intel/issues/7940>)
  *   igt@i915_pm_rpm@i2c:
     *   shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-1/igt@i915_pm_rpm@i2c.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-2/igt@i915_pm_rpm@i2c.html> (i915#8717<https://gitlab.freedesktop.org/drm/intel/issues/8717>)
  *   igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html> (i915#5190<https://gitlab.freedesktop.org/drm/intel/issues/5190>)
  *   igt@kms_addfb_basic@basic-x-tiled-legacy:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_addfb_basic@basic-x-tiled-legacy.html> (i915#4212<https://gitlab.freedesktop.org/drm/intel/issues/4212>)
  *   igt@kms_async_flips@crc@pipe-b-hdmi-a-1:
     *   shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-10/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html> (i915#8247<https://gitlab.freedesktop.org/drm/intel/issues/8247>) +3 similar issues
  *   igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
     *   shard-dg1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html> (i915#8247<https://gitlab.freedesktop.org/drm/intel/issues/8247>) +3 similar issues
  *   igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1769<https://gitlab.freedesktop.org/drm/intel/issues/1769>)
  *   igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
     *   shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> (i915#5138<https://gitlab.freedesktop.org/drm/intel/issues/5138>)
  *   igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
     *   shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>) +1 similar issue
  *   igt@kms_big_fb@x-tiled-16bpp-rotate-90:
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html> (fdo#111614<https://bugs.freedesktop.org/show_bug.cgi?id=111614>)
  *   igt@kms_big_fb@x-tiled-64bpp-rotate-270:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html> (i915#3638<https://gitlab.freedesktop.org/drm/intel/issues/3638>)
  *   igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html> (fdo#111615<https://bugs.freedesktop.org/show_bug.cgi?id=111615>)
  *   igt@kms_big_joiner@basic:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_big_joiner@basic.html> (i915#2705<https://gitlab.freedesktop.org/drm/intel/issues/2705>)
  *   igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs:
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs.html> (i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +4 similar issues
  *   igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +2 similar issues
  *   igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html> (i915#3689<https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>)
  *   igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html> (i915#3886<https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +1 similar issue
  *   igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html> (i915#5354<https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095<https://gitlab.freedesktop.org/drm/intel/issues/6095>) +3 similar issues
  *   igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2:
     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html> (i915#7213<https://gitlab.freedesktop.org/drm/intel/issues/7213>) +3 similar issues
  *   igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html> (i915#4087<https://gitlab.freedesktop.org/drm/intel/issues/4087>) +3 similar issues
  *   igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html> (i915#7828<https://gitlab.freedesktop.org/drm/intel/issues/7828>) +1 similar issue
  *   igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html> (i915#7828<https://gitlab.freedesktop.org/drm/intel/issues/7828>) +2 similar issues
  *   igt@kms_content_protection@dp-mst-type-1:
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-1.html> (i915#3299<https://gitlab.freedesktop.org/drm/intel/issues/3299>)
  *   igt@kms_content_protection@lic@pipe-a-dp-4:
     *   shard-dg2: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html> (i915#7173<https://gitlab.freedesktop.org/drm/intel/issues/7173>)
  *   igt@kms_cursor_crc@cursor-rapid-movement-32x32:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555>)
  *   igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1:
     *   shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html> (fdo#103375<https://bugs.freedesktop.org/show_bug.cgi?id=103375>)
  *   igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
     *   shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html> (i915#8248<https://gitlab.freedesktop.org/drm/intel/issues/8248>)
  *   igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / fdo#111767<https://bugs.freedesktop.org/show_bug.cgi?id=111767>)
  *   igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
     *   shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html> (i915#2346<https://gitlab.freedesktop.org/drm/intel/issues/2346>)
  *   igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
     *   shard-apl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (i915#2346<https://gitlab.freedesktop.org/drm/intel/issues/2346>)
  *   igt@kms_dsc@dsc-with-output-formats:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_dsc@dsc-with-output-formats.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#3840<https://gitlab.freedesktop.org/drm/intel/issues/3840>)
  *   igt@kms_flip@2x-flip-vs-suspend-interruptible:
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> (i915#3637<https://gitlab.freedesktop.org/drm/intel/issues/3637>)
  *   igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
     *   shard-snb: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb1/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html> (i915#8841<https://gitlab.freedesktop.org/drm/intel/issues/8841>) +1 similar issue
  *   igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode:
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode.html> (i915#2672<https://gitlab.freedesktop.org/drm/intel/issues/2672>)
  *   igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html> (i915#8708<https://gitlab.freedesktop.org/drm/intel/issues/8708>) +3 similar issues
  *   igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html> (fdo#111825<https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +8 similar issues
  *   igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html> (i915#1825<https://gitlab.freedesktop.org/drm/intel/issues/1825>) +8 similar issues
  *   igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html> (i915#3458<https://gitlab.freedesktop.org/drm/intel/issues/3458>) +2 similar issues
  *   igt@kms_hdr@static-swap:
     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-7/igt@kms_hdr@static-swap.html> (i915#3555<https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#8228<https://gitlab.freedesktop.org/drm/intel/issues/8228>)
  *   igt@kms_plane@pixel-format@pipe-b-planes:
     *   shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@kms_plane@pixel-format@pipe-b-planes.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@kms_plane@pixel-format@pipe-b-planes.html> (i915#1623<https://gitlab.freedesktop.org/drm/intel/issues/1623>)
  *   igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2:
     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) +5 similar issues
  *   igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4.html> (i915#5176<https://gitlab.freedesktop.org/drm/intel/issues/5176>) +15 similar issues
  *   igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +3 similar issues
  *   igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
     *   shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +7 similar issues
  *   igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1:
     *   shard-snb: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb7/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +278 similar issues
  *   igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2:
     *   shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +7 similar issues
  *   igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1:
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1.html> (i915#5235<https://gitlab.freedesktop.org/drm/intel/issues/5235>) +3 similar issues
  *   igt@kms_psr@dpms:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_psr@dpms.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>)
  *   igt@kms_vblank@pipe-c-wait-busy-hang:
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_vblank@pipe-c-wait-busy-hang.html> (i915#6768<https://gitlab.freedesktop.org/drm/intel/issues/6768>)
  *   igt@v3d/v3d_submit_cl@single-in-sync:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@v3d/v3d_submit_cl@single-in-sync.html> (i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>)
  *   igt@v3d/v3d_submit_csd@job-perfmon:
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@v3d/v3d_submit_csd@job-perfmon.html> (i915#2575<https://gitlab.freedesktop.org/drm/intel/issues/2575>) +3 similar issues
  *   igt@vc4/vc4_tiling@get-bad-flags:
     *   shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@vc4/vc4_tiling@get-bad-flags.html> (i915#7711<https://gitlab.freedesktop.org/drm/intel/issues/7711>)
  *   igt@vc4/vc4_tiling@set-bad-flags:
     *   shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@vc4/vc4_tiling@set-bad-flags.html> (i915#7711<https://gitlab.freedesktop.org/drm/intel/issues/7711>)

Possible fixes

  *   igt@gem_ctx_exec@basic-nohangcheck:
     *   shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html> (i915#6268<https://gitlab.freedesktop.org/drm/intel/issues/6268>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html>
  *   {igt@gem_ctx_freq@sysfs@gt0}:
     *   shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html> (i915#6786<https://gitlab.freedesktop.org/drm/intel/issues/6786>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@gem_ctx_freq@sysfs@gt0.html>
  *   igt@gem_ctx_isolation@preservation-s3@vecs0:
     *   shard-apl: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl2/igt@gem_ctx_isolation@preservation-s3@vecs0.html> (i915#180<https://gitlab.freedesktop.org/drm/intel/issues/180>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl7/igt@gem_ctx_isolation@preservation-s3@vecs0.html>
  *   igt@gem_eio@hibernate:
     *   shard-dg1: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-14/igt@gem_eio@hibernate.html> (i915#4391<https://gitlab.freedesktop.org/drm/intel/issues/4391> / i915#7975<https://gitlab.freedesktop.org/drm/intel/issues/7975> / i915#8213<https://gitlab.freedesktop.org/drm/intel/issues/8213>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_eio@hibernate.html>
  *   igt@gem_eio@unwedge-stress:
     *   shard-dg1: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-16/igt@gem_eio@unwedge-stress.html> (i915#5784<https://gitlab.freedesktop.org/drm/intel/issues/5784>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-17/igt@gem_eio@unwedge-stress.html>
  *   igt@gem_exec_capture@pi@vcs0:
     *   shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@gem_exec_capture@pi@vcs0.html> (i915#4475<https://gitlab.freedesktop.org/drm/intel/issues/4475>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-4/igt@gem_exec_capture@pi@vcs0.html>
  *   igt@gem_exec_capture@pi@vcs1:
     *   shard-mtlp: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@gem_exec_capture@pi@vcs1.html> (i915#8504<https://gitlab.freedesktop.org/drm/intel/issues/8504>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-4/igt@gem_exec_capture@pi@vcs1.html>
  *   igt@gem_exec_fair@basic-pace-share@rcs0:
     *   shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2842<https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@gem_exec_fair@basic-pace-share@rcs0.html>
  *   igt@i915_module_load@reload-with-fault-injection:
     *   shard-dg2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html> (i915#7061<https://gitlab.freedesktop.org/drm/intel/issues/7061> / i915#8617<https://gitlab.freedesktop.org/drm/intel/issues/8617>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html>
  *   igt@i915_pm_rc6_residency@rc6-idle@rcs0:
     *   shard-dg1: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> (i915#3591<https://gitlab.freedesktop.org/drm/intel/issues/3591>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> +2 similar issues
  *   igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0:
     *   shard-dg1: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html> (i915#7940<https://gitlab.freedesktop.org/drm/intel/issues/7940>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html>
  *   igt@i915_pm_rpm@modeset-lpsp-stress:
     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rpm@modeset-lpsp-stress.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress.html>
  *   igt@i915_pm_rpm@modeset-non-lpsp:
     *   shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-8/igt@i915_pm_rpm@modeset-non-lpsp.html>
  *   igt@i915_pm_rpm@modeset-non-lpsp-stress:
     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html> +2 similar issues
  *   igt@i915_pm_rpm@pm-caching:
     *   shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-2/igt@i915_pm_rpm@pm-caching.html> (i915#7940<https://gitlab.freedesktop.org/drm/intel/issues/7940>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-8/igt@i915_pm_rpm@pm-caching.html> +1 similar issue
  *   igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
     *   shard-mtlp: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> (i915#3743<https://gitlab.freedesktop.org/drm/intel/issues/3743>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html>
  *   igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
     *   shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html> (i915#2346<https://gitlab.freedesktop.org/drm/intel/issues/2346>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html>
  *   igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2:
     *   shard-glk: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-glk3/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html> (i915#2122<https://gitlab.freedesktop.org/drm/intel/issues/2122>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html>
  *   igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1:
     *   shard-apl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html> (i915#79<https://gitlab.freedesktop.org/drm/intel/issues/79>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html>
  *   igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
     *   shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html> (i915#6880<https://gitlab.freedesktop.org/drm/intel/issues/6880>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html>
  *   igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes:
     *   shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html> (fdo#103375<https://bugs.freedesktop.org/show_bug.cgi?id=103375>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html> +2 similar issues
  *   igt@perf_pmu@busy-double-start@vecs1:
     *   shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-2/igt@perf_pmu@busy-double-start@vecs1.html> (i915#4349<https://gitlab.freedesktop.org/drm/intel/issues/4349>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html> +3 similar issues

Warnings

  *   igt@gem_exec_whisper@basic-contexts-forked-all:
     *   shard-mtlp: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-forked-all.html> (i915#8131<https://gitlab.freedesktop.org/drm/intel/issues/8131>) -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_exec_whisper@basic-contexts-forked-all.html> (i915#8628<https://gitlab.freedesktop.org/drm/intel/issues/8628>)
  *   igt@i915_pm_rc6_residency@rc6-idle@rcs0:
     *   shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> (i915#2681<https://gitlab.freedesktop.org/drm/intel/issues/2681> / i915#3591<https://gitlab.freedesktop.org/drm/intel/issues/3591>) -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> (i915#2681<https://gitlab.freedesktop.org/drm/intel/issues/2681>)
  *   igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html> (i915#1397<https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html> (i915#7940<https://gitlab.freedesktop.org/drm/intel/issues/7940>)
  *   igt@i915_pm_rpm@i2c:
     *   shard-dg1: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@i2c.html> (i915#4391<https://gitlab.freedesktop.org/drm/intel/issues/4391>) -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@i2c.html> (i915#4391<https://gitlab.freedesktop.org/drm/intel/issues/4391> / i915#4423<https://gitlab.freedesktop.org/drm/intel/issues/4423>)
  *   igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
     *   shard-mtlp: DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (i915#2017<https://gitlab.freedesktop.org/drm/intel/issues/2017> / i915#5954<https://gitlab.freedesktop.org/drm/intel/issues/5954>) -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (i915#2346<https://gitlab.freedesktop.org/drm/intel/issues/2346>)
  *   igt@kms_fbcon_fbt@psr:
     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-1/igt@kms_fbcon_fbt@psr.html> (fdo#110189<https://bugs.freedesktop.org/show_bug.cgi?id=110189> / i915#3955<https://gitlab.freedesktop.org/drm/intel/issues/3955>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-4/igt@kms_fbcon_fbt@psr.html> (i915#3955<https://gitlab.freedesktop.org/drm/intel/issues/3955>)
  *   igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
     *   shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (i915#4070<https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#4816<https://gitlab.freedesktop.org/drm/intel/issues/4816>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (i915#4816<https://gitlab.freedesktop.org/drm/intel/issues/4816>)
  *   igt@kms_psr@sprite_plane_onoff:
     *   shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-18/igt@kms_psr@sprite_plane_onoff.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072> / i915#4078<https://gitlab.freedesktop.org/drm/intel/issues/4078>) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@kms_psr@sprite_plane_onoff.html> (i915#1072<https://gitlab.freedesktop.org/drm/intel/issues/1072>)
  *   igt@sysfs_timeslice_duration@timeout@vecs0:
     *   shard-mtlp: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-6/igt@sysfs_timeslice_duration@timeout@vecs0.html> (i915#8521<https://gitlab.freedesktop.org/drm/intel/issues/8521>) -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@sysfs_timeslice_duration@timeout@vecs0.html> (i915#6950<https://gitlab.freedesktop.org/drm/intel/issues/6950>)

{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).

Build changes

  *   Linux: CI_DRM_13432 -> Patchwork_121150v3

CI-20190529: 20190529
CI_DRM_13432: 069a79d6af09879060345da9f8b886a73b7810a8 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7406: 1d6fd796607099d189e85d1fd305160363b961f2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_121150v3: 069a79d6af09879060345da9f8b886a73b7810a8 @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
Rodrigo Vivi Aug. 11, 2023, 12:22 a.m. UTC | #3
On Wed, Aug 02, 2023 at 12:41:09AM +0000, Belgaumkar, Vinay wrote:
>                                                                                 
>                                                                                 
>                                                                                 
>                                                                                 
>    From: Patchwork <patchwork@emeril.freedesktop.org>                           
>    Sent: Thursday, July 27, 2023 6:59 PM                                        
>    To: Belgaumkar, Vinay <vinay.belgaumkar@intel.com>                           
>    Cc: intel-gfx@lists.freedesktop.org                                          
>    Subject: ✗ Fi.CI.IGT: failure for drm/i915/guc/slpc: Restore efficient       
>    freq earlier (rev3)                                                          
>                                                                                 
>                                                                                 
>                                                                                 
>    Patch Details                                                                
>                                                                                 
> Series:  drm/i915/guc/slpc: Restore efficient freq earlier (rev3)                 
> URL:     [1]https://patchwork.freedesktop.org/series/121150/                      
> State:   failure                                                                  
> Details: [2]https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/index.html
>                                                                                 
>      CI Bug Log - changes from CI_DRM_13432_full -> Patchwork_121150v3_full     
>                                                                                 
> Summary                                                                         
>                                                                                 
>    FAILURE                                                                      
>                                                                                 
>    Serious unknown changes coming with Patchwork_121150v3_full absolutely       
>    need to be                                                                   
>    verified manually.                                                           
>                                                                                 
>    If you think the reported changes have nothing to do with the changes        
>    introduced in Patchwork_121150v3_full, please notify your bug team to        
>    allow them                                                                   
>    to document this new failure mode, which will reduce false positives in      
>    CI.                                                                          
>                                                                                 
> Participating hosts (10 -> 10)                                                  
>                                                                                 
>    No changes in participating hosts                                            
>                                                                                 
> Possible new issues                                                             
>                                                                                 
>    Here are the unknown changes that may have been introduced in                
>    Patchwork_121150v3_full:                                                     
>                                                                                 
>   IGT changes                                                                   
>                                                                                 
>     Possible regressions                                                        
>                                                                                 
>      • igt@sysfs_timeslice_duration@invalid:                                    
>                                                                                 
>         ◦ shard-mtlp: NOTRUN -> [3]TIMEOUT                                      
>                                                                                 
>    Does not seem related to this patch.                                         

But i915_selftests@live@workarounds seems to fail on every platform after I cherry
picked this patch to drm-intel-fixes:

http://gfx-ci.igk.intel.com/tree/drm-intel-fixes/combined-alt.html?

<5> [314.508910] i915 0000:00:02.0: [drm] Resetting chip for live_workarounds
<6> [314.511971] i915 0000:00:02.0: [drm] GT0: GuC firmware i915/mtl_guc_70.bin version 70.8.0
<7> [314.523625] i915 0000:00:02.0: [drm:intel_guc_fw_upload [i915]] GT0: GUC: init took 8ms, freq = 2250MHz, before = 2250MHz, status = 0x8002F034, count = 0, ret = 0
<7> [314.526596] i915 0000:00:02.0: [drm:guc_enable_communication [i915]] GT0: GUC: communication enabled
<6> [314.531291] i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
<6> [314.531324] i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
<6> [314.576597] i915: Running intel_workarounds_live_selftests/live_engine_reset_workarounds
<7> [314.576715] MCR Steering: L3BANK steering: group=0x0, instance=0x0
<7> [314.576736] MCR Steering: DSS steering: group=0x0, instance=0x0
<7> [314.576751] MCR Steering: INSTANCE 0 steering: group=0x0, instance=0x0
<7> [314.576818] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 5 GT_REF workarounds on global
<7> [314.578192] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 5 REF workarounds on rcs0
<7> [314.579454] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 6 CTX_REF workarounds on rcs0
<7> [314.580487] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 1 REF workarounds on bcs0
<7> [314.581449] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 2 CTX_REF workarounds on bcs0
<7> [314.582206] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 1 REF workarounds on ccs0
<7> [314.583122] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 1 CTX_REF workarounds on ccs0
<6> [314.584067] Verifying after rcs0 reset...
<7> [314.609843] i915 0000:00:02.0: [drm:intel_guc_context_reset_process_msg [i915]] GT0: GUC: Got context reset notification: 0x1002 on rcs0, exiting = no, banned = no
<6> [314.777958] i915 0000:00:02.0: [drm] GPU HANG: ecode 12:0:00000000
<6> [314.792928] Verifying after bcs0 reset...
<3> [325.082480] i915/intel_workarounds_live_selftests: live_engine_reset_workarounds failed with error -62

could you please help to understand what is going on here?

Thanks,
Rodrigo.

>                                                                                 
>    Thanks,                                                                      
>                                                                                 
>    Vinay.                                                                       
>                                                                                 
> Known issues                                                                    
>                                                                                 
>    Here are the changes found in Patchwork_121150v3_full that come from known   
>    issues:                                                                      
>                                                                                 
>   IGT changes                                                                   
>                                                                                 
>     Issues hit                                                                  
>                                                                                 
>      • igt@drm_fdinfo@virtual-busy:                                             
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [4]SKIP ([5]i915#8414)                           
>                                                                                 
>      • igt@gem_ccs@ctrl-surf-copy-new-ctx:                                      
>                                                                                 
>         ◦ shard-mtlp: NOTRUN -> [6]SKIP ([7]i915#5325)                          
>                                                                                 
>      • igt@gem_ctx_isolation@preservation-s3@rcs0:                              
>                                                                                 
>         ◦ shard-apl: [8]PASS -> [9]ABORT ([10]i915#180)                         
>                                                                                 
>      • igt@gem_ctx_persistence@legacy-engines-queued:                           
>                                                                                 
>         ◦ shard-snb: NOTRUN -> [11]SKIP ([12]fdo#109271 / [13]i915#1099) +4     
>           similar issues                                                        
>                                                                                 
>      • igt@gem_eio@in-flight-suspend:                                           
>                                                                                 
>         ◦ shard-dg2: [14]PASS -> [15]FAIL ([16]fdo#103375)                      
>                                                                                 
>      • igt@gem_eio@kms:                                                         
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [17]FAIL ([18]i915#5784)                         
>                                                                                 
>      • igt@gem_exec_await@wide-contexts:                                        
>                                                                                 
>         ◦ shard-dg2: [19]PASS -> [20]FAIL ([21]i915#5892)                       
>                                                                                 
>      • igt@gem_exec_capture@capture@bcs0-smem:                                  
>                                                                                 
>         ◦ shard-mtlp: [22]PASS -> [23]TIMEOUT ([24]i915#7941)                   
>                                                                                 
>      • igt@gem_exec_fair@basic-pace@rcs0:                                       
>                                                                                 
>         ◦ shard-rkl: [25]PASS -> [26]FAIL ([27]i915#2842)                       
>                                                                                 
>      • igt@gem_exec_fair@basic-throttle:                                        
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [28]SKIP ([29]i915#3539)                         
>                                                                                 
>      • igt@gem_exec_flush@basic-wb-rw-before-default:                           
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [30]SKIP ([31]i915#3539 / [32]i915#4852)         
>                                                                                 
>      • igt@gem_exec_reloc@basic-cpu-wc-active:                                  
>                                                                                 
>         ◦ shard-mtlp: NOTRUN -> [33]SKIP ([34]i915#3281) +1 similar issue       
>                                                                                 
>      • igt@gem_exec_reloc@basic-wc-read-active:                                 
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [35]SKIP ([36]i915#3281)                         
>                                                                                 
>      • igt@gem_exec_schedule@preempt-queue-contexts:                            
>                                                                                 
>         ◦ shard-mtlp: NOTRUN -> [37]SKIP ([38]i915#4812)                        
>                                                                                 
>      • igt@gem_fenced_exec_thrash@no-spare-fences:                              
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [39]SKIP ([40]i915#4860)                         
>                                                                                 
>      • igt@gem_lmem_swapping@smem-oom:                                          
>                                                                                 
>         ◦ shard-mtlp: NOTRUN -> [41]SKIP ([42]i915#4613)                        
>                                                                                 
>      • igt@gem_mmap@short-mmap:                                                 
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [43]SKIP ([44]i915#4083)                         
>                                                                                 
>      • igt@gem_mmap_gtt@basic-read-write:                                       
>                                                                                 
>         ◦ shard-mtlp: NOTRUN -> [45]SKIP ([46]i915#4077)                        
>                                                                                 
>      • igt@gem_mmap_gtt@cpuset-big-copy-xy:                                     
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [47]SKIP ([48]i915#4077)                         
>                                                                                 
>      • igt@gem_readwrite@read-write:                                            
>                                                                                 
>         ◦ shard-mtlp: NOTRUN -> [49]SKIP ([50]i915#3282)                        
>                                                                                 
>      • igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:                     
>                                                                                 
>         ◦ shard-mtlp: NOTRUN -> [51]SKIP ([52]i915#8428) +1 similar issue       
>                                                                                 
>      • igt@gem_softpin@evict-snoop:                                             
>                                                                                 
>         ◦ shard-mtlp: NOTRUN -> [53]SKIP ([54]i915#4885)                        
>                                                                                 
>      • igt@gem_userptr_blits@forbidden-operations:                              
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [55]SKIP ([56]i915#3282)                         
>                                                                                 
>      • igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:                 
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [57]SKIP ([58]i915#3297 / [59]i915#4880)         
>                                                                                 
>      • igt@gen9_exec_parse@basic-rejected-ctx-param:                            
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [60]SKIP ([61]i915#2527)                         
>                                                                                 
>      • igt@i915_pm_dc@dc6-dpms:                                                 
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [62]SKIP ([63]i915#3361)                         
>                                                                                 
>      • igt@i915_pm_dc@dc9-dpms:                                                 
>                                                                                 
>         ◦ shard-tglu: [64]PASS -> [65]SKIP ([66]i915#4281)                      
>                                                                                 
>      • igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:                               
>                                                                                 
>         ◦ shard-rkl: [67]PASS -> [68]SKIP ([69]i915#1937)                       
>                                                                                 
>      • igt@i915_pm_lpsp@screens-disabled:                                       
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [70]SKIP ([71]i915#1902)                         
>                                                                                 
>      • igt@i915_pm_rpm@basic-pci-d3-state:                                      
>                                                                                 
>         ◦ shard-dg1: [72]PASS -> [73]FAIL ([74]i915#7691)                       
>                                                                                 
>      • igt@i915_pm_rpm@dpms-lpsp:                                               
>                                                                                 
>         ◦ shard-dg1: [75]PASS -> [76]SKIP ([77]i915#1397) +1 similar issue      
>                                                                                 
>      • igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0:                     
>                                                                                 
>         ◦ shard-tglu: [78]PASS -> [79]FAIL ([80]i915#7940)                      
>                                                                                 
>      • igt@i915_pm_rpm@i2c:                                                     
>                                                                                 
>         ◦ shard-dg2: [81]PASS -> [82]FAIL ([83]i915#8717)                       
>                                                                                 
>      • igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:                        
>                                                                                 
>         ◦ shard-mtlp: NOTRUN -> [84]SKIP ([85]i915#5190)                        
>                                                                                 
>      • igt@kms_addfb_basic@basic-x-tiled-legacy:                                
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [86]SKIP ([87]i915#4212)                         
>                                                                                 
>      • igt@kms_async_flips@crc@pipe-b-hdmi-a-1:                                 
>                                                                                 
>         ◦ shard-dg2: NOTRUN -> [88]FAIL ([89]i915#8247) +3 similar issues       
>                                                                                 
>      • igt@kms_async_flips@crc@pipe-d-hdmi-a-4:                                 
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [90]FAIL ([91]i915#8247) +3 similar issues       
>                                                                                 
>      • igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
>                                                                                 
>         ◦ shard-snb: NOTRUN -> [92]SKIP ([93]fdo#109271 / [94]i915#1769)        
>                                                                                 
>      • igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:               
>                                                                                 
>         ◦ shard-mtlp: [95]PASS -> [96]FAIL ([97]i915#5138)                      
>                                                                                 
>      • igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:  
>                                                                                 
>         ◦ shard-mtlp: [98]PASS -> [99]FAIL ([100]i915#3743) +1 similar issue    
>                                                                                 
>      • igt@kms_big_fb@x-tiled-16bpp-rotate-90:                                  
>                                                                                 
>         ◦ shard-mtlp: NOTRUN -> [101]SKIP ([102]fdo#111614)                     
>                                                                                 
>      • igt@kms_big_fb@x-tiled-64bpp-rotate-270:                                 
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [103]SKIP ([104]i915#3638)                       
>                                                                                 
>      • igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:   
>                                                                                 
>         ◦ shard-mtlp: NOTRUN -> [105]SKIP ([106]fdo#111615)                     
>                                                                                 
>      • igt@kms_big_joiner@basic:                                                
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [107]SKIP ([108]i915#2705)                       
>                                                                                 
>      • igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs:                 
>                                                                                 
>         ◦ shard-mtlp: NOTRUN -> [109]SKIP ([110]i915#6095) +4 similar issues    
>                                                                                 
>      • igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs:                          
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [111]SKIP ([112]i915#3689 / [113]i915#5354 /     
>           [114]i915#6095) +2 similar issues                                     
>                                                                                 
>      • igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs:              
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [115]SKIP ([116]i915#3689 / [117]i915#3886 /     
>           [118]i915#5354 / [119]i915#6095)                                      
>                                                                                 
>      • igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:                 
>                                                                                 
>         ◦ shard-mtlp: NOTRUN -> [120]SKIP ([121]i915#3886 / [122]i915#6095)     
>           +1 similar issue                                                      
>                                                                                 
>      • igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs:                   
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [123]SKIP ([124]i915#5354 / [125]i915#6095) +3   
>           similar issues                                                        
>                                                                                 
>      • igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2:                           
>                                                                                 
>         ◦ shard-dg2: NOTRUN -> [126]SKIP ([127]i915#7213) +3 similar issues     
>                                                                                 
>      • igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:                             
>                                                                                 
>         ◦ shard-dg2: NOTRUN -> [128]SKIP ([129]i915#4087) +3 similar issues     
>                                                                                 
>      • igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:               
>                                                                                 
>         ◦ shard-mtlp: NOTRUN -> [130]SKIP ([131]i915#7828) +1 similar issue     
>                                                                                 
>      • igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:                     
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [132]SKIP ([133]i915#7828) +2 similar issues     
>                                                                                 
>      • igt@kms_content_protection@dp-mst-type-1:                                
>                                                                                 
>         ◦ shard-mtlp: NOTRUN -> [134]SKIP ([135]i915#3299)                      
>                                                                                 
>      • igt@kms_content_protection@lic@pipe-a-dp-4:                              
>                                                                                 
>         ◦ shard-dg2: NOTRUN -> [136]TIMEOUT ([137]i915#7173)                    
>                                                                                 
>      • igt@kms_cursor_crc@cursor-rapid-movement-32x32:                          
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [138]SKIP ([139]i915#3555)                       
>                                                                                 
>      • igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1:                          
>                                                                                 
>         ◦ shard-mtlp: NOTRUN -> [140]FAIL ([141]fdo#103375)                     
>                                                                                 
>      • igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:    
>                                                                                 
>         ◦ shard-mtlp: [142]PASS -> [143]FAIL ([144]i915#8248)                   
>                                                                                 
>      • igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:               
>                                                                                 
>         ◦ shard-snb: NOTRUN -> [145]SKIP ([146]fdo#109271 / [147]fdo#111767)    
>                                                                                 
>      • igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:                 
>                                                                                 
>         ◦ shard-mtlp: NOTRUN -> [148]FAIL ([149]i915#2346)                      
>                                                                                 
>      • igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:    
>                                                                                 
>         ◦ shard-apl: [150]PASS -> [151]FAIL ([152]i915#2346)                    
>                                                                                 
>      • igt@kms_dsc@dsc-with-output-formats:                                     
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [153]SKIP ([154]i915#3555 / [155]i915#3840)      
>                                                                                 
>      • igt@kms_flip@2x-flip-vs-suspend-interruptible:                           
>                                                                                 
>         ◦ shard-mtlp: NOTRUN -> [156]SKIP ([157]i915#3637)                      
>                                                                                 
>      • igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:                         
>                                                                                 
>         ◦ shard-snb: NOTRUN -> [158]DMESG-WARN ([159]i915#8841) +1 similar      
>           issue                                                                 
>                                                                                 
>      • igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode:
>                                                                                 
>         ◦ shard-mtlp: NOTRUN -> [160]SKIP ([161]i915#2672)                      
>                                                                                 
>      • igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt:    
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [162]SKIP ([163]i915#8708) +3 similar issues     
>                                                                                 
>      • igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:           
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [164]SKIP ([165]fdo#111825) +8 similar issues    
>                                                                                 
>      • igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:       
>                                                                                 
>         ◦ shard-mtlp: NOTRUN -> [166]SKIP ([167]i915#1825) +8 similar issues    
>                                                                                 
>      • igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:         
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [168]SKIP ([169]i915#3458) +2 similar issues     
>                                                                                 
>      • igt@kms_hdr@static-swap:                                                 
>                                                                                 
>         ◦ shard-dg2: NOTRUN -> [170]SKIP ([171]i915#3555 / [172]i915#8228)      
>                                                                                 
>      • igt@kms_plane@pixel-format@pipe-b-planes:                                
>                                                                                 
>         ◦ shard-mtlp: [173]PASS -> [174]FAIL ([175]i915#1623)                   
>                                                                                 
>      • igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2:
>                                                                                 
>         ◦ shard-rkl: NOTRUN -> [176]SKIP ([177]i915#5176) +5 similar issues     
>                                                                                 
>      • igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4:
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [178]SKIP ([179]i915#5176) +15 similar issues    
>                                                                                 
>      • igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1:
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [180]SKIP ([181]i915#5235) +3 similar issues     
>                                                                                 
>      • igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:      
>                                                                                 
>         ◦ shard-dg2: NOTRUN -> [182]SKIP ([183]i915#5235) +7 similar issues     
>                                                                                 
>      • igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1:
>                                                                                 
>         ◦ shard-snb: NOTRUN -> [184]SKIP ([185]fdo#109271) +278 similar         
>           issues                                                                
>                                                                                 
>      • igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2:
>                                                                                 
>         ◦ shard-rkl: NOTRUN -> [186]SKIP ([187]i915#5235) +7 similar issues     
>                                                                                 
>      • igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1:
>                                                                                 
>         ◦ shard-mtlp: NOTRUN -> [188]SKIP ([189]i915#5235) +3 similar issues    
>                                                                                 
>      • igt@kms_psr@dpms:                                                        
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [190]SKIP ([191]i915#1072)                       
>                                                                                 
>      • igt@kms_vblank@pipe-c-wait-busy-hang:                                    
>                                                                                 
>         ◦ shard-mtlp: NOTRUN -> [192]SKIP ([193]i915#6768)                      
>                                                                                 
>      • igt@v3d/v3d_submit_cl@single-in-sync:                                    
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [194]SKIP ([195]i915#2575)                       
>                                                                                 
>      • igt@v3d/v3d_submit_csd@job-perfmon:                                      
>                                                                                 
>         ◦ shard-mtlp: NOTRUN -> [196]SKIP ([197]i915#2575) +3 similar issues    
>                                                                                 
>      • igt@vc4/vc4_tiling@get-bad-flags:                                        
>                                                                                 
>         ◦ shard-dg1: NOTRUN -> [198]SKIP ([199]i915#7711)                       
>                                                                                 
>      • igt@vc4/vc4_tiling@set-bad-flags:                                        
>                                                                                 
>         ◦ shard-mtlp: NOTRUN -> [200]SKIP ([201]i915#7711)                      
>                                                                                 
>     Possible fixes                                                              
>                                                                                 
>      • igt@gem_ctx_exec@basic-nohangcheck:                                      
>                                                                                 
>         ◦ shard-tglu: [202]FAIL ([203]i915#6268) -> [204]PASS                   
>                                                                                 
>      • {igt@gem_ctx_freq@sysfs@gt0}:                                            
>                                                                                 
>         ◦ shard-dg2: [205]FAIL ([206]i915#6786) -> [207]PASS                    
>                                                                                 
>      • igt@gem_ctx_isolation@preservation-s3@vecs0:                             
>                                                                                 
>         ◦ shard-apl: [208]ABORT ([209]i915#180) -> [210]PASS                    
>                                                                                 
>      • igt@gem_eio@hibernate:                                                   
>                                                                                 
>         ◦ shard-dg1: [211]ABORT ([212]i915#4391 / [213]i915#7975 /              
>           [214]i915#8213) -> [215]PASS                                          
>                                                                                 
>      • igt@gem_eio@unwedge-stress:                                              
>                                                                                 
>         ◦ shard-dg1: [216]FAIL ([217]i915#5784) -> [218]PASS                    
>                                                                                 
>      • igt@gem_exec_capture@pi@vcs0:                                            
>                                                                                 
>         ◦ shard-mtlp: [219]FAIL ([220]i915#4475) -> [221]PASS                   
>                                                                                 
>      • igt@gem_exec_capture@pi@vcs1:                                            
>                                                                                 
>         ◦ shard-mtlp: [222]DMESG-WARN ([223]i915#8504) -> [224]PASS             
>                                                                                 
>      • igt@gem_exec_fair@basic-pace-share@rcs0:                                 
>                                                                                 
>         ◦ shard-rkl: [225]FAIL ([226]i915#2842) -> [227]PASS                    
>                                                                                 
>      • igt@i915_module_load@reload-with-fault-injection:                        
>                                                                                 
>         ◦ shard-dg2: [228]DMESG-WARN ([229]i915#7061 / [230]i915#8617) ->       
>           [231]PASS                                                             
>                                                                                 
>      • igt@i915_pm_rc6_residency@rc6-idle@rcs0:                                 
>                                                                                 
>         ◦ shard-dg1: [232]FAIL ([233]i915#3591) -> [234]PASS +2 similar         
>           issues                                                                
>                                                                                 
>      • igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0:                     
>                                                                                 
>         ◦ shard-dg1: [235]FAIL ([236]i915#7940) -> [237]PASS                    
>                                                                                 
>      • igt@i915_pm_rpm@modeset-lpsp-stress:                                     
>                                                                                 
>         ◦ shard-dg1: [238]SKIP ([239]i915#1397) -> [240]PASS                    
>                                                                                 
>      • igt@i915_pm_rpm@modeset-non-lpsp:                                        
>                                                                                 
>         ◦ shard-dg2: [241]SKIP ([242]i915#1397) -> [243]PASS                    
>                                                                                 
>      • igt@i915_pm_rpm@modeset-non-lpsp-stress:                                 
>                                                                                 
>         ◦ shard-rkl: [244]SKIP ([245]i915#1397) -> [246]PASS +2 similar         
>           issues                                                                
>                                                                                 
>      • igt@i915_pm_rpm@pm-caching:                                              
>                                                                                 
>         ◦ shard-tglu: [247]FAIL ([248]i915#7940) -> [249]PASS +1 similar        
>           issue                                                                 
>                                                                                 
>      • igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:        
>                                                                                 
>         ◦ shard-mtlp: [250]FAIL ([251]i915#3743) -> [252]PASS                   
>                                                                                 
>      • igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:                 
>                                                                                 
>         ◦ shard-glk: [253]FAIL ([254]i915#2346) -> [255]PASS                    
>                                                                                 
>      • igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2:                  
>                                                                                 
>         ◦ shard-glk: [256]FAIL ([257]i915#2122) -> [258]PASS                    
>                                                                                 
>      • igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1:                 
>                                                                                 
>         ◦ shard-apl: [259]FAIL ([260]i915#79) -> [261]PASS                      
>                                                                                 
>      • igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:                 
>                                                                                 
>         ◦ shard-dg2: [262]FAIL ([263]i915#6880) -> [264]PASS                    
>                                                                                 
>      • igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes:          
>                                                                                 
>         ◦ shard-dg2: [265]FAIL ([266]fdo#103375) -> [267]PASS +2 similar        
>           issues                                                                
>                                                                                 
>      • igt@perf_pmu@busy-double-start@vecs1:                                    
>                                                                                 
>         ◦ shard-dg2: [268]FAIL ([269]i915#4349) -> [270]PASS +3 similar         
>           issues                                                                
>                                                                                 
>     Warnings                                                                    
>                                                                                 
>      • igt@gem_exec_whisper@basic-contexts-forked-all:                          
>                                                                                 
>         ◦ shard-mtlp: [271]ABORT ([272]i915#8131) -> [273]TIMEOUT               
>           ([274]i915#8628)                                                      
>                                                                                 
>      • igt@i915_pm_rc6_residency@rc6-idle@rcs0:                                 
>                                                                                 
>         ◦ shard-tglu: [275]FAIL ([276]i915#2681 / [277]i915#3591) ->            
>           [278]WARN ([279]i915#2681)                                            
>                                                                                 
>      • igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:                                
>                                                                                 
>         ◦ shard-dg1: [280]SKIP ([281]i915#1397) -> [282]FAIL ([283]i915#7940)   
>                                                                                 
>      • igt@i915_pm_rpm@i2c:                                                     
>                                                                                 
>         ◦ shard-dg1: [284]DMESG-WARN ([285]i915#4391) -> [286]DMESG-WARN        
>           ([287]i915#4391 / [288]i915#4423)                                     
>                                                                                 
>      • igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:    
>                                                                                 
>         ◦ shard-mtlp: [289]DMESG-FAIL ([290]i915#2017 / [291]i915#5954) ->      
>           [292]FAIL ([293]i915#2346)                                            
>                                                                                 
>      • igt@kms_fbcon_fbt@psr:                                                   
>                                                                                 
>         ◦ shard-rkl: [294]SKIP ([295]fdo#110189 / [296]i915#3955) ->            
>           [297]SKIP ([298]i915#3955)                                            
>                                                                                 
>      • igt@kms_multipipe_modeset@basic-max-pipe-crc-check:                      
>                                                                                 
>         ◦ shard-rkl: [299]SKIP ([300]i915#4070 / [301]i915#4816) -> [302]SKIP   
>           ([303]i915#4816)                                                      
>                                                                                 
>      • igt@kms_psr@sprite_plane_onoff:                                          
>                                                                                 
>         ◦ shard-dg1: [304]SKIP ([305]i915#1072 / [306]i915#4078) -> [307]SKIP   
>           ([308]i915#1072)                                                      
>                                                                                 
>      • igt@sysfs_timeslice_duration@timeout@vecs0:                              
>                                                                                 
>         ◦ shard-mtlp: [309]ABORT ([310]i915#8521) -> [311]TIMEOUT               
>           ([312]i915#6950)                                                      
>                                                                                 
>    {name}: This element is suppressed. This means it is ignored when            
>    computing                                                                    
>    the status of the difference (SUCCESS, WARNING, or FAILURE).                 
>                                                                                 
> Build changes                                                                   
>                                                                                 
>      • Linux: CI_DRM_13432 -> Patchwork_121150v3                                
>                                                                                 
>    CI-20190529: 20190529                                                        
>    CI_DRM_13432: 069a79d6af09879060345da9f8b886a73b7810a8 @                     
>    git://anongit.freedesktop.org/gfx-ci/linux                                   
>    IGT_7406: 1d6fd796607099d189e85d1fd305160363b961f2 @                         
>    [313]https://gitlab.freedesktop.org/drm/igt-gpu-tools.git                    
>    Patchwork_121150v3: 069a79d6af09879060345da9f8b886a73b7810a8 @               
>    git://anongit.freedesktop.org/gfx-ci/linux                                   
>    piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @                      
>    git://anongit.freedesktop.org/piglit                                         
> 
> References
> 
>    Visible links
>    1. https://patchwork.freedesktop.org/series/121150/
>    2. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/index.html
>    3. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@sysfs_timeslice_duration@invalid.html
>    4. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@drm_fdinfo@virtual-busy.html
>    5. https://gitlab.freedesktop.org/drm/intel/issues/8414
>    6. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
>    7. https://gitlab.freedesktop.org/drm/intel/issues/5325
>    8. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl2/igt@gem_ctx_isolation@preservation-s3@rcs0.html
>    9. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl7/igt@gem_ctx_isolation@preservation-s3@rcs0.html
>   10. https://gitlab.freedesktop.org/drm/intel/issues/180
>   11. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb6/igt@gem_ctx_persistence@legacy-engines-queued.html
>   12. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   13. https://gitlab.freedesktop.org/drm/intel/issues/1099
>   14. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-3/igt@gem_eio@in-flight-suspend.html
>   15. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-5/igt@gem_eio@in-flight-suspend.html
>   16. https://bugs.freedesktop.org/show_bug.cgi?id=103375
>   17. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_eio@kms.html
>   18. https://gitlab.freedesktop.org/drm/intel/issues/5784
>   19. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-6/igt@gem_exec_await@wide-contexts.html
>   20. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-8/igt@gem_exec_await@wide-contexts.html
>   21. https://gitlab.freedesktop.org/drm/intel/issues/5892
>   22. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-5/igt@gem_exec_capture@capture@bcs0-smem.html
>   23. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@gem_exec_capture@capture@bcs0-smem.html
>   24. https://gitlab.freedesktop.org/drm/intel/issues/7941
>   25. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html
>   26. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html
>   27. https://gitlab.freedesktop.org/drm/intel/issues/2842
>   28. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_fair@basic-throttle.html
>   29. https://gitlab.freedesktop.org/drm/intel/issues/3539
>   30. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_flush@basic-wb-rw-before-default.html
>   31. https://gitlab.freedesktop.org/drm/intel/issues/3539
>   32. https://gitlab.freedesktop.org/drm/intel/issues/4852
>   33. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_exec_reloc@basic-cpu-wc-active.html
>   34. https://gitlab.freedesktop.org/drm/intel/issues/3281
>   35. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_reloc@basic-wc-read-active.html
>   36. https://gitlab.freedesktop.org/drm/intel/issues/3281
>   37. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-contexts.html
>   38. https://gitlab.freedesktop.org/drm/intel/issues/4812
>   39. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_fenced_exec_thrash@no-spare-fences.html
>   40. https://gitlab.freedesktop.org/drm/intel/issues/4860
>   41. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_lmem_swapping@smem-oom.html
>   42. https://gitlab.freedesktop.org/drm/intel/issues/4613
>   43. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_mmap@short-mmap.html
>   44. https://gitlab.freedesktop.org/drm/intel/issues/4083
>   45. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_mmap_gtt@basic-read-write.html
>   46. https://gitlab.freedesktop.org/drm/intel/issues/4077
>   47. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_mmap_gtt@cpuset-big-copy-xy.html
>   48. https://gitlab.freedesktop.org/drm/intel/issues/4077
>   49. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_readwrite@read-write.html
>   50. https://gitlab.freedesktop.org/drm/intel/issues/3282
>   51. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html
>   52. https://gitlab.freedesktop.org/drm/intel/issues/8428
>   53. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_softpin@evict-snoop.html
>   54. https://gitlab.freedesktop.org/drm/intel/issues/4885
>   55. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_userptr_blits@forbidden-operations.html
>   56. https://gitlab.freedesktop.org/drm/intel/issues/3282
>   57. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
>   58. https://gitlab.freedesktop.org/drm/intel/issues/3297
>   59. https://gitlab.freedesktop.org/drm/intel/issues/4880
>   60. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gen9_exec_parse@basic-rejected-ctx-param.html
>   61. https://gitlab.freedesktop.org/drm/intel/issues/2527
>   62. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@i915_pm_dc@dc6-dpms.html
>   63. https://gitlab.freedesktop.org/drm/intel/issues/3361
>   64. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-10/igt@i915_pm_dc@dc9-dpms.html
>   65. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-7/igt@i915_pm_dc@dc9-dpms.html
>   66. https://gitlab.freedesktop.org/drm/intel/issues/4281
>   67. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
>   68. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
>   69. https://gitlab.freedesktop.org/drm/intel/issues/1937
>   70. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@i915_pm_lpsp@screens-disabled.html
>   71. https://gitlab.freedesktop.org/drm/intel/issues/1902
>   72. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@basic-pci-d3-state.html
>   73. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@i915_pm_rpm@basic-pci-d3-state.html
>   74. https://gitlab.freedesktop.org/drm/intel/issues/7691
>   75. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@dpms-lpsp.html
>   76. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@dpms-lpsp.html
>   77. https://gitlab.freedesktop.org/drm/intel/issues/1397
>   78. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-9/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
>   79. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-4/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
>   80. https://gitlab.freedesktop.org/drm/intel/issues/7940
>   81. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-1/igt@i915_pm_rpm@i2c.html
>   82. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-2/igt@i915_pm_rpm@i2c.html
>   83. https://gitlab.freedesktop.org/drm/intel/issues/8717
>   84. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
>   85. https://gitlab.freedesktop.org/drm/intel/issues/5190
>   86. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_addfb_basic@basic-x-tiled-legacy.html
>   87. https://gitlab.freedesktop.org/drm/intel/issues/4212
>   88. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-10/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html
>   89. https://gitlab.freedesktop.org/drm/intel/issues/8247
>   90. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html
>   91. https://gitlab.freedesktop.org/drm/intel/issues/8247
>   92. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
>   93. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   94. https://gitlab.freedesktop.org/drm/intel/issues/1769
>   95. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
>   96. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
>   97. https://gitlab.freedesktop.org/drm/intel/issues/5138
>   98. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
>   99. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
>  100. https://gitlab.freedesktop.org/drm/intel/issues/3743
>  101. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
>  102. https://bugs.freedesktop.org/show_bug.cgi?id=111614
>  103. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
>  104. https://gitlab.freedesktop.org/drm/intel/issues/3638
>  105. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
>  106. https://bugs.freedesktop.org/show_bug.cgi?id=111615
>  107. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_big_joiner@basic.html
>  108. https://gitlab.freedesktop.org/drm/intel/issues/2705
>  109. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs.html
>  110. https://gitlab.freedesktop.org/drm/intel/issues/6095
>  111. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs.html
>  112. https://gitlab.freedesktop.org/drm/intel/issues/3689
>  113. https://gitlab.freedesktop.org/drm/intel/issues/5354
>  114. https://gitlab.freedesktop.org/drm/intel/issues/6095
>  115. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html
>  116. https://gitlab.freedesktop.org/drm/intel/issues/3689
>  117. https://gitlab.freedesktop.org/drm/intel/issues/3886
>  118. https://gitlab.freedesktop.org/drm/intel/issues/5354
>  119. https://gitlab.freedesktop.org/drm/intel/issues/6095
>  120. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html
>  121. https://gitlab.freedesktop.org/drm/intel/issues/3886
>  122. https://gitlab.freedesktop.org/drm/intel/issues/6095
>  123. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html
>  124. https://gitlab.freedesktop.org/drm/intel/issues/5354
>  125. https://gitlab.freedesktop.org/drm/intel/issues/6095
>  126. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html
>  127. https://gitlab.freedesktop.org/drm/intel/issues/7213
>  128. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
>  129. https://gitlab.freedesktop.org/drm/intel/issues/4087
>  130. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
>  131. https://gitlab.freedesktop.org/drm/intel/issues/7828
>  132. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
>  133. https://gitlab.freedesktop.org/drm/intel/issues/7828
>  134. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-1.html
>  135. https://gitlab.freedesktop.org/drm/intel/issues/3299
>  136. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html
>  137. https://gitlab.freedesktop.org/drm/intel/issues/7173
>  138. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
>  139. https://gitlab.freedesktop.org/drm/intel/issues/3555
>  140. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html
>  141. https://bugs.freedesktop.org/show_bug.cgi?id=103375
>  142. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
>  143. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
>  144. https://gitlab.freedesktop.org/drm/intel/issues/8248
>  145. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
>  146. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>  147. https://bugs.freedesktop.org/show_bug.cgi?id=111767
>  148. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
>  149. https://gitlab.freedesktop.org/drm/intel/issues/2346
>  150. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
>  151. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
>  152. https://gitlab.freedesktop.org/drm/intel/issues/2346
>  153. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_dsc@dsc-with-output-formats.html
>  154. https://gitlab.freedesktop.org/drm/intel/issues/3555
>  155. https://gitlab.freedesktop.org/drm/intel/issues/3840
>  156. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
>  157. https://gitlab.freedesktop.org/drm/intel/issues/3637
>  158. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb1/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
>  159. https://gitlab.freedesktop.org/drm/intel/issues/8841
>  160. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode.html
>  161. https://gitlab.freedesktop.org/drm/intel/issues/2672
>  162. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html
>  163. https://gitlab.freedesktop.org/drm/intel/issues/8708
>  164. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
>  165. https://bugs.freedesktop.org/show_bug.cgi?id=111825
>  166. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
>  167. https://gitlab.freedesktop.org/drm/intel/issues/1825
>  168. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
>  169. https://gitlab.freedesktop.org/drm/intel/issues/3458
>  170. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-7/igt@kms_hdr@static-swap.html
>  171. https://gitlab.freedesktop.org/drm/intel/issues/3555
>  172. https://gitlab.freedesktop.org/drm/intel/issues/8228
>  173. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@kms_plane@pixel-format@pipe-b-planes.html
>  174. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@kms_plane@pixel-format@pipe-b-planes.html
>  175. https://gitlab.freedesktop.org/drm/intel/issues/1623
>  176. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2.html
>  177. https://gitlab.freedesktop.org/drm/intel/issues/5176
>  178. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4.html
>  179. https://gitlab.freedesktop.org/drm/intel/issues/5176
>  180. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html
>  181. https://gitlab.freedesktop.org/drm/intel/issues/5235
>  182. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html
>  183. https://gitlab.freedesktop.org/drm/intel/issues/5235
>  184. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb7/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html
>  185. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>  186. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2.html
>  187. https://gitlab.freedesktop.org/drm/intel/issues/5235
>  188. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1.html
>  189. https://gitlab.freedesktop.org/drm/intel/issues/5235
>  190. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_psr@dpms.html
>  191. https://gitlab.freedesktop.org/drm/intel/issues/1072
>  192. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_vblank@pipe-c-wait-busy-hang.html
>  193. https://gitlab.freedesktop.org/drm/intel/issues/6768
>  194. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@v3d/v3d_submit_cl@single-in-sync.html
>  195. https://gitlab.freedesktop.org/drm/intel/issues/2575
>  196. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@v3d/v3d_submit_csd@job-perfmon.html
>  197. https://gitlab.freedesktop.org/drm/intel/issues/2575
>  198. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@vc4/vc4_tiling@get-bad-flags.html
>  199. https://gitlab.freedesktop.org/drm/intel/issues/7711
>  200. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@vc4/vc4_tiling@set-bad-flags.html
>  201. https://gitlab.freedesktop.org/drm/intel/issues/7711
>  202. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html
>  203. https://gitlab.freedesktop.org/drm/intel/issues/6268
>  204. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html
>  205. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html
>  206. https://gitlab.freedesktop.org/drm/intel/issues/6786
>  207. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@gem_ctx_freq@sysfs@gt0.html
>  208. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl2/igt@gem_ctx_isolation@preservation-s3@vecs0.html
>  209. https://gitlab.freedesktop.org/drm/intel/issues/180
>  210. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl7/igt@gem_ctx_isolation@preservation-s3@vecs0.html
>  211. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-14/igt@gem_eio@hibernate.html
>  212. https://gitlab.freedesktop.org/drm/intel/issues/4391
>  213. https://gitlab.freedesktop.org/drm/intel/issues/7975
>  214. https://gitlab.freedesktop.org/drm/intel/issues/8213
>  215. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_eio@hibernate.html
>  216. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-16/igt@gem_eio@unwedge-stress.html
>  217. https://gitlab.freedesktop.org/drm/intel/issues/5784
>  218. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-17/igt@gem_eio@unwedge-stress.html
>  219. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@gem_exec_capture@pi@vcs0.html
>  220. https://gitlab.freedesktop.org/drm/intel/issues/4475
>  221. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-4/igt@gem_exec_capture@pi@vcs0.html
>  222. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@gem_exec_capture@pi@vcs1.html
>  223. https://gitlab.freedesktop.org/drm/intel/issues/8504
>  224. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-4/igt@gem_exec_capture@pi@vcs1.html
>  225. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
>  226. https://gitlab.freedesktop.org/drm/intel/issues/2842
>  227. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@gem_exec_fair@basic-pace-share@rcs0.html
>  228. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html
>  229. https://gitlab.freedesktop.org/drm/intel/issues/7061
>  230. https://gitlab.freedesktop.org/drm/intel/issues/8617
>  231. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
>  232. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
>  233. https://gitlab.freedesktop.org/drm/intel/issues/3591
>  234. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
>  235. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
>  236. https://gitlab.freedesktop.org/drm/intel/issues/7940
>  237. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
>  238. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rpm@modeset-lpsp-stress.html
>  239. https://gitlab.freedesktop.org/drm/intel/issues/1397
>  240. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress.html
>  241. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp.html
>  242. https://gitlab.freedesktop.org/drm/intel/issues/1397
>  243. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-8/igt@i915_pm_rpm@modeset-non-lpsp.html
>  244. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
>  245. https://gitlab.freedesktop.org/drm/intel/issues/1397
>  246. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
>  247. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-2/igt@i915_pm_rpm@pm-caching.html
>  248. https://gitlab.freedesktop.org/drm/intel/issues/7940
>  249. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-8/igt@i915_pm_rpm@pm-caching.html
>  250. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
>  251. https://gitlab.freedesktop.org/drm/intel/issues/3743
>  252. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
>  253. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
>  254. https://gitlab.freedesktop.org/drm/intel/issues/2346
>  255. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
>  256. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-glk3/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
>  257. https://gitlab.freedesktop.org/drm/intel/issues/2122
>  258. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
>  259. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html
>  260. https://gitlab.freedesktop.org/drm/intel/issues/79
>  261. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html
>  262. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
>  263. https://gitlab.freedesktop.org/drm/intel/issues/6880
>  264. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
>  265. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
>  266. https://bugs.freedesktop.org/show_bug.cgi?id=103375
>  267. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
>  268. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-2/igt@perf_pmu@busy-double-start@vecs1.html
>  269. https://gitlab.freedesktop.org/drm/intel/issues/4349
>  270. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
>  271. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-forked-all.html
>  272. https://gitlab.freedesktop.org/drm/intel/issues/8131
>  273. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_exec_whisper@basic-contexts-forked-all.html
>  274. https://gitlab.freedesktop.org/drm/intel/issues/8628
>  275. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
>  276. https://gitlab.freedesktop.org/drm/intel/issues/2681
>  277. https://gitlab.freedesktop.org/drm/intel/issues/3591
>  278. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
>  279. https://gitlab.freedesktop.org/drm/intel/issues/2681
>  280. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
>  281. https://gitlab.freedesktop.org/drm/intel/issues/1397
>  282. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
>  283. https://gitlab.freedesktop.org/drm/intel/issues/7940
>  284. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@i2c.html
>  285. https://gitlab.freedesktop.org/drm/intel/issues/4391
>  286. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@i2c.html
>  287. https://gitlab.freedesktop.org/drm/intel/issues/4391
>  288. https://gitlab.freedesktop.org/drm/intel/issues/4423
>  289. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
>  290. https://gitlab.freedesktop.org/drm/intel/issues/2017
>  291. https://gitlab.freedesktop.org/drm/intel/issues/5954
>  292. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
>  293. https://gitlab.freedesktop.org/drm/intel/issues/2346
>  294. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
>  295. https://bugs.freedesktop.org/show_bug.cgi?id=110189
>  296. https://gitlab.freedesktop.org/drm/intel/issues/3955
>  297. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
>  298. https://gitlab.freedesktop.org/drm/intel/issues/3955
>  299. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
>  300. https://gitlab.freedesktop.org/drm/intel/issues/4070
>  301. https://gitlab.freedesktop.org/drm/intel/issues/4816
>  302. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
>  303. https://gitlab.freedesktop.org/drm/intel/issues/4816
>  304. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-18/igt@kms_psr@sprite_plane_onoff.html
>  305. https://gitlab.freedesktop.org/drm/intel/issues/1072
>  306. https://gitlab.freedesktop.org/drm/intel/issues/4078
>  307. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@kms_psr@sprite_plane_onoff.html
>  308. https://gitlab.freedesktop.org/drm/intel/issues/1072
>  309. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-6/igt@sysfs_timeslice_duration@timeout@vecs0.html
>  310. https://gitlab.freedesktop.org/drm/intel/issues/8521
>  311. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@sysfs_timeslice_duration@timeout@vecs0.html
>  312. https://gitlab.freedesktop.org/drm/intel/issues/6950
>  313. https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Vinay Belgaumkar Aug. 11, 2023, 5:54 p.m. UTC | #4
On 8/10/2023 5:22 PM, Rodrigo Vivi wrote:
> On Wed, Aug 02, 2023 at 12:41:09AM +0000, Belgaumkar, Vinay wrote:
>>                                                                                  
>>                                                                                  
>>                                                                                  
>>                                                                                  
>>     From: Patchwork <patchwork@emeril.freedesktop.org>
>>     Sent: Thursday, July 27, 2023 6:59 PM
>>     To: Belgaumkar, Vinay <vinay.belgaumkar@intel.com>
>>     Cc: intel-gfx@lists.freedesktop.org
>>     Subject: ✗ Fi.CI.IGT: failure for drm/i915/guc/slpc: Restore efficient
>>     freq earlier (rev3)
>>                                                                                  
>>                                                                                  
>>                                                                                  
>>     Patch Details
>>                                                                                  
>> Series:  drm/i915/guc/slpc: Restore efficient freq earlier (rev3)
>> URL:     [1]https://patchwork.freedesktop.org/series/121150/
>> State:   failure
>> Details: [2]https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/index.html
>>                                                                                  
>>       CI Bug Log - changes from CI_DRM_13432_full -> Patchwork_121150v3_full
>>                                                                                  
>> Summary
>>                                                                                  
>>     FAILURE
>>                                                                                  
>>     Serious unknown changes coming with Patchwork_121150v3_full absolutely
>>     need to be
>>     verified manually.
>>                                                                                  
>>     If you think the reported changes have nothing to do with the changes
>>     introduced in Patchwork_121150v3_full, please notify your bug team to
>>     allow them
>>     to document this new failure mode, which will reduce false positives in
>>     CI.
>>                                                                                  
>> Participating hosts (10 -> 10)
>>                                                                                  
>>     No changes in participating hosts
>>                                                                                  
>> Possible new issues
>>                                                                                  
>>     Here are the unknown changes that may have been introduced in
>>     Patchwork_121150v3_full:
>>                                                                                  
>>    IGT changes
>>                                                                                  
>>      Possible regressions
>>                                                                                  
>>       • igt@sysfs_timeslice_duration@invalid:
>>                                                                                  
>>          ◦ shard-mtlp: NOTRUN -> [3]TIMEOUT
>>                                                                                  
>>     Does not seem related to this patch.
> But i915_selftests@live@workarounds seems to fail on every platform after I cherry
> picked this patch to drm-intel-fixes:
>
> http://gfx-ci.igk.intel.com/tree/drm-intel-fixes/combined-alt.html?
>
> <5> [314.508910] i915 0000:00:02.0: [drm] Resetting chip for live_workarounds
> <6> [314.511971] i915 0000:00:02.0: [drm] GT0: GuC firmware i915/mtl_guc_70.bin version 70.8.0
> <7> [314.523625] i915 0000:00:02.0: [drm:intel_guc_fw_upload [i915]] GT0: GUC: init took 8ms, freq = 2250MHz, before = 2250MHz, status = 0x8002F034, count = 0, ret = 0
> <7> [314.526596] i915 0000:00:02.0: [drm:guc_enable_communication [i915]] GT0: GUC: communication enabled
> <6> [314.531291] i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
> <6> [314.531324] i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
> <6> [314.576597] i915: Running intel_workarounds_live_selftests/live_engine_reset_workarounds
> <7> [314.576715] MCR Steering: L3BANK steering: group=0x0, instance=0x0
> <7> [314.576736] MCR Steering: DSS steering: group=0x0, instance=0x0
> <7> [314.576751] MCR Steering: INSTANCE 0 steering: group=0x0, instance=0x0
> <7> [314.576818] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 5 GT_REF workarounds on global
> <7> [314.578192] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 5 REF workarounds on rcs0
> <7> [314.579454] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 6 CTX_REF workarounds on rcs0
> <7> [314.580487] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 1 REF workarounds on bcs0
> <7> [314.581449] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 2 CTX_REF workarounds on bcs0
> <7> [314.582206] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 1 REF workarounds on ccs0
> <7> [314.583122] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 1 CTX_REF workarounds on ccs0
> <6> [314.584067] Verifying after rcs0 reset...
> <7> [314.609843] i915 0000:00:02.0: [drm:intel_guc_context_reset_process_msg [i915]] GT0: GUC: Got context reset notification: 0x1002 on rcs0, exiting = no, banned = no
> <6> [314.777958] i915 0000:00:02.0: [drm] GPU HANG: ecode 12:0:00000000
> <6> [314.792928] Verifying after bcs0 reset...
> <3> [325.082480] i915/intel_workarounds_live_selftests: live_engine_reset_workarounds failed with error -62
>
> could you please help to understand what is going on here?

Looks like this is a known bug and has been failing for months - 
https://gitlab.freedesktop.org/drm/intel/-/issues/6763

Thanks,

Vinay.

>
> Thanks,
> Rodrigo.
>
>>                                                                                  
>>     Thanks,
>>                                                                                  
>>     Vinay.
>>                                                                                  
>> Known issues
>>                                                                                  
>>     Here are the changes found in Patchwork_121150v3_full that come from known
>>     issues:
>>                                                                                  
>>    IGT changes
>>                                                                                  
>>      Issues hit
>>                                                                                  
>>       • igt@drm_fdinfo@virtual-busy:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [4]SKIP ([5]i915#8414)
>>                                                                                  
>>       • igt@gem_ccs@ctrl-surf-copy-new-ctx:
>>                                                                                  
>>          ◦ shard-mtlp: NOTRUN -> [6]SKIP ([7]i915#5325)
>>                                                                                  
>>       • igt@gem_ctx_isolation@preservation-s3@rcs0:
>>                                                                                  
>>          ◦ shard-apl: [8]PASS -> [9]ABORT ([10]i915#180)
>>                                                                                  
>>       • igt@gem_ctx_persistence@legacy-engines-queued:
>>                                                                                  
>>          ◦ shard-snb: NOTRUN -> [11]SKIP ([12]fdo#109271 / [13]i915#1099) +4
>>            similar issues
>>                                                                                  
>>       • igt@gem_eio@in-flight-suspend:
>>                                                                                  
>>          ◦ shard-dg2: [14]PASS -> [15]FAIL ([16]fdo#103375)
>>                                                                                  
>>       • igt@gem_eio@kms:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [17]FAIL ([18]i915#5784)
>>                                                                                  
>>       • igt@gem_exec_await@wide-contexts:
>>                                                                                  
>>          ◦ shard-dg2: [19]PASS -> [20]FAIL ([21]i915#5892)
>>                                                                                  
>>       • igt@gem_exec_capture@capture@bcs0-smem:
>>                                                                                  
>>          ◦ shard-mtlp: [22]PASS -> [23]TIMEOUT ([24]i915#7941)
>>                                                                                  
>>       • igt@gem_exec_fair@basic-pace@rcs0:
>>                                                                                  
>>          ◦ shard-rkl: [25]PASS -> [26]FAIL ([27]i915#2842)
>>                                                                                  
>>       • igt@gem_exec_fair@basic-throttle:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [28]SKIP ([29]i915#3539)
>>                                                                                  
>>       • igt@gem_exec_flush@basic-wb-rw-before-default:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [30]SKIP ([31]i915#3539 / [32]i915#4852)
>>                                                                                  
>>       • igt@gem_exec_reloc@basic-cpu-wc-active:
>>                                                                                  
>>          ◦ shard-mtlp: NOTRUN -> [33]SKIP ([34]i915#3281) +1 similar issue
>>                                                                                  
>>       • igt@gem_exec_reloc@basic-wc-read-active:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [35]SKIP ([36]i915#3281)
>>                                                                                  
>>       • igt@gem_exec_schedule@preempt-queue-contexts:
>>                                                                                  
>>          ◦ shard-mtlp: NOTRUN -> [37]SKIP ([38]i915#4812)
>>                                                                                  
>>       • igt@gem_fenced_exec_thrash@no-spare-fences:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [39]SKIP ([40]i915#4860)
>>                                                                                  
>>       • igt@gem_lmem_swapping@smem-oom:
>>                                                                                  
>>          ◦ shard-mtlp: NOTRUN -> [41]SKIP ([42]i915#4613)
>>                                                                                  
>>       • igt@gem_mmap@short-mmap:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [43]SKIP ([44]i915#4083)
>>                                                                                  
>>       • igt@gem_mmap_gtt@basic-read-write:
>>                                                                                  
>>          ◦ shard-mtlp: NOTRUN -> [45]SKIP ([46]i915#4077)
>>                                                                                  
>>       • igt@gem_mmap_gtt@cpuset-big-copy-xy:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [47]SKIP ([48]i915#4077)
>>                                                                                  
>>       • igt@gem_readwrite@read-write:
>>                                                                                  
>>          ◦ shard-mtlp: NOTRUN -> [49]SKIP ([50]i915#3282)
>>                                                                                  
>>       • igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
>>                                                                                  
>>          ◦ shard-mtlp: NOTRUN -> [51]SKIP ([52]i915#8428) +1 similar issue
>>                                                                                  
>>       • igt@gem_softpin@evict-snoop:
>>                                                                                  
>>          ◦ shard-mtlp: NOTRUN -> [53]SKIP ([54]i915#4885)
>>                                                                                  
>>       • igt@gem_userptr_blits@forbidden-operations:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [55]SKIP ([56]i915#3282)
>>                                                                                  
>>       • igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [57]SKIP ([58]i915#3297 / [59]i915#4880)
>>                                                                                  
>>       • igt@gen9_exec_parse@basic-rejected-ctx-param:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [60]SKIP ([61]i915#2527)
>>                                                                                  
>>       • igt@i915_pm_dc@dc6-dpms:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [62]SKIP ([63]i915#3361)
>>                                                                                  
>>       • igt@i915_pm_dc@dc9-dpms:
>>                                                                                  
>>          ◦ shard-tglu: [64]PASS -> [65]SKIP ([66]i915#4281)
>>                                                                                  
>>       • igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
>>                                                                                  
>>          ◦ shard-rkl: [67]PASS -> [68]SKIP ([69]i915#1937)
>>                                                                                  
>>       • igt@i915_pm_lpsp@screens-disabled:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [70]SKIP ([71]i915#1902)
>>                                                                                  
>>       • igt@i915_pm_rpm@basic-pci-d3-state:
>>                                                                                  
>>          ◦ shard-dg1: [72]PASS -> [73]FAIL ([74]i915#7691)
>>                                                                                  
>>       • igt@i915_pm_rpm@dpms-lpsp:
>>                                                                                  
>>          ◦ shard-dg1: [75]PASS -> [76]SKIP ([77]i915#1397) +1 similar issue
>>                                                                                  
>>       • igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0:
>>                                                                                  
>>          ◦ shard-tglu: [78]PASS -> [79]FAIL ([80]i915#7940)
>>                                                                                  
>>       • igt@i915_pm_rpm@i2c:
>>                                                                                  
>>          ◦ shard-dg2: [81]PASS -> [82]FAIL ([83]i915#8717)
>>                                                                                  
>>       • igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
>>                                                                                  
>>          ◦ shard-mtlp: NOTRUN -> [84]SKIP ([85]i915#5190)
>>                                                                                  
>>       • igt@kms_addfb_basic@basic-x-tiled-legacy:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [86]SKIP ([87]i915#4212)
>>                                                                                  
>>       • igt@kms_async_flips@crc@pipe-b-hdmi-a-1:
>>                                                                                  
>>          ◦ shard-dg2: NOTRUN -> [88]FAIL ([89]i915#8247) +3 similar issues
>>                                                                                  
>>       • igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [90]FAIL ([91]i915#8247) +3 similar issues
>>                                                                                  
>>       • igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
>>                                                                                  
>>          ◦ shard-snb: NOTRUN -> [92]SKIP ([93]fdo#109271 / [94]i915#1769)
>>                                                                                  
>>       • igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
>>                                                                                  
>>          ◦ shard-mtlp: [95]PASS -> [96]FAIL ([97]i915#5138)
>>                                                                                  
>>       • igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
>>                                                                                  
>>          ◦ shard-mtlp: [98]PASS -> [99]FAIL ([100]i915#3743) +1 similar issue
>>                                                                                  
>>       • igt@kms_big_fb@x-tiled-16bpp-rotate-90:
>>                                                                                  
>>          ◦ shard-mtlp: NOTRUN -> [101]SKIP ([102]fdo#111614)
>>                                                                                  
>>       • igt@kms_big_fb@x-tiled-64bpp-rotate-270:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [103]SKIP ([104]i915#3638)
>>                                                                                  
>>       • igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
>>                                                                                  
>>          ◦ shard-mtlp: NOTRUN -> [105]SKIP ([106]fdo#111615)
>>                                                                                  
>>       • igt@kms_big_joiner@basic:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [107]SKIP ([108]i915#2705)
>>                                                                                  
>>       • igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs:
>>                                                                                  
>>          ◦ shard-mtlp: NOTRUN -> [109]SKIP ([110]i915#6095) +4 similar issues
>>                                                                                  
>>       • igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [111]SKIP ([112]i915#3689 / [113]i915#5354 /
>>            [114]i915#6095) +2 similar issues
>>                                                                                  
>>       • igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [115]SKIP ([116]i915#3689 / [117]i915#3886 /
>>            [118]i915#5354 / [119]i915#6095)
>>                                                                                  
>>       • igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:
>>                                                                                  
>>          ◦ shard-mtlp: NOTRUN -> [120]SKIP ([121]i915#3886 / [122]i915#6095)
>>            +1 similar issue
>>                                                                                  
>>       • igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [123]SKIP ([124]i915#5354 / [125]i915#6095) +3
>>            similar issues
>>                                                                                  
>>       • igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2:
>>                                                                                  
>>          ◦ shard-dg2: NOTRUN -> [126]SKIP ([127]i915#7213) +3 similar issues
>>                                                                                  
>>       • igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
>>                                                                                  
>>          ◦ shard-dg2: NOTRUN -> [128]SKIP ([129]i915#4087) +3 similar issues
>>                                                                                  
>>       • igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
>>                                                                                  
>>          ◦ shard-mtlp: NOTRUN -> [130]SKIP ([131]i915#7828) +1 similar issue
>>                                                                                  
>>       • igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [132]SKIP ([133]i915#7828) +2 similar issues
>>                                                                                  
>>       • igt@kms_content_protection@dp-mst-type-1:
>>                                                                                  
>>          ◦ shard-mtlp: NOTRUN -> [134]SKIP ([135]i915#3299)
>>                                                                                  
>>       • igt@kms_content_protection@lic@pipe-a-dp-4:
>>                                                                                  
>>          ◦ shard-dg2: NOTRUN -> [136]TIMEOUT ([137]i915#7173)
>>                                                                                  
>>       • igt@kms_cursor_crc@cursor-rapid-movement-32x32:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [138]SKIP ([139]i915#3555)
>>                                                                                  
>>       • igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1:
>>                                                                                  
>>          ◦ shard-mtlp: NOTRUN -> [140]FAIL ([141]fdo#103375)
>>                                                                                  
>>       • igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
>>                                                                                  
>>          ◦ shard-mtlp: [142]PASS -> [143]FAIL ([144]i915#8248)
>>                                                                                  
>>       • igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
>>                                                                                  
>>          ◦ shard-snb: NOTRUN -> [145]SKIP ([146]fdo#109271 / [147]fdo#111767)
>>                                                                                  
>>       • igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
>>                                                                                  
>>          ◦ shard-mtlp: NOTRUN -> [148]FAIL ([149]i915#2346)
>>                                                                                  
>>       • igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
>>                                                                                  
>>          ◦ shard-apl: [150]PASS -> [151]FAIL ([152]i915#2346)
>>                                                                                  
>>       • igt@kms_dsc@dsc-with-output-formats:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [153]SKIP ([154]i915#3555 / [155]i915#3840)
>>                                                                                  
>>       • igt@kms_flip@2x-flip-vs-suspend-interruptible:
>>                                                                                  
>>          ◦ shard-mtlp: NOTRUN -> [156]SKIP ([157]i915#3637)
>>                                                                                  
>>       • igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
>>                                                                                  
>>          ◦ shard-snb: NOTRUN -> [158]DMESG-WARN ([159]i915#8841) +1 similar
>>            issue
>>                                                                                  
>>       • igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode:
>>                                                                                  
>>          ◦ shard-mtlp: NOTRUN -> [160]SKIP ([161]i915#2672)
>>                                                                                  
>>       • igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [162]SKIP ([163]i915#8708) +3 similar issues
>>                                                                                  
>>       • igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [164]SKIP ([165]fdo#111825) +8 similar issues
>>                                                                                  
>>       • igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
>>                                                                                  
>>          ◦ shard-mtlp: NOTRUN -> [166]SKIP ([167]i915#1825) +8 similar issues
>>                                                                                  
>>       • igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [168]SKIP ([169]i915#3458) +2 similar issues
>>                                                                                  
>>       • igt@kms_hdr@static-swap:
>>                                                                                  
>>          ◦ shard-dg2: NOTRUN -> [170]SKIP ([171]i915#3555 / [172]i915#8228)
>>                                                                                  
>>       • igt@kms_plane@pixel-format@pipe-b-planes:
>>                                                                                  
>>          ◦ shard-mtlp: [173]PASS -> [174]FAIL ([175]i915#1623)
>>                                                                                  
>>       • igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2:
>>                                                                                  
>>          ◦ shard-rkl: NOTRUN -> [176]SKIP ([177]i915#5176) +5 similar issues
>>                                                                                  
>>       • igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [178]SKIP ([179]i915#5176) +15 similar issues
>>                                                                                  
>>       • igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [180]SKIP ([181]i915#5235) +3 similar issues
>>                                                                                  
>>       • igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
>>                                                                                  
>>          ◦ shard-dg2: NOTRUN -> [182]SKIP ([183]i915#5235) +7 similar issues
>>                                                                                  
>>       • igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1:
>>                                                                                  
>>          ◦ shard-snb: NOTRUN -> [184]SKIP ([185]fdo#109271) +278 similar
>>            issues
>>                                                                                  
>>       • igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2:
>>                                                                                  
>>          ◦ shard-rkl: NOTRUN -> [186]SKIP ([187]i915#5235) +7 similar issues
>>                                                                                  
>>       • igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1:
>>                                                                                  
>>          ◦ shard-mtlp: NOTRUN -> [188]SKIP ([189]i915#5235) +3 similar issues
>>                                                                                  
>>       • igt@kms_psr@dpms:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [190]SKIP ([191]i915#1072)
>>                                                                                  
>>       • igt@kms_vblank@pipe-c-wait-busy-hang:
>>                                                                                  
>>          ◦ shard-mtlp: NOTRUN -> [192]SKIP ([193]i915#6768)
>>                                                                                  
>>       • igt@v3d/v3d_submit_cl@single-in-sync:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [194]SKIP ([195]i915#2575)
>>                                                                                  
>>       • igt@v3d/v3d_submit_csd@job-perfmon:
>>                                                                                  
>>          ◦ shard-mtlp: NOTRUN -> [196]SKIP ([197]i915#2575) +3 similar issues
>>                                                                                  
>>       • igt@vc4/vc4_tiling@get-bad-flags:
>>                                                                                  
>>          ◦ shard-dg1: NOTRUN -> [198]SKIP ([199]i915#7711)
>>                                                                                  
>>       • igt@vc4/vc4_tiling@set-bad-flags:
>>                                                                                  
>>          ◦ shard-mtlp: NOTRUN -> [200]SKIP ([201]i915#7711)
>>                                                                                  
>>      Possible fixes
>>                                                                                  
>>       • igt@gem_ctx_exec@basic-nohangcheck:
>>                                                                                  
>>          ◦ shard-tglu: [202]FAIL ([203]i915#6268) -> [204]PASS
>>                                                                                  
>>       • {igt@gem_ctx_freq@sysfs@gt0}:
>>                                                                                  
>>          ◦ shard-dg2: [205]FAIL ([206]i915#6786) -> [207]PASS
>>                                                                                  
>>       • igt@gem_ctx_isolation@preservation-s3@vecs0:
>>                                                                                  
>>          ◦ shard-apl: [208]ABORT ([209]i915#180) -> [210]PASS
>>                                                                                  
>>       • igt@gem_eio@hibernate:
>>                                                                                  
>>          ◦ shard-dg1: [211]ABORT ([212]i915#4391 / [213]i915#7975 /
>>            [214]i915#8213) -> [215]PASS
>>                                                                                  
>>       • igt@gem_eio@unwedge-stress:
>>                                                                                  
>>          ◦ shard-dg1: [216]FAIL ([217]i915#5784) -> [218]PASS
>>                                                                                  
>>       • igt@gem_exec_capture@pi@vcs0:
>>                                                                                  
>>          ◦ shard-mtlp: [219]FAIL ([220]i915#4475) -> [221]PASS
>>                                                                                  
>>       • igt@gem_exec_capture@pi@vcs1:
>>                                                                                  
>>          ◦ shard-mtlp: [222]DMESG-WARN ([223]i915#8504) -> [224]PASS
>>                                                                                  
>>       • igt@gem_exec_fair@basic-pace-share@rcs0:
>>                                                                                  
>>          ◦ shard-rkl: [225]FAIL ([226]i915#2842) -> [227]PASS
>>                                                                                  
>>       • igt@i915_module_load@reload-with-fault-injection:
>>                                                                                  
>>          ◦ shard-dg2: [228]DMESG-WARN ([229]i915#7061 / [230]i915#8617) ->
>>            [231]PASS
>>                                                                                  
>>       • igt@i915_pm_rc6_residency@rc6-idle@rcs0:
>>                                                                                  
>>          ◦ shard-dg1: [232]FAIL ([233]i915#3591) -> [234]PASS +2 similar
>>            issues
>>                                                                                  
>>       • igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0:
>>                                                                                  
>>          ◦ shard-dg1: [235]FAIL ([236]i915#7940) -> [237]PASS
>>                                                                                  
>>       • igt@i915_pm_rpm@modeset-lpsp-stress:
>>                                                                                  
>>          ◦ shard-dg1: [238]SKIP ([239]i915#1397) -> [240]PASS
>>                                                                                  
>>       • igt@i915_pm_rpm@modeset-non-lpsp:
>>                                                                                  
>>          ◦ shard-dg2: [241]SKIP ([242]i915#1397) -> [243]PASS
>>                                                                                  
>>       • igt@i915_pm_rpm@modeset-non-lpsp-stress:
>>                                                                                  
>>          ◦ shard-rkl: [244]SKIP ([245]i915#1397) -> [246]PASS +2 similar
>>            issues
>>                                                                                  
>>       • igt@i915_pm_rpm@pm-caching:
>>                                                                                  
>>          ◦ shard-tglu: [247]FAIL ([248]i915#7940) -> [249]PASS +1 similar
>>            issue
>>                                                                                  
>>       • igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
>>                                                                                  
>>          ◦ shard-mtlp: [250]FAIL ([251]i915#3743) -> [252]PASS
>>                                                                                  
>>       • igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
>>                                                                                  
>>          ◦ shard-glk: [253]FAIL ([254]i915#2346) -> [255]PASS
>>                                                                                  
>>       • igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2:
>>                                                                                  
>>          ◦ shard-glk: [256]FAIL ([257]i915#2122) -> [258]PASS
>>                                                                                  
>>       • igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1:
>>                                                                                  
>>          ◦ shard-apl: [259]FAIL ([260]i915#79) -> [261]PASS
>>                                                                                  
>>       • igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
>>                                                                                  
>>          ◦ shard-dg2: [262]FAIL ([263]i915#6880) -> [264]PASS
>>                                                                                  
>>       • igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes:
>>                                                                                  
>>          ◦ shard-dg2: [265]FAIL ([266]fdo#103375) -> [267]PASS +2 similar
>>            issues
>>                                                                                  
>>       • igt@perf_pmu@busy-double-start@vecs1:
>>                                                                                  
>>          ◦ shard-dg2: [268]FAIL ([269]i915#4349) -> [270]PASS +3 similar
>>            issues
>>                                                                                  
>>      Warnings
>>                                                                                  
>>       • igt@gem_exec_whisper@basic-contexts-forked-all:
>>                                                                                  
>>          ◦ shard-mtlp: [271]ABORT ([272]i915#8131) -> [273]TIMEOUT
>>            ([274]i915#8628)
>>                                                                                  
>>       • igt@i915_pm_rc6_residency@rc6-idle@rcs0:
>>                                                                                  
>>          ◦ shard-tglu: [275]FAIL ([276]i915#2681 / [277]i915#3591) ->
>>            [278]WARN ([279]i915#2681)
>>                                                                                  
>>       • igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
>>                                                                                  
>>          ◦ shard-dg1: [280]SKIP ([281]i915#1397) -> [282]FAIL ([283]i915#7940)
>>                                                                                  
>>       • igt@i915_pm_rpm@i2c:
>>                                                                                  
>>          ◦ shard-dg1: [284]DMESG-WARN ([285]i915#4391) -> [286]DMESG-WARN
>>            ([287]i915#4391 / [288]i915#4423)
>>                                                                                  
>>       • igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
>>                                                                                  
>>          ◦ shard-mtlp: [289]DMESG-FAIL ([290]i915#2017 / [291]i915#5954) ->
>>            [292]FAIL ([293]i915#2346)
>>                                                                                  
>>       • igt@kms_fbcon_fbt@psr:
>>                                                                                  
>>          ◦ shard-rkl: [294]SKIP ([295]fdo#110189 / [296]i915#3955) ->
>>            [297]SKIP ([298]i915#3955)
>>                                                                                  
>>       • igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
>>                                                                                  
>>          ◦ shard-rkl: [299]SKIP ([300]i915#4070 / [301]i915#4816) -> [302]SKIP
>>            ([303]i915#4816)
>>                                                                                  
>>       • igt@kms_psr@sprite_plane_onoff:
>>                                                                                  
>>          ◦ shard-dg1: [304]SKIP ([305]i915#1072 / [306]i915#4078) -> [307]SKIP
>>            ([308]i915#1072)
>>                                                                                  
>>       • igt@sysfs_timeslice_duration@timeout@vecs0:
>>                                                                                  
>>          ◦ shard-mtlp: [309]ABORT ([310]i915#8521) -> [311]TIMEOUT
>>            ([312]i915#6950)
>>                                                                                  
>>     {name}: This element is suppressed. This means it is ignored when
>>     computing
>>     the status of the difference (SUCCESS, WARNING, or FAILURE).
>>                                                                                  
>> Build changes
>>                                                                                  
>>       • Linux: CI_DRM_13432 -> Patchwork_121150v3
>>                                                                                  
>>     CI-20190529: 20190529
>>     CI_DRM_13432: 069a79d6af09879060345da9f8b886a73b7810a8 @
>>     git://anongit.freedesktop.org/gfx-ci/linux
>>     IGT_7406: 1d6fd796607099d189e85d1fd305160363b961f2 @
>>     [313]https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>>     Patchwork_121150v3: 069a79d6af09879060345da9f8b886a73b7810a8 @
>>     git://anongit.freedesktop.org/gfx-ci/linux
>>     piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
>>     git://anongit.freedesktop.org/piglit
>>
>> References
>>
>>     Visible links
>>     1. https://patchwork.freedesktop.org/series/121150/
>>     2. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/index.html
>>     3. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@sysfs_timeslice_duration@invalid.html
>>     4. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@drm_fdinfo@virtual-busy.html
>>     5. https://gitlab.freedesktop.org/drm/intel/issues/8414
>>     6. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
>>     7. https://gitlab.freedesktop.org/drm/intel/issues/5325
>>     8. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl2/igt@gem_ctx_isolation@preservation-s3@rcs0.html
>>     9. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl7/igt@gem_ctx_isolation@preservation-s3@rcs0.html
>>    10. https://gitlab.freedesktop.org/drm/intel/issues/180
>>    11. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb6/igt@gem_ctx_persistence@legacy-engines-queued.html
>>    12. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>>    13. https://gitlab.freedesktop.org/drm/intel/issues/1099
>>    14. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-3/igt@gem_eio@in-flight-suspend.html
>>    15. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-5/igt@gem_eio@in-flight-suspend.html
>>    16. https://bugs.freedesktop.org/show_bug.cgi?id=103375
>>    17. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_eio@kms.html
>>    18. https://gitlab.freedesktop.org/drm/intel/issues/5784
>>    19. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-6/igt@gem_exec_await@wide-contexts.html
>>    20. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-8/igt@gem_exec_await@wide-contexts.html
>>    21. https://gitlab.freedesktop.org/drm/intel/issues/5892
>>    22. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-5/igt@gem_exec_capture@capture@bcs0-smem.html
>>    23. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@gem_exec_capture@capture@bcs0-smem.html
>>    24. https://gitlab.freedesktop.org/drm/intel/issues/7941
>>    25. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html
>>    26. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html
>>    27. https://gitlab.freedesktop.org/drm/intel/issues/2842
>>    28. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_fair@basic-throttle.html
>>    29. https://gitlab.freedesktop.org/drm/intel/issues/3539
>>    30. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_flush@basic-wb-rw-before-default.html
>>    31. https://gitlab.freedesktop.org/drm/intel/issues/3539
>>    32. https://gitlab.freedesktop.org/drm/intel/issues/4852
>>    33. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_exec_reloc@basic-cpu-wc-active.html
>>    34. https://gitlab.freedesktop.org/drm/intel/issues/3281
>>    35. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_reloc@basic-wc-read-active.html
>>    36. https://gitlab.freedesktop.org/drm/intel/issues/3281
>>    37. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-contexts.html
>>    38. https://gitlab.freedesktop.org/drm/intel/issues/4812
>>    39. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_fenced_exec_thrash@no-spare-fences.html
>>    40. https://gitlab.freedesktop.org/drm/intel/issues/4860
>>    41. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_lmem_swapping@smem-oom.html
>>    42. https://gitlab.freedesktop.org/drm/intel/issues/4613
>>    43. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_mmap@short-mmap.html
>>    44. https://gitlab.freedesktop.org/drm/intel/issues/4083
>>    45. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_mmap_gtt@basic-read-write.html
>>    46. https://gitlab.freedesktop.org/drm/intel/issues/4077
>>    47. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_mmap_gtt@cpuset-big-copy-xy.html
>>    48. https://gitlab.freedesktop.org/drm/intel/issues/4077
>>    49. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_readwrite@read-write.html
>>    50. https://gitlab.freedesktop.org/drm/intel/issues/3282
>>    51. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html
>>    52. https://gitlab.freedesktop.org/drm/intel/issues/8428
>>    53. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_softpin@evict-snoop.html
>>    54. https://gitlab.freedesktop.org/drm/intel/issues/4885
>>    55. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_userptr_blits@forbidden-operations.html
>>    56. https://gitlab.freedesktop.org/drm/intel/issues/3282
>>    57. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
>>    58. https://gitlab.freedesktop.org/drm/intel/issues/3297
>>    59. https://gitlab.freedesktop.org/drm/intel/issues/4880
>>    60. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gen9_exec_parse@basic-rejected-ctx-param.html
>>    61. https://gitlab.freedesktop.org/drm/intel/issues/2527
>>    62. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@i915_pm_dc@dc6-dpms.html
>>    63. https://gitlab.freedesktop.org/drm/intel/issues/3361
>>    64. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-10/igt@i915_pm_dc@dc9-dpms.html
>>    65. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-7/igt@i915_pm_dc@dc9-dpms.html
>>    66. https://gitlab.freedesktop.org/drm/intel/issues/4281
>>    67. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
>>    68. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
>>    69. https://gitlab.freedesktop.org/drm/intel/issues/1937
>>    70. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@i915_pm_lpsp@screens-disabled.html
>>    71. https://gitlab.freedesktop.org/drm/intel/issues/1902
>>    72. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@basic-pci-d3-state.html
>>    73. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@i915_pm_rpm@basic-pci-d3-state.html
>>    74. https://gitlab.freedesktop.org/drm/intel/issues/7691
>>    75. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@dpms-lpsp.html
>>    76. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@dpms-lpsp.html
>>    77. https://gitlab.freedesktop.org/drm/intel/issues/1397
>>    78. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-9/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
>>    79. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-4/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
>>    80. https://gitlab.freedesktop.org/drm/intel/issues/7940
>>    81. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-1/igt@i915_pm_rpm@i2c.html
>>    82. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-2/igt@i915_pm_rpm@i2c.html
>>    83. https://gitlab.freedesktop.org/drm/intel/issues/8717
>>    84. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
>>    85. https://gitlab.freedesktop.org/drm/intel/issues/5190
>>    86. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_addfb_basic@basic-x-tiled-legacy.html
>>    87. https://gitlab.freedesktop.org/drm/intel/issues/4212
>>    88. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-10/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html
>>    89. https://gitlab.freedesktop.org/drm/intel/issues/8247
>>    90. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html
>>    91. https://gitlab.freedesktop.org/drm/intel/issues/8247
>>    92. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
>>    93. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>>    94. https://gitlab.freedesktop.org/drm/intel/issues/1769
>>    95. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
>>    96. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
>>    97. https://gitlab.freedesktop.org/drm/intel/issues/5138
>>    98. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
>>    99. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
>>   100. https://gitlab.freedesktop.org/drm/intel/issues/3743
>>   101. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
>>   102. https://bugs.freedesktop.org/show_bug.cgi?id=111614
>>   103. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
>>   104. https://gitlab.freedesktop.org/drm/intel/issues/3638
>>   105. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
>>   106. https://bugs.freedesktop.org/show_bug.cgi?id=111615
>>   107. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_big_joiner@basic.html
>>   108. https://gitlab.freedesktop.org/drm/intel/issues/2705
>>   109. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs.html
>>   110. https://gitlab.freedesktop.org/drm/intel/issues/6095
>>   111. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs.html
>>   112. https://gitlab.freedesktop.org/drm/intel/issues/3689
>>   113. https://gitlab.freedesktop.org/drm/intel/issues/5354
>>   114. https://gitlab.freedesktop.org/drm/intel/issues/6095
>>   115. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html
>>   116. https://gitlab.freedesktop.org/drm/intel/issues/3689
>>   117. https://gitlab.freedesktop.org/drm/intel/issues/3886
>>   118. https://gitlab.freedesktop.org/drm/intel/issues/5354
>>   119. https://gitlab.freedesktop.org/drm/intel/issues/6095
>>   120. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html
>>   121. https://gitlab.freedesktop.org/drm/intel/issues/3886
>>   122. https://gitlab.freedesktop.org/drm/intel/issues/6095
>>   123. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html
>>   124. https://gitlab.freedesktop.org/drm/intel/issues/5354
>>   125. https://gitlab.freedesktop.org/drm/intel/issues/6095
>>   126. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html
>>   127. https://gitlab.freedesktop.org/drm/intel/issues/7213
>>   128. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
>>   129. https://gitlab.freedesktop.org/drm/intel/issues/4087
>>   130. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
>>   131. https://gitlab.freedesktop.org/drm/intel/issues/7828
>>   132. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
>>   133. https://gitlab.freedesktop.org/drm/intel/issues/7828
>>   134. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-1.html
>>   135. https://gitlab.freedesktop.org/drm/intel/issues/3299
>>   136. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html
>>   137. https://gitlab.freedesktop.org/drm/intel/issues/7173
>>   138. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
>>   139. https://gitlab.freedesktop.org/drm/intel/issues/3555
>>   140. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html
>>   141. https://bugs.freedesktop.org/show_bug.cgi?id=103375
>>   142. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
>>   143. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
>>   144. https://gitlab.freedesktop.org/drm/intel/issues/8248
>>   145. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
>>   146. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>>   147. https://bugs.freedesktop.org/show_bug.cgi?id=111767
>>   148. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
>>   149. https://gitlab.freedesktop.org/drm/intel/issues/2346
>>   150. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
>>   151. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
>>   152. https://gitlab.freedesktop.org/drm/intel/issues/2346
>>   153. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_dsc@dsc-with-output-formats.html
>>   154. https://gitlab.freedesktop.org/drm/intel/issues/3555
>>   155. https://gitlab.freedesktop.org/drm/intel/issues/3840
>>   156. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
>>   157. https://gitlab.freedesktop.org/drm/intel/issues/3637
>>   158. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb1/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
>>   159. https://gitlab.freedesktop.org/drm/intel/issues/8841
>>   160. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode.html
>>   161. https://gitlab.freedesktop.org/drm/intel/issues/2672
>>   162. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html
>>   163. https://gitlab.freedesktop.org/drm/intel/issues/8708
>>   164. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
>>   165. https://bugs.freedesktop.org/show_bug.cgi?id=111825
>>   166. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
>>   167. https://gitlab.freedesktop.org/drm/intel/issues/1825
>>   168. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
>>   169. https://gitlab.freedesktop.org/drm/intel/issues/3458
>>   170. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-7/igt@kms_hdr@static-swap.html
>>   171. https://gitlab.freedesktop.org/drm/intel/issues/3555
>>   172. https://gitlab.freedesktop.org/drm/intel/issues/8228
>>   173. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@kms_plane@pixel-format@pipe-b-planes.html
>>   174. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@kms_plane@pixel-format@pipe-b-planes.html
>>   175. https://gitlab.freedesktop.org/drm/intel/issues/1623
>>   176. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2.html
>>   177. https://gitlab.freedesktop.org/drm/intel/issues/5176
>>   178. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4.html
>>   179. https://gitlab.freedesktop.org/drm/intel/issues/5176
>>   180. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html
>>   181. https://gitlab.freedesktop.org/drm/intel/issues/5235
>>   182. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html
>>   183. https://gitlab.freedesktop.org/drm/intel/issues/5235
>>   184. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb7/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html
>>   185. https://bugs.freedesktop.org/show_bug.cgi?id=109271
>>   186. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2.html
>>   187. https://gitlab.freedesktop.org/drm/intel/issues/5235
>>   188. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1.html
>>   189. https://gitlab.freedesktop.org/drm/intel/issues/5235
>>   190. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_psr@dpms.html
>>   191. https://gitlab.freedesktop.org/drm/intel/issues/1072
>>   192. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_vblank@pipe-c-wait-busy-hang.html
>>   193. https://gitlab.freedesktop.org/drm/intel/issues/6768
>>   194. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@v3d/v3d_submit_cl@single-in-sync.html
>>   195. https://gitlab.freedesktop.org/drm/intel/issues/2575
>>   196. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@v3d/v3d_submit_csd@job-perfmon.html
>>   197. https://gitlab.freedesktop.org/drm/intel/issues/2575
>>   198. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@vc4/vc4_tiling@get-bad-flags.html
>>   199. https://gitlab.freedesktop.org/drm/intel/issues/7711
>>   200. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@vc4/vc4_tiling@set-bad-flags.html
>>   201. https://gitlab.freedesktop.org/drm/intel/issues/7711
>>   202. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html
>>   203. https://gitlab.freedesktop.org/drm/intel/issues/6268
>>   204. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html
>>   205. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html
>>   206. https://gitlab.freedesktop.org/drm/intel/issues/6786
>>   207. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@gem_ctx_freq@sysfs@gt0.html
>>   208. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl2/igt@gem_ctx_isolation@preservation-s3@vecs0.html
>>   209. https://gitlab.freedesktop.org/drm/intel/issues/180
>>   210. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl7/igt@gem_ctx_isolation@preservation-s3@vecs0.html
>>   211. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-14/igt@gem_eio@hibernate.html
>>   212. https://gitlab.freedesktop.org/drm/intel/issues/4391
>>   213. https://gitlab.freedesktop.org/drm/intel/issues/7975
>>   214. https://gitlab.freedesktop.org/drm/intel/issues/8213
>>   215. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_eio@hibernate.html
>>   216. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-16/igt@gem_eio@unwedge-stress.html
>>   217. https://gitlab.freedesktop.org/drm/intel/issues/5784
>>   218. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-17/igt@gem_eio@unwedge-stress.html
>>   219. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@gem_exec_capture@pi@vcs0.html
>>   220. https://gitlab.freedesktop.org/drm/intel/issues/4475
>>   221. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-4/igt@gem_exec_capture@pi@vcs0.html
>>   222. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@gem_exec_capture@pi@vcs1.html
>>   223. https://gitlab.freedesktop.org/drm/intel/issues/8504
>>   224. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-4/igt@gem_exec_capture@pi@vcs1.html
>>   225. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
>>   226. https://gitlab.freedesktop.org/drm/intel/issues/2842
>>   227. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@gem_exec_fair@basic-pace-share@rcs0.html
>>   228. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html
>>   229. https://gitlab.freedesktop.org/drm/intel/issues/7061
>>   230. https://gitlab.freedesktop.org/drm/intel/issues/8617
>>   231. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
>>   232. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
>>   233. https://gitlab.freedesktop.org/drm/intel/issues/3591
>>   234. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
>>   235. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
>>   236. https://gitlab.freedesktop.org/drm/intel/issues/7940
>>   237. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
>>   238. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rpm@modeset-lpsp-stress.html
>>   239. https://gitlab.freedesktop.org/drm/intel/issues/1397
>>   240. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress.html
>>   241. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp.html
>>   242. https://gitlab.freedesktop.org/drm/intel/issues/1397
>>   243. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-8/igt@i915_pm_rpm@modeset-non-lpsp.html
>>   244. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
>>   245. https://gitlab.freedesktop.org/drm/intel/issues/1397
>>   246. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
>>   247. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-2/igt@i915_pm_rpm@pm-caching.html
>>   248. https://gitlab.freedesktop.org/drm/intel/issues/7940
>>   249. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-8/igt@i915_pm_rpm@pm-caching.html
>>   250. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
>>   251. https://gitlab.freedesktop.org/drm/intel/issues/3743
>>   252. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
>>   253. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
>>   254. https://gitlab.freedesktop.org/drm/intel/issues/2346
>>   255. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
>>   256. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-glk3/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
>>   257. https://gitlab.freedesktop.org/drm/intel/issues/2122
>>   258. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
>>   259. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html
>>   260. https://gitlab.freedesktop.org/drm/intel/issues/79
>>   261. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html
>>   262. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
>>   263. https://gitlab.freedesktop.org/drm/intel/issues/6880
>>   264. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
>>   265. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
>>   266. https://bugs.freedesktop.org/show_bug.cgi?id=103375
>>   267. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
>>   268. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-2/igt@perf_pmu@busy-double-start@vecs1.html
>>   269. https://gitlab.freedesktop.org/drm/intel/issues/4349
>>   270. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
>>   271. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-forked-all.html
>>   272. https://gitlab.freedesktop.org/drm/intel/issues/8131
>>   273. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_exec_whisper@basic-contexts-forked-all.html
>>   274. https://gitlab.freedesktop.org/drm/intel/issues/8628
>>   275. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
>>   276. https://gitlab.freedesktop.org/drm/intel/issues/2681
>>   277. https://gitlab.freedesktop.org/drm/intel/issues/3591
>>   278. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
>>   279. https://gitlab.freedesktop.org/drm/intel/issues/2681
>>   280. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
>>   281. https://gitlab.freedesktop.org/drm/intel/issues/1397
>>   282. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
>>   283. https://gitlab.freedesktop.org/drm/intel/issues/7940
>>   284. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@i2c.html
>>   285. https://gitlab.freedesktop.org/drm/intel/issues/4391
>>   286. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@i2c.html
>>   287. https://gitlab.freedesktop.org/drm/intel/issues/4391
>>   288. https://gitlab.freedesktop.org/drm/intel/issues/4423
>>   289. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
>>   290. https://gitlab.freedesktop.org/drm/intel/issues/2017
>>   291. https://gitlab.freedesktop.org/drm/intel/issues/5954
>>   292. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
>>   293. https://gitlab.freedesktop.org/drm/intel/issues/2346
>>   294. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
>>   295. https://bugs.freedesktop.org/show_bug.cgi?id=110189
>>   296. https://gitlab.freedesktop.org/drm/intel/issues/3955
>>   297. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
>>   298. https://gitlab.freedesktop.org/drm/intel/issues/3955
>>   299. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
>>   300. https://gitlab.freedesktop.org/drm/intel/issues/4070
>>   301. https://gitlab.freedesktop.org/drm/intel/issues/4816
>>   302. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
>>   303. https://gitlab.freedesktop.org/drm/intel/issues/4816
>>   304. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-18/igt@kms_psr@sprite_plane_onoff.html
>>   305. https://gitlab.freedesktop.org/drm/intel/issues/1072
>>   306. https://gitlab.freedesktop.org/drm/intel/issues/4078
>>   307. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@kms_psr@sprite_plane_onoff.html
>>   308. https://gitlab.freedesktop.org/drm/intel/issues/1072
>>   309. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-6/igt@sysfs_timeslice_duration@timeout@vecs0.html
>>   310. https://gitlab.freedesktop.org/drm/intel/issues/8521
>>   311. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@sysfs_timeslice_duration@timeout@vecs0.html
>>   312. https://gitlab.freedesktop.org/drm/intel/issues/6950
>>   313. https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Rodrigo Vivi Aug. 14, 2023, 4:02 p.m. UTC | #5
On Fri, Aug 11, 2023 at 10:54:57AM -0700, Belgaumkar, Vinay wrote:
> 
> On 8/10/2023 5:22 PM, Rodrigo Vivi wrote:
> > On Wed, Aug 02, 2023 at 12:41:09AM +0000, Belgaumkar, Vinay wrote:
> > >     From: Patchwork <patchwork@emeril.freedesktop.org>
> > >     Sent: Thursday, July 27, 2023 6:59 PM
> > >     To: Belgaumkar, Vinay <vinay.belgaumkar@intel.com>
> > >     Cc: intel-gfx@lists.freedesktop.org
> > >     Subject: ✗ Fi.CI.IGT: failure for drm/i915/guc/slpc: Restore efficient
> > >     freq earlier (rev3)
> > >     Patch Details
> > > Series:  drm/i915/guc/slpc: Restore efficient freq earlier (rev3)
> > > URL:     [1]https://patchwork.freedesktop.org/series/121150/
> > > State:   failure
> > > Details: [2]https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/index.html
> > >       CI Bug Log - changes from CI_DRM_13432_full -> Patchwork_121150v3_full
> > > Summary
> > >     FAILURE
> > >     Serious unknown changes coming with Patchwork_121150v3_full absolutely
> > >     need to be
> > >     verified manually.
> > >     If you think the reported changes have nothing to do with the changes
> > >     introduced in Patchwork_121150v3_full, please notify your bug team to
> > >     allow them
> > >     to document this new failure mode, which will reduce false positives in
> > >     CI.
> > > Participating hosts (10 -> 10)
> > >     No changes in participating hosts
> > > Possible new issues
> > >     Here are the unknown changes that may have been introduced in
> > >     Patchwork_121150v3_full:
> > >    IGT changes
> > >      Possible regressions
> > >       • igt@sysfs_timeslice_duration@invalid:
> > >          ◦ shard-mtlp: NOTRUN -> [3]TIMEOUT
> > >     Does not seem related to this patch.
> > But i915_selftests@live@workarounds seems to fail on every platform after I cherry
> > picked this patch to drm-intel-fixes:
> > 
> > http://gfx-ci.igk.intel.com/tree/drm-intel-fixes/combined-alt.html?
> > 
> > <5> [314.508910] i915 0000:00:02.0: [drm] Resetting chip for live_workarounds
> > <6> [314.511971] i915 0000:00:02.0: [drm] GT0: GuC firmware i915/mtl_guc_70.bin version 70.8.0
> > <7> [314.523625] i915 0000:00:02.0: [drm:intel_guc_fw_upload [i915]] GT0: GUC: init took 8ms, freq = 2250MHz, before = 2250MHz, status = 0x8002F034, count = 0, ret = 0
> > <7> [314.526596] i915 0000:00:02.0: [drm:guc_enable_communication [i915]] GT0: GUC: communication enabled
> > <6> [314.531291] i915 0000:00:02.0: [drm] GT0: GUC: submission enabled
> > <6> [314.531324] i915 0000:00:02.0: [drm] GT0: GUC: SLPC enabled
> > <6> [314.576597] i915: Running intel_workarounds_live_selftests/live_engine_reset_workarounds
> > <7> [314.576715] MCR Steering: L3BANK steering: group=0x0, instance=0x0
> > <7> [314.576736] MCR Steering: DSS steering: group=0x0, instance=0x0
> > <7> [314.576751] MCR Steering: INSTANCE 0 steering: group=0x0, instance=0x0
> > <7> [314.576818] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 5 GT_REF workarounds on global
> > <7> [314.578192] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 5 REF workarounds on rcs0
> > <7> [314.579454] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 6 CTX_REF workarounds on rcs0
> > <7> [314.580487] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 1 REF workarounds on bcs0
> > <7> [314.581449] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 2 CTX_REF workarounds on bcs0
> > <7> [314.582206] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 1 REF workarounds on ccs0
> > <7> [314.583122] i915 0000:00:02.0: [drm:wa_init_finish [i915]] Initialized 1 CTX_REF workarounds on ccs0
> > <6> [314.584067] Verifying after rcs0 reset...
> > <7> [314.609843] i915 0000:00:02.0: [drm:intel_guc_context_reset_process_msg [i915]] GT0: GUC: Got context reset notification: 0x1002 on rcs0, exiting = no, banned = no
> > <6> [314.777958] i915 0000:00:02.0: [drm] GPU HANG: ecode 12:0:00000000
> > <6> [314.792928] Verifying after bcs0 reset...
> > <3> [325.082480] i915/intel_workarounds_live_selftests: live_engine_reset_workarounds failed with error -62
> > 
> > could you please help to understand what is going on here?
> 
> Looks like this is a known bug and has been failing for months -
> https://gitlab.freedesktop.org/drm/intel/-/issues/6763

I'm sorry for the noise. I don't understand why this only showed up now
on the CI for our fixes branch, but I have confirmed that it is still
there even without this patch.

So I'm going to ignore this and I'm propagating this patch this week.

Sorry and thanks for the help,
Rodrigo.

> 
> Thanks,
> 
> Vinay.
> 
> > 
> > Thanks,
> > Rodrigo.
> > 
> > >     Thanks,
> > >     Vinay.
> > > Known issues
> > >     Here are the changes found in Patchwork_121150v3_full that come from known
> > >     issues:
> > >    IGT changes
> > >      Issues hit
> > >       • igt@drm_fdinfo@virtual-busy:
> > >          ◦ shard-dg1: NOTRUN -> [4]SKIP ([5]i915#8414)
> > >       • igt@gem_ccs@ctrl-surf-copy-new-ctx:
> > >          ◦ shard-mtlp: NOTRUN -> [6]SKIP ([7]i915#5325)
> > >       • igt@gem_ctx_isolation@preservation-s3@rcs0:
> > >          ◦ shard-apl: [8]PASS -> [9]ABORT ([10]i915#180)
> > >       • igt@gem_ctx_persistence@legacy-engines-queued:
> > >          ◦ shard-snb: NOTRUN -> [11]SKIP ([12]fdo#109271 / [13]i915#1099) +4
> > >            similar issues
> > >       • igt@gem_eio@in-flight-suspend:
> > >          ◦ shard-dg2: [14]PASS -> [15]FAIL ([16]fdo#103375)
> > >       • igt@gem_eio@kms:
> > >          ◦ shard-dg1: NOTRUN -> [17]FAIL ([18]i915#5784)
> > >       • igt@gem_exec_await@wide-contexts:
> > >          ◦ shard-dg2: [19]PASS -> [20]FAIL ([21]i915#5892)
> > >       • igt@gem_exec_capture@capture@bcs0-smem:
> > >          ◦ shard-mtlp: [22]PASS -> [23]TIMEOUT ([24]i915#7941)
> > >       • igt@gem_exec_fair@basic-pace@rcs0:
> > >          ◦ shard-rkl: [25]PASS -> [26]FAIL ([27]i915#2842)
> > >       • igt@gem_exec_fair@basic-throttle:
> > >          ◦ shard-dg1: NOTRUN -> [28]SKIP ([29]i915#3539)
> > >       • igt@gem_exec_flush@basic-wb-rw-before-default:
> > >          ◦ shard-dg1: NOTRUN -> [30]SKIP ([31]i915#3539 / [32]i915#4852)
> > >       • igt@gem_exec_reloc@basic-cpu-wc-active:
> > >          ◦ shard-mtlp: NOTRUN -> [33]SKIP ([34]i915#3281) +1 similar issue
> > >       • igt@gem_exec_reloc@basic-wc-read-active:
> > >          ◦ shard-dg1: NOTRUN -> [35]SKIP ([36]i915#3281)
> > >       • igt@gem_exec_schedule@preempt-queue-contexts:
> > >          ◦ shard-mtlp: NOTRUN -> [37]SKIP ([38]i915#4812)
> > >       • igt@gem_fenced_exec_thrash@no-spare-fences:
> > >          ◦ shard-dg1: NOTRUN -> [39]SKIP ([40]i915#4860)
> > >       • igt@gem_lmem_swapping@smem-oom:
> > >          ◦ shard-mtlp: NOTRUN -> [41]SKIP ([42]i915#4613)
> > >       • igt@gem_mmap@short-mmap:
> > >          ◦ shard-dg1: NOTRUN -> [43]SKIP ([44]i915#4083)
> > >       • igt@gem_mmap_gtt@basic-read-write:
> > >          ◦ shard-mtlp: NOTRUN -> [45]SKIP ([46]i915#4077)
> > >       • igt@gem_mmap_gtt@cpuset-big-copy-xy:
> > >          ◦ shard-dg1: NOTRUN -> [47]SKIP ([48]i915#4077)
> > >       • igt@gem_readwrite@read-write:
> > >          ◦ shard-mtlp: NOTRUN -> [49]SKIP ([50]i915#3282)
> > >       • igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled:
> > >          ◦ shard-mtlp: NOTRUN -> [51]SKIP ([52]i915#8428) +1 similar issue
> > >       • igt@gem_softpin@evict-snoop:
> > >          ◦ shard-mtlp: NOTRUN -> [53]SKIP ([54]i915#4885)
> > >       • igt@gem_userptr_blits@forbidden-operations:
> > >          ◦ shard-dg1: NOTRUN -> [55]SKIP ([56]i915#3282)
> > >       • igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
> > >          ◦ shard-dg1: NOTRUN -> [57]SKIP ([58]i915#3297 / [59]i915#4880)
> > >       • igt@gen9_exec_parse@basic-rejected-ctx-param:
> > >          ◦ shard-dg1: NOTRUN -> [60]SKIP ([61]i915#2527)
> > >       • igt@i915_pm_dc@dc6-dpms:
> > >          ◦ shard-dg1: NOTRUN -> [62]SKIP ([63]i915#3361)
> > >       • igt@i915_pm_dc@dc9-dpms:
> > >          ◦ shard-tglu: [64]PASS -> [65]SKIP ([66]i915#4281)
> > >       • igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
> > >          ◦ shard-rkl: [67]PASS -> [68]SKIP ([69]i915#1937)
> > >       • igt@i915_pm_lpsp@screens-disabled:
> > >          ◦ shard-dg1: NOTRUN -> [70]SKIP ([71]i915#1902)
> > >       • igt@i915_pm_rpm@basic-pci-d3-state:
> > >          ◦ shard-dg1: [72]PASS -> [73]FAIL ([74]i915#7691)
> > >       • igt@i915_pm_rpm@dpms-lpsp:
> > >          ◦ shard-dg1: [75]PASS -> [76]SKIP ([77]i915#1397) +1 similar issue
> > >       • igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0:
> > >          ◦ shard-tglu: [78]PASS -> [79]FAIL ([80]i915#7940)
> > >       • igt@i915_pm_rpm@i2c:
> > >          ◦ shard-dg2: [81]PASS -> [82]FAIL ([83]i915#8717)
> > >       • igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
> > >          ◦ shard-mtlp: NOTRUN -> [84]SKIP ([85]i915#5190)
> > >       • igt@kms_addfb_basic@basic-x-tiled-legacy:
> > >          ◦ shard-dg1: NOTRUN -> [86]SKIP ([87]i915#4212)
> > >       • igt@kms_async_flips@crc@pipe-b-hdmi-a-1:
> > >          ◦ shard-dg2: NOTRUN -> [88]FAIL ([89]i915#8247) +3 similar issues
> > >       • igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
> > >          ◦ shard-dg1: NOTRUN -> [90]FAIL ([91]i915#8247) +3 similar issues
> > >       • igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
> > >          ◦ shard-snb: NOTRUN -> [92]SKIP ([93]fdo#109271 / [94]i915#1769)
> > >       • igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
> > >          ◦ shard-mtlp: [95]PASS -> [96]FAIL ([97]i915#5138)
> > >       • igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
> > >          ◦ shard-mtlp: [98]PASS -> [99]FAIL ([100]i915#3743) +1 similar issue
> > >       • igt@kms_big_fb@x-tiled-16bpp-rotate-90:
> > >          ◦ shard-mtlp: NOTRUN -> [101]SKIP ([102]fdo#111614)
> > >       • igt@kms_big_fb@x-tiled-64bpp-rotate-270:
> > >          ◦ shard-dg1: NOTRUN -> [103]SKIP ([104]i915#3638)
> > >       • igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
> > >          ◦ shard-mtlp: NOTRUN -> [105]SKIP ([106]fdo#111615)
> > >       • igt@kms_big_joiner@basic:
> > >          ◦ shard-dg1: NOTRUN -> [107]SKIP ([108]i915#2705)
> > >       • igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs:
> > >          ◦ shard-mtlp: NOTRUN -> [109]SKIP ([110]i915#6095) +4 similar issues
> > >       • igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs:
> > >          ◦ shard-dg1: NOTRUN -> [111]SKIP ([112]i915#3689 / [113]i915#5354 /
> > >            [114]i915#6095) +2 similar issues
> > >       • igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
> > >          ◦ shard-dg1: NOTRUN -> [115]SKIP ([116]i915#3689 / [117]i915#3886 /
> > >            [118]i915#5354 / [119]i915#6095)
> > >       • igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:
> > >          ◦ shard-mtlp: NOTRUN -> [120]SKIP ([121]i915#3886 / [122]i915#6095)
> > >            +1 similar issue
> > >       • igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs:
> > >          ◦ shard-dg1: NOTRUN -> [123]SKIP ([124]i915#5354 / [125]i915#6095) +3
> > >            similar issues
> > >       • igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2:
> > >          ◦ shard-dg2: NOTRUN -> [126]SKIP ([127]i915#7213) +3 similar issues
> > >       • igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
> > >          ◦ shard-dg2: NOTRUN -> [128]SKIP ([129]i915#4087) +3 similar issues
> > >       • igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
> > >          ◦ shard-mtlp: NOTRUN -> [130]SKIP ([131]i915#7828) +1 similar issue
> > >       • igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
> > >          ◦ shard-dg1: NOTRUN -> [132]SKIP ([133]i915#7828) +2 similar issues
> > >       • igt@kms_content_protection@dp-mst-type-1:
> > >          ◦ shard-mtlp: NOTRUN -> [134]SKIP ([135]i915#3299)
> > >       • igt@kms_content_protection@lic@pipe-a-dp-4:
> > >          ◦ shard-dg2: NOTRUN -> [136]TIMEOUT ([137]i915#7173)
> > >       • igt@kms_cursor_crc@cursor-rapid-movement-32x32:
> > >          ◦ shard-dg1: NOTRUN -> [138]SKIP ([139]i915#3555)
> > >       • igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1:
> > >          ◦ shard-mtlp: NOTRUN -> [140]FAIL ([141]fdo#103375)
> > >       • igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
> > >          ◦ shard-mtlp: [142]PASS -> [143]FAIL ([144]i915#8248)
> > >       • igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
> > >          ◦ shard-snb: NOTRUN -> [145]SKIP ([146]fdo#109271 / [147]fdo#111767)
> > >       • igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
> > >          ◦ shard-mtlp: NOTRUN -> [148]FAIL ([149]i915#2346)
> > >       • igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
> > >          ◦ shard-apl: [150]PASS -> [151]FAIL ([152]i915#2346)
> > >       • igt@kms_dsc@dsc-with-output-formats:
> > >          ◦ shard-dg1: NOTRUN -> [153]SKIP ([154]i915#3555 / [155]i915#3840)
> > >       • igt@kms_flip@2x-flip-vs-suspend-interruptible:
> > >          ◦ shard-mtlp: NOTRUN -> [156]SKIP ([157]i915#3637)
> > >       • igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
> > >          ◦ shard-snb: NOTRUN -> [158]DMESG-WARN ([159]i915#8841) +1 similar
> > >            issue
> > >       • igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode:
> > >          ◦ shard-mtlp: NOTRUN -> [160]SKIP ([161]i915#2672)
> > >       • igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt:
> > >          ◦ shard-dg1: NOTRUN -> [162]SKIP ([163]i915#8708) +3 similar issues
> > >       • igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
> > >          ◦ shard-dg1: NOTRUN -> [164]SKIP ([165]fdo#111825) +8 similar issues
> > >       • igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
> > >          ◦ shard-mtlp: NOTRUN -> [166]SKIP ([167]i915#1825) +8 similar issues
> > >       • igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
> > >          ◦ shard-dg1: NOTRUN -> [168]SKIP ([169]i915#3458) +2 similar issues
> > >       • igt@kms_hdr@static-swap:
> > >          ◦ shard-dg2: NOTRUN -> [170]SKIP ([171]i915#3555 / [172]i915#8228)
> > >       • igt@kms_plane@pixel-format@pipe-b-planes:
> > >          ◦ shard-mtlp: [173]PASS -> [174]FAIL ([175]i915#1623)
> > >       • igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2:
> > >          ◦ shard-rkl: NOTRUN -> [176]SKIP ([177]i915#5176) +5 similar issues
> > >       • igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4:
> > >          ◦ shard-dg1: NOTRUN -> [178]SKIP ([179]i915#5176) +15 similar issues
> > >       • igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1:
> > >          ◦ shard-dg1: NOTRUN -> [180]SKIP ([181]i915#5235) +3 similar issues
> > >       • igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3:
> > >          ◦ shard-dg2: NOTRUN -> [182]SKIP ([183]i915#5235) +7 similar issues
> > >       • igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1:
> > >          ◦ shard-snb: NOTRUN -> [184]SKIP ([185]fdo#109271) +278 similar
> > >            issues
> > >       • igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2:
> > >          ◦ shard-rkl: NOTRUN -> [186]SKIP ([187]i915#5235) +7 similar issues
> > >       • igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1:
> > >          ◦ shard-mtlp: NOTRUN -> [188]SKIP ([189]i915#5235) +3 similar issues
> > >       • igt@kms_psr@dpms:
> > >          ◦ shard-dg1: NOTRUN -> [190]SKIP ([191]i915#1072)
> > >       • igt@kms_vblank@pipe-c-wait-busy-hang:
> > >          ◦ shard-mtlp: NOTRUN -> [192]SKIP ([193]i915#6768)
> > >       • igt@v3d/v3d_submit_cl@single-in-sync:
> > >          ◦ shard-dg1: NOTRUN -> [194]SKIP ([195]i915#2575)
> > >       • igt@v3d/v3d_submit_csd@job-perfmon:
> > >          ◦ shard-mtlp: NOTRUN -> [196]SKIP ([197]i915#2575) +3 similar issues
> > >       • igt@vc4/vc4_tiling@get-bad-flags:
> > >          ◦ shard-dg1: NOTRUN -> [198]SKIP ([199]i915#7711)
> > >       • igt@vc4/vc4_tiling@set-bad-flags:
> > >          ◦ shard-mtlp: NOTRUN -> [200]SKIP ([201]i915#7711)
> > >      Possible fixes
> > >       • igt@gem_ctx_exec@basic-nohangcheck:
> > >          ◦ shard-tglu: [202]FAIL ([203]i915#6268) -> [204]PASS
> > >       • {igt@gem_ctx_freq@sysfs@gt0}:
> > >          ◦ shard-dg2: [205]FAIL ([206]i915#6786) -> [207]PASS
> > >       • igt@gem_ctx_isolation@preservation-s3@vecs0:
> > >          ◦ shard-apl: [208]ABORT ([209]i915#180) -> [210]PASS
> > >       • igt@gem_eio@hibernate:
> > >          ◦ shard-dg1: [211]ABORT ([212]i915#4391 / [213]i915#7975 /
> > >            [214]i915#8213) -> [215]PASS
> > >       • igt@gem_eio@unwedge-stress:
> > >          ◦ shard-dg1: [216]FAIL ([217]i915#5784) -> [218]PASS
> > >       • igt@gem_exec_capture@pi@vcs0:
> > >          ◦ shard-mtlp: [219]FAIL ([220]i915#4475) -> [221]PASS
> > >       • igt@gem_exec_capture@pi@vcs1:
> > >          ◦ shard-mtlp: [222]DMESG-WARN ([223]i915#8504) -> [224]PASS
> > >       • igt@gem_exec_fair@basic-pace-share@rcs0:
> > >          ◦ shard-rkl: [225]FAIL ([226]i915#2842) -> [227]PASS
> > >       • igt@i915_module_load@reload-with-fault-injection:
> > >          ◦ shard-dg2: [228]DMESG-WARN ([229]i915#7061 / [230]i915#8617) ->
> > >            [231]PASS
> > >       • igt@i915_pm_rc6_residency@rc6-idle@rcs0:
> > >          ◦ shard-dg1: [232]FAIL ([233]i915#3591) -> [234]PASS +2 similar
> > >            issues
> > >       • igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0:
> > >          ◦ shard-dg1: [235]FAIL ([236]i915#7940) -> [237]PASS
> > >       • igt@i915_pm_rpm@modeset-lpsp-stress:
> > >          ◦ shard-dg1: [238]SKIP ([239]i915#1397) -> [240]PASS
> > >       • igt@i915_pm_rpm@modeset-non-lpsp:
> > >          ◦ shard-dg2: [241]SKIP ([242]i915#1397) -> [243]PASS
> > >       • igt@i915_pm_rpm@modeset-non-lpsp-stress:
> > >          ◦ shard-rkl: [244]SKIP ([245]i915#1397) -> [246]PASS +2 similar
> > >            issues
> > >       • igt@i915_pm_rpm@pm-caching:
> > >          ◦ shard-tglu: [247]FAIL ([248]i915#7940) -> [249]PASS +1 similar
> > >            issue
> > >       • igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
> > >          ◦ shard-mtlp: [250]FAIL ([251]i915#3743) -> [252]PASS
> > >       • igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
> > >          ◦ shard-glk: [253]FAIL ([254]i915#2346) -> [255]PASS
> > >       • igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2:
> > >          ◦ shard-glk: [256]FAIL ([257]i915#2122) -> [258]PASS
> > >       • igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1:
> > >          ◦ shard-apl: [259]FAIL ([260]i915#79) -> [261]PASS
> > >       • igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
> > >          ◦ shard-dg2: [262]FAIL ([263]i915#6880) -> [264]PASS
> > >       • igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes:
> > >          ◦ shard-dg2: [265]FAIL ([266]fdo#103375) -> [267]PASS +2 similar
> > >            issues
> > >       • igt@perf_pmu@busy-double-start@vecs1:
> > >          ◦ shard-dg2: [268]FAIL ([269]i915#4349) -> [270]PASS +3 similar
> > >            issues
> > >      Warnings
> > >       • igt@gem_exec_whisper@basic-contexts-forked-all:
> > >          ◦ shard-mtlp: [271]ABORT ([272]i915#8131) -> [273]TIMEOUT
> > >            ([274]i915#8628)
> > >       • igt@i915_pm_rc6_residency@rc6-idle@rcs0:
> > >          ◦ shard-tglu: [275]FAIL ([276]i915#2681 / [277]i915#3591) ->
> > >            [278]WARN ([279]i915#2681)
> > >       • igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
> > >          ◦ shard-dg1: [280]SKIP ([281]i915#1397) -> [282]FAIL ([283]i915#7940)
> > >       • igt@i915_pm_rpm@i2c:
> > >          ◦ shard-dg1: [284]DMESG-WARN ([285]i915#4391) -> [286]DMESG-WARN
> > >            ([287]i915#4391 / [288]i915#4423)
> > >       • igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
> > >          ◦ shard-mtlp: [289]DMESG-FAIL ([290]i915#2017 / [291]i915#5954) ->
> > >            [292]FAIL ([293]i915#2346)
> > >       • igt@kms_fbcon_fbt@psr:
> > >          ◦ shard-rkl: [294]SKIP ([295]fdo#110189 / [296]i915#3955) ->
> > >            [297]SKIP ([298]i915#3955)
> > >       • igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
> > >          ◦ shard-rkl: [299]SKIP ([300]i915#4070 / [301]i915#4816) -> [302]SKIP
> > >            ([303]i915#4816)
> > >       • igt@kms_psr@sprite_plane_onoff:
> > >          ◦ shard-dg1: [304]SKIP ([305]i915#1072 / [306]i915#4078) -> [307]SKIP
> > >            ([308]i915#1072)
> > >       • igt@sysfs_timeslice_duration@timeout@vecs0:
> > >          ◦ shard-mtlp: [309]ABORT ([310]i915#8521) -> [311]TIMEOUT
> > >            ([312]i915#6950)
> > >     {name}: This element is suppressed. This means it is ignored when
> > >     computing
> > >     the status of the difference (SUCCESS, WARNING, or FAILURE).
> > > Build changes
> > >       • Linux: CI_DRM_13432 -> Patchwork_121150v3
> > >     CI-20190529: 20190529
> > >     CI_DRM_13432: 069a79d6af09879060345da9f8b886a73b7810a8 @
> > >     git://anongit.freedesktop.org/gfx-ci/linux
> > >     IGT_7406: 1d6fd796607099d189e85d1fd305160363b961f2 @
> > >     [313]https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> > >     Patchwork_121150v3: 069a79d6af09879060345da9f8b886a73b7810a8 @
> > >     git://anongit.freedesktop.org/gfx-ci/linux
> > >     piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
> > >     git://anongit.freedesktop.org/piglit
> > > 
> > > References
> > > 
> > >     Visible links
> > >     1. https://patchwork.freedesktop.org/series/121150/
> > >     2. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/index.html
> > >     3. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@sysfs_timeslice_duration@invalid.html
> > >     4. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@drm_fdinfo@virtual-busy.html
> > >     5. https://gitlab.freedesktop.org/drm/intel/issues/8414
> > >     6. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
> > >     7. https://gitlab.freedesktop.org/drm/intel/issues/5325
> > >     8. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl2/igt@gem_ctx_isolation@preservation-s3@rcs0.html
> > >     9. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl7/igt@gem_ctx_isolation@preservation-s3@rcs0.html
> > >    10. https://gitlab.freedesktop.org/drm/intel/issues/180
> > >    11. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb6/igt@gem_ctx_persistence@legacy-engines-queued.html
> > >    12. https://bugs.freedesktop.org/show_bug.cgi?id=109271
> > >    13. https://gitlab.freedesktop.org/drm/intel/issues/1099
> > >    14. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-3/igt@gem_eio@in-flight-suspend.html
> > >    15. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-5/igt@gem_eio@in-flight-suspend.html
> > >    16. https://bugs.freedesktop.org/show_bug.cgi?id=103375
> > >    17. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_eio@kms.html
> > >    18. https://gitlab.freedesktop.org/drm/intel/issues/5784
> > >    19. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-6/igt@gem_exec_await@wide-contexts.html
> > >    20. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-8/igt@gem_exec_await@wide-contexts.html
> > >    21. https://gitlab.freedesktop.org/drm/intel/issues/5892
> > >    22. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-5/igt@gem_exec_capture@capture@bcs0-smem.html
> > >    23. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@gem_exec_capture@capture@bcs0-smem.html
> > >    24. https://gitlab.freedesktop.org/drm/intel/issues/7941
> > >    25. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html
> > >    26. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html
> > >    27. https://gitlab.freedesktop.org/drm/intel/issues/2842
> > >    28. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_fair@basic-throttle.html
> > >    29. https://gitlab.freedesktop.org/drm/intel/issues/3539
> > >    30. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_flush@basic-wb-rw-before-default.html
> > >    31. https://gitlab.freedesktop.org/drm/intel/issues/3539
> > >    32. https://gitlab.freedesktop.org/drm/intel/issues/4852
> > >    33. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_exec_reloc@basic-cpu-wc-active.html
> > >    34. https://gitlab.freedesktop.org/drm/intel/issues/3281
> > >    35. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_exec_reloc@basic-wc-read-active.html
> > >    36. https://gitlab.freedesktop.org/drm/intel/issues/3281
> > >    37. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-contexts.html
> > >    38. https://gitlab.freedesktop.org/drm/intel/issues/4812
> > >    39. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_fenced_exec_thrash@no-spare-fences.html
> > >    40. https://gitlab.freedesktop.org/drm/intel/issues/4860
> > >    41. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_lmem_swapping@smem-oom.html
> > >    42. https://gitlab.freedesktop.org/drm/intel/issues/4613
> > >    43. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_mmap@short-mmap.html
> > >    44. https://gitlab.freedesktop.org/drm/intel/issues/4083
> > >    45. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_mmap_gtt@basic-read-write.html
> > >    46. https://gitlab.freedesktop.org/drm/intel/issues/4077
> > >    47. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_mmap_gtt@cpuset-big-copy-xy.html
> > >    48. https://gitlab.freedesktop.org/drm/intel/issues/4077
> > >    49. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_readwrite@read-write.html
> > >    50. https://gitlab.freedesktop.org/drm/intel/issues/3282
> > >    51. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html
> > >    52. https://gitlab.freedesktop.org/drm/intel/issues/8428
> > >    53. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@gem_softpin@evict-snoop.html
> > >    54. https://gitlab.freedesktop.org/drm/intel/issues/4885
> > >    55. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_userptr_blits@forbidden-operations.html
> > >    56. https://gitlab.freedesktop.org/drm/intel/issues/3282
> > >    57. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
> > >    58. https://gitlab.freedesktop.org/drm/intel/issues/3297
> > >    59. https://gitlab.freedesktop.org/drm/intel/issues/4880
> > >    60. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gen9_exec_parse@basic-rejected-ctx-param.html
> > >    61. https://gitlab.freedesktop.org/drm/intel/issues/2527
> > >    62. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@i915_pm_dc@dc6-dpms.html
> > >    63. https://gitlab.freedesktop.org/drm/intel/issues/3361
> > >    64. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-10/igt@i915_pm_dc@dc9-dpms.html
> > >    65. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-7/igt@i915_pm_dc@dc9-dpms.html
> > >    66. https://gitlab.freedesktop.org/drm/intel/issues/4281
> > >    67. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
> > >    68. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
> > >    69. https://gitlab.freedesktop.org/drm/intel/issues/1937
> > >    70. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@i915_pm_lpsp@screens-disabled.html
> > >    71. https://gitlab.freedesktop.org/drm/intel/issues/1902
> > >    72. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@basic-pci-d3-state.html
> > >    73. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@i915_pm_rpm@basic-pci-d3-state.html
> > >    74. https://gitlab.freedesktop.org/drm/intel/issues/7691
> > >    75. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@dpms-lpsp.html
> > >    76. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@dpms-lpsp.html
> > >    77. https://gitlab.freedesktop.org/drm/intel/issues/1397
> > >    78. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-9/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
> > >    79. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-4/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
> > >    80. https://gitlab.freedesktop.org/drm/intel/issues/7940
> > >    81. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-1/igt@i915_pm_rpm@i2c.html
> > >    82. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-2/igt@i915_pm_rpm@i2c.html
> > >    83. https://gitlab.freedesktop.org/drm/intel/issues/8717
> > >    84. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
> > >    85. https://gitlab.freedesktop.org/drm/intel/issues/5190
> > >    86. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_addfb_basic@basic-x-tiled-legacy.html
> > >    87. https://gitlab.freedesktop.org/drm/intel/issues/4212
> > >    88. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-10/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html
> > >    89. https://gitlab.freedesktop.org/drm/intel/issues/8247
> > >    90. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html
> > >    91. https://gitlab.freedesktop.org/drm/intel/issues/8247
> > >    92. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
> > >    93. https://bugs.freedesktop.org/show_bug.cgi?id=109271
> > >    94. https://gitlab.freedesktop.org/drm/intel/issues/1769
> > >    95. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
> > >    96. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
> > >    97. https://gitlab.freedesktop.org/drm/intel/issues/5138
> > >    98. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
> > >    99. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
> > >   100. https://gitlab.freedesktop.org/drm/intel/issues/3743
> > >   101. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
> > >   102. https://bugs.freedesktop.org/show_bug.cgi?id=111614
> > >   103. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
> > >   104. https://gitlab.freedesktop.org/drm/intel/issues/3638
> > >   105. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
> > >   106. https://bugs.freedesktop.org/show_bug.cgi?id=111615
> > >   107. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_big_joiner@basic.html
> > >   108. https://gitlab.freedesktop.org/drm/intel/issues/2705
> > >   109. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_rc_ccs.html
> > >   110. https://gitlab.freedesktop.org/drm/intel/issues/6095
> > >   111. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-b-bad-aux-stride-yf_tiled_ccs.html
> > >   112. https://gitlab.freedesktop.org/drm/intel/issues/3689
> > >   113. https://gitlab.freedesktop.org/drm/intel/issues/5354
> > >   114. https://gitlab.freedesktop.org/drm/intel/issues/6095
> > >   115. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html
> > >   116. https://gitlab.freedesktop.org/drm/intel/issues/3689
> > >   117. https://gitlab.freedesktop.org/drm/intel/issues/3886
> > >   118. https://gitlab.freedesktop.org/drm/intel/issues/5354
> > >   119. https://gitlab.freedesktop.org/drm/intel/issues/6095
> > >   120. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html
> > >   121. https://gitlab.freedesktop.org/drm/intel/issues/3886
> > >   122. https://gitlab.freedesktop.org/drm/intel/issues/6095
> > >   123. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_mtl_mc_ccs.html
> > >   124. https://gitlab.freedesktop.org/drm/intel/issues/5354
> > >   125. https://gitlab.freedesktop.org/drm/intel/issues/6095
> > >   126. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html
> > >   127. https://gitlab.freedesktop.org/drm/intel/issues/7213
> > >   128. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
> > >   129. https://gitlab.freedesktop.org/drm/intel/issues/4087
> > >   130. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
> > >   131. https://gitlab.freedesktop.org/drm/intel/issues/7828
> > >   132. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
> > >   133. https://gitlab.freedesktop.org/drm/intel/issues/7828
> > >   134. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-1.html
> > >   135. https://gitlab.freedesktop.org/drm/intel/issues/3299
> > >   136. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@kms_content_protection@lic@pipe-a-dp-4.html
> > >   137. https://gitlab.freedesktop.org/drm/intel/issues/7173
> > >   138. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
> > >   139. https://gitlab.freedesktop.org/drm/intel/issues/3555
> > >   140. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html
> > >   141. https://bugs.freedesktop.org/show_bug.cgi?id=103375
> > >   142. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
> > >   143. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
> > >   144. https://gitlab.freedesktop.org/drm/intel/issues/8248
> > >   145. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
> > >   146. https://bugs.freedesktop.org/show_bug.cgi?id=109271
> > >   147. https://bugs.freedesktop.org/show_bug.cgi?id=111767
> > >   148. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
> > >   149. https://gitlab.freedesktop.org/drm/intel/issues/2346
> > >   150. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
> > >   151. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
> > >   152. https://gitlab.freedesktop.org/drm/intel/issues/2346
> > >   153. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_dsc@dsc-with-output-formats.html
> > >   154. https://gitlab.freedesktop.org/drm/intel/issues/3555
> > >   155. https://gitlab.freedesktop.org/drm/intel/issues/3840
> > >   156. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
> > >   157. https://gitlab.freedesktop.org/drm/intel/issues/3637
> > >   158. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb1/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
> > >   159. https://gitlab.freedesktop.org/drm/intel/issues/8841
> > >   160. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-default-mode.html
> > >   161. https://gitlab.freedesktop.org/drm/intel/issues/2672
> > >   162. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html
> > >   163. https://gitlab.freedesktop.org/drm/intel/issues/8708
> > >   164. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
> > >   165. https://bugs.freedesktop.org/show_bug.cgi?id=111825
> > >   166. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
> > >   167. https://gitlab.freedesktop.org/drm/intel/issues/1825
> > >   168. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
> > >   169. https://gitlab.freedesktop.org/drm/intel/issues/3458
> > >   170. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-7/igt@kms_hdr@static-swap.html
> > >   171. https://gitlab.freedesktop.org/drm/intel/issues/3555
> > >   172. https://gitlab.freedesktop.org/drm/intel/issues/8228
> > >   173. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@kms_plane@pixel-format@pipe-b-planes.html
> > >   174. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-7/igt@kms_plane@pixel-format@pipe-b-planes.html
> > >   175. https://gitlab.freedesktop.org/drm/intel/issues/1623
> > >   176. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2.html
> > >   177. https://gitlab.freedesktop.org/drm/intel/issues/5176
> > >   178. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4.html
> > >   179. https://gitlab.freedesktop.org/drm/intel/issues/5176
> > >   180. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html
> > >   181. https://gitlab.freedesktop.org/drm/intel/issues/5235
> > >   182. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html
> > >   183. https://gitlab.freedesktop.org/drm/intel/issues/5235
> > >   184. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-snb7/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html
> > >   185. https://bugs.freedesktop.org/show_bug.cgi?id=109271
> > >   186. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2.html
> > >   187. https://gitlab.freedesktop.org/drm/intel/issues/5235
> > >   188. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1.html
> > >   189. https://gitlab.freedesktop.org/drm/intel/issues/5235
> > >   190. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@kms_psr@dpms.html
> > >   191. https://gitlab.freedesktop.org/drm/intel/issues/1072
> > >   192. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@kms_vblank@pipe-c-wait-busy-hang.html
> > >   193. https://gitlab.freedesktop.org/drm/intel/issues/6768
> > >   194. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@v3d/v3d_submit_cl@single-in-sync.html
> > >   195. https://gitlab.freedesktop.org/drm/intel/issues/2575
> > >   196. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@v3d/v3d_submit_csd@job-perfmon.html
> > >   197. https://gitlab.freedesktop.org/drm/intel/issues/2575
> > >   198. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@vc4/vc4_tiling@get-bad-flags.html
> > >   199. https://gitlab.freedesktop.org/drm/intel/issues/7711
> > >   200. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@vc4/vc4_tiling@set-bad-flags.html
> > >   201. https://gitlab.freedesktop.org/drm/intel/issues/7711
> > >   202. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html
> > >   203. https://gitlab.freedesktop.org/drm/intel/issues/6268
> > >   204. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html
> > >   205. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-5/igt@gem_ctx_freq@sysfs@gt0.html
> > >   206. https://gitlab.freedesktop.org/drm/intel/issues/6786
> > >   207. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@gem_ctx_freq@sysfs@gt0.html
> > >   208. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl2/igt@gem_ctx_isolation@preservation-s3@vecs0.html
> > >   209. https://gitlab.freedesktop.org/drm/intel/issues/180
> > >   210. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl7/igt@gem_ctx_isolation@preservation-s3@vecs0.html
> > >   211. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-14/igt@gem_eio@hibernate.html
> > >   212. https://gitlab.freedesktop.org/drm/intel/issues/4391
> > >   213. https://gitlab.freedesktop.org/drm/intel/issues/7975
> > >   214. https://gitlab.freedesktop.org/drm/intel/issues/8213
> > >   215. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-15/igt@gem_eio@hibernate.html
> > >   216. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-16/igt@gem_eio@unwedge-stress.html
> > >   217. https://gitlab.freedesktop.org/drm/intel/issues/5784
> > >   218. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-17/igt@gem_eio@unwedge-stress.html
> > >   219. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@gem_exec_capture@pi@vcs0.html
> > >   220. https://gitlab.freedesktop.org/drm/intel/issues/4475
> > >   221. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-4/igt@gem_exec_capture@pi@vcs0.html
> > >   222. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@gem_exec_capture@pi@vcs1.html
> > >   223. https://gitlab.freedesktop.org/drm/intel/issues/8504
> > >   224. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-4/igt@gem_exec_capture@pi@vcs1.html
> > >   225. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
> > >   226. https://gitlab.freedesktop.org/drm/intel/issues/2842
> > >   227. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@gem_exec_fair@basic-pace-share@rcs0.html
> > >   228. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html
> > >   229. https://gitlab.freedesktop.org/drm/intel/issues/7061
> > >   230. https://gitlab.freedesktop.org/drm/intel/issues/8617
> > >   231. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
> > >   232. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
> > >   233. https://gitlab.freedesktop.org/drm/intel/issues/3591
> > >   234. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
> > >   235. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
> > >   236. https://gitlab.freedesktop.org/drm/intel/issues/7940
> > >   237. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@gem-execbuf-stress@extra-wait-smem0.html
> > >   238. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-17/igt@i915_pm_rpm@modeset-lpsp-stress.html
> > >   239. https://gitlab.freedesktop.org/drm/intel/issues/1397
> > >   240. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress.html
> > >   241. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp.html
> > >   242. https://gitlab.freedesktop.org/drm/intel/issues/1397
> > >   243. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-8/igt@i915_pm_rpm@modeset-non-lpsp.html
> > >   244. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
> > >   245. https://gitlab.freedesktop.org/drm/intel/issues/1397
> > >   246. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
> > >   247. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-2/igt@i915_pm_rpm@pm-caching.html
> > >   248. https://gitlab.freedesktop.org/drm/intel/issues/7940
> > >   249. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-8/igt@i915_pm_rpm@pm-caching.html
> > >   250. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
> > >   251. https://gitlab.freedesktop.org/drm/intel/issues/3743
> > >   252. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
> > >   253. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
> > >   254. https://gitlab.freedesktop.org/drm/intel/issues/2346
> > >   255. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
> > >   256. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-glk3/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
> > >   257. https://gitlab.freedesktop.org/drm/intel/issues/2122
> > >   258. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-glk9/igt@kms_flip@2x-plain-flip-ts-check@ab-hdmi-a1-hdmi-a2.html
> > >   259. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html
> > >   260. https://gitlab.freedesktop.org/drm/intel/issues/79
> > >   261. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-apl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html
> > >   262. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
> > >   263. https://gitlab.freedesktop.org/drm/intel/issues/6880
> > >   264. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
> > >   265. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
> > >   266. https://bugs.freedesktop.org/show_bug.cgi?id=103375
> > >   267. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-11/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
> > >   268. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg2-2/igt@perf_pmu@busy-double-start@vecs1.html
> > >   269. https://gitlab.freedesktop.org/drm/intel/issues/4349
> > >   270. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
> > >   271. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-3/igt@gem_exec_whisper@basic-contexts-forked-all.html
> > >   272. https://gitlab.freedesktop.org/drm/intel/issues/8131
> > >   273. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-5/igt@gem_exec_whisper@basic-contexts-forked-all.html
> > >   274. https://gitlab.freedesktop.org/drm/intel/issues/8628
> > >   275. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
> > >   276. https://gitlab.freedesktop.org/drm/intel/issues/2681
> > >   277. https://gitlab.freedesktop.org/drm/intel/issues/3591
> > >   278. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
> > >   279. https://gitlab.freedesktop.org/drm/intel/issues/2681
> > >   280. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
> > >   281. https://gitlab.freedesktop.org/drm/intel/issues/1397
> > >   282. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
> > >   283. https://gitlab.freedesktop.org/drm/intel/issues/7940
> > >   284. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-19/igt@i915_pm_rpm@i2c.html
> > >   285. https://gitlab.freedesktop.org/drm/intel/issues/4391
> > >   286. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-18/igt@i915_pm_rpm@i2c.html
> > >   287. https://gitlab.freedesktop.org/drm/intel/issues/4391
> > >   288. https://gitlab.freedesktop.org/drm/intel/issues/4423
> > >   289. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
> > >   290. https://gitlab.freedesktop.org/drm/intel/issues/2017
> > >   291. https://gitlab.freedesktop.org/drm/intel/issues/5954
> > >   292. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
> > >   293. https://gitlab.freedesktop.org/drm/intel/issues/2346
> > >   294. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
> > >   295. https://bugs.freedesktop.org/show_bug.cgi?id=110189
> > >   296. https://gitlab.freedesktop.org/drm/intel/issues/3955
> > >   297. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-4/igt@kms_fbcon_fbt@psr.html
> > >   298. https://gitlab.freedesktop.org/drm/intel/issues/3955
> > >   299. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
> > >   300. https://gitlab.freedesktop.org/drm/intel/issues/4070
> > >   301. https://gitlab.freedesktop.org/drm/intel/issues/4816
> > >   302. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
> > >   303. https://gitlab.freedesktop.org/drm/intel/issues/4816
> > >   304. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-dg1-18/igt@kms_psr@sprite_plane_onoff.html
> > >   305. https://gitlab.freedesktop.org/drm/intel/issues/1072
> > >   306. https://gitlab.freedesktop.org/drm/intel/issues/4078
> > >   307. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-dg1-14/igt@kms_psr@sprite_plane_onoff.html
> > >   308. https://gitlab.freedesktop.org/drm/intel/issues/1072
> > >   309. https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13432/shard-mtlp-6/igt@sysfs_timeslice_duration@timeout@vecs0.html
> > >   310. https://gitlab.freedesktop.org/drm/intel/issues/8521
> > >   311. https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121150v3/shard-mtlp-1/igt@sysfs_timeslice_duration@timeout@vecs0.html
> > >   312. https://gitlab.freedesktop.org/drm/intel/issues/6950
> > >   313. https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
diff mbox series

Patch

diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
index ee9f83af7cf6..477df260ae3a 100644
--- a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
+++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
@@ -470,12 +470,19 @@  int intel_guc_slpc_set_ignore_eff_freq(struct intel_guc_slpc *slpc, bool val)
 	ret = slpc_set_param(slpc,
 			     SLPC_PARAM_IGNORE_EFFICIENT_FREQUENCY,
 			     val);
-	if (ret)
+	if (ret) {
 		guc_probe_error(slpc_to_guc(slpc), "Failed to set efficient freq(%d): %pe\n",
 				val, ERR_PTR(ret));
-	else
+	} else {
 		slpc->ignore_eff_freq = val;
 
+		/* Set min to RPn when we disable efficient freq */
+		if (val)
+			ret = slpc_set_param(slpc,
+					     SLPC_PARAM_GLOBAL_MIN_GT_UNSLICE_FREQ_MHZ,
+					     slpc->min_freq);
+	}
+
 	intel_runtime_pm_put(&i915->runtime_pm, wakeref);
 	mutex_unlock(&slpc->lock);
 	return ret;
@@ -602,9 +609,8 @@  static int slpc_set_softlimits(struct intel_guc_slpc *slpc)
 		return ret;
 
 	if (!slpc->min_freq_softlimit) {
-		ret = intel_guc_slpc_get_min_freq(slpc, &slpc->min_freq_softlimit);
-		if (unlikely(ret))
-			return ret;
+		/* Min softlimit is initialized to RPn */
+		slpc->min_freq_softlimit = slpc->min_freq;
 		slpc_to_gt(slpc)->defaults.min_freq = slpc->min_freq_softlimit;
 	} else {
 		return intel_guc_slpc_set_min_freq(slpc,
@@ -755,6 +761,9 @@  int intel_guc_slpc_enable(struct intel_guc_slpc *slpc)
 		return ret;
 	}
 
+	/* Set cached value of ignore efficient freq */
+	intel_guc_slpc_set_ignore_eff_freq(slpc, slpc->ignore_eff_freq);
+
 	/* Revert SLPC min/max to softlimits if necessary */
 	ret = slpc_set_softlimits(slpc);
 	if (unlikely(ret)) {
@@ -765,9 +774,6 @@  int intel_guc_slpc_enable(struct intel_guc_slpc *slpc)
 	/* Set cached media freq ratio mode */
 	intel_guc_slpc_set_media_ratio_mode(slpc, slpc->media_ratio_mode);
 
-	/* Set cached value of ignore efficient freq */
-	intel_guc_slpc_set_ignore_eff_freq(slpc, slpc->ignore_eff_freq);
-
 	return 0;
 }