* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Ensure DSC has enough BW and stays within HW limits
2023-03-06 8:04 [Intel-gfx] [PATCH] drm/i915: Ensure DSC has enough BW and stays within HW limits Stanislav Lisovskiy
@ 2023-03-06 9:36 ` Patchwork
2023-03-06 12:01 ` [Intel-gfx] [PATCH] " Govindapillai, Vinod
` (5 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2023-03-06 9:36 UTC (permalink / raw)
To: Stanislav Lisovskiy; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 1194 bytes --]
== Series Details ==
Series: drm/i915: Ensure DSC has enough BW and stays within HW limits
URL : https://patchwork.freedesktop.org/series/114679/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12813 -> Patchwork_114679v1
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v1/index.html
Participating hosts (4 -> 3)
------------------------------
Missing (1): fi-snb-2520m
Changes
-------
No changes found
Build changes
-------------
* Linux: CI_DRM_12813 -> Patchwork_114679v1
CI-20190529: 20190529
CI_DRM_12813: cd00aad8ed4662fb63f64e711052b2aada1c4a09 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7180: b6b1ceb4fc4d8f83a9540e4628a6c2648514bb19 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_114679v1: cd00aad8ed4662fb63f64e711052b2aada1c4a09 @ git://anongit.freedesktop.org/gfx-ci/linux
### Linux commits
d1221dbfa03c drm/i915: Ensure DSC has enough BW and stays within HW limits
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v1/index.html
[-- Attachment #2: Type: text/html, Size: 1768 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: Ensure DSC has enough BW and stays within HW limits
2023-03-06 8:04 [Intel-gfx] [PATCH] drm/i915: Ensure DSC has enough BW and stays within HW limits Stanislav Lisovskiy
2023-03-06 9:36 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
@ 2023-03-06 12:01 ` Govindapillai, Vinod
2023-03-06 13:17 ` Swati Sharma
` (4 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Govindapillai, Vinod @ 2023-03-06 12:01 UTC (permalink / raw)
To: Lisovskiy, Stanislav, intel-gfx@lists.freedesktop.org; +Cc: Roper, Matthew D
Hi Stan
On Mon, 2023-03-06 at 10:04 +0200, Stanislav Lisovskiy wrote:
> We have currently the issue with some BPPs when using DSC.
> According the HW team the reason is that single VDSC engine instance,
> has some BW limitations which have to be accounted, so whenever
> we approach around 90% of the CDCLK, second VDSC engine have to be
> used. Also that always means using 2 slices, however in our current code
> amount of slices is calculated for some reason independently of
> whether we need to enable 2nd VDSC engine or not, thus leading to
> some logical issues, when according to pixel clock needs we need to enable
> 2nd VDSC engine, however as we calculated previously that we can use
> only single slice, we can't do that and fail.
> So we need to fix that, so that amount of VDSC engines enabled should depend
> on amount of slices and amount of slices should also depend on BW requirements.
> Lastly we didn't have BPP limitation for ADLP/MTL/DG2 implemented which says
> that DSC output BPP's can only be chosen within range of 8 to 27(BSpec 49259).
> This all applied together allows to fix existing FIFO underruns, which we
> have in many DSC tests.
>
> BSpec: 49259
> HSDES: 18027167222
>
> Signed-off-by: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_dp.c | 21 +++++++++++----------
> 1 file changed, 11 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
> index aee93b0d810e..e3680ae95b83 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> @@ -687,6 +687,12 @@ u32 intel_dp_dsc_nearest_valid_bpp(struct drm_i915_private *i915, u32 bpp,
> u32 p
> /* From XE_LPD onwards we support from bpc upto uncompressed bpp-1 BPPs */
> if (DISPLAY_VER(i915) >= 13) {
> bits_per_pixel = min(bits_per_pixel, pipe_bpp - 1);
> +
> + /* According to BSpec, 27 is the max DSC output bpp */
> + bits_per_pixel = min(bits_per_pixel, (u32)27);
> +
> + /* According to BSpec, 8 is the min DSC output bpp */
> + bits_per_pixel = max(bits_per_pixel, (u32)8);
Just before this loop, there is check if if (bits_per_pixel < valid_dsc_bpp[0]) then it returns as
"unsupported BPP". The valid_dsc_bpp[0] is 6. Should this need to be updated to 8 for disp_ver >= 13
onward? Please check..
Reviewed-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
> } else {
> /* Find the nearest match in the array of known BPPs from VESA */
> for (i = 0; i < ARRAY_SIZE(valid_dsc_bpp) - 1; i++) {
> @@ -771,6 +777,9 @@ u8 intel_dp_dsc_get_slice_count(struct intel_dp *intel_dp,
> min_slice_count = DIV_ROUND_UP(mode_clock,
> DP_DSC_MAX_ENC_THROUGHPUT_1);
>
> + if (mode_clock >= ((i915->display.cdclk.max_cdclk_freq * 85) / 100))
> + min_slice_count = max(min_slice_count, (u8)2);
> +
> max_slice_width = drm_dp_dsc_sink_max_slice_width(intel_dp->dsc_dpcd);
> if (max_slice_width < DP_DSC_MIN_SLICE_WIDTH_VALUE) {
> drm_dbg_kms(&i915->drm,
> @@ -1597,16 +1606,8 @@ int intel_dp_dsc_compute_config(struct intel_dp *intel_dp,
> * is greater than the maximum Cdclock and if slice count is even
> * then we need to use 2 VDSC instances.
> */
> - if (adjusted_mode->crtc_clock > dev_priv->display.cdclk.max_cdclk_freq ||
> - pipe_config->bigjoiner_pipes) {
> - if (pipe_config->dsc.slice_count > 1) {
> - pipe_config->dsc.dsc_split = true;
> - } else {
> - drm_dbg_kms(&dev_priv->drm,
> - "Cannot split stream to use 2 VDSC instances\n");
> - return -EINVAL;
> - }
> - }
> + if (pipe_config->bigjoiner_pipes || pipe_config->dsc.slice_count > 1)
> + pipe_config->dsc.dsc_split = true;
>
> ret = intel_dp_dsc_compute_params(&dig_port->base, pipe_config);
> if (ret < 0) {
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: Ensure DSC has enough BW and stays within HW limits
2023-03-06 8:04 [Intel-gfx] [PATCH] drm/i915: Ensure DSC has enough BW and stays within HW limits Stanislav Lisovskiy
2023-03-06 9:36 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
2023-03-06 12:01 ` [Intel-gfx] [PATCH] " Govindapillai, Vinod
@ 2023-03-06 13:17 ` Swati Sharma
2023-03-06 13:40 ` Jani Nikula
` (3 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Swati Sharma @ 2023-03-06 13:17 UTC (permalink / raw)
To: Stanislav Lisovskiy, intel-gfx; +Cc: matthew.d.roper
On 06-Mar-23 1:34 PM, Stanislav Lisovskiy wrote:
> We have currently the issue with some BPPs when using DSC
>> Nitpick: We currently have an issue with some BPPs when using DSC.
> According the HW team the reason is that single VDSC engine instance,
>> Nitpick: According "to" the ..
> has some BW limitations which have to be accounted, so whenever
> we approach around 90% of the CDCLK, second VDSC engine have to be
> used. Also that always means using 2 slices, however in our current code
> amount of slices is calculated for some reason independently of
> whether we need to enable 2nd VDSC engine or not, thus leading to
> some logical issues, when according to pixel clock needs we need to enable
> 2nd VDSC engine, however as we calculated previously that we can use
> only single slice, we can't do that and fail.
> So we need to fix that, so that amount of VDSC engines enabled should depend
> on amount of slices and amount of slices should also depend on BW requirements.
> Lastly we didn't have BPP limitation for ADLP/MTL/DG2 implemented which says
> that DSC output BPP's can only be chosen within range of 8 to 27(BSpec 49259).
> This all applied together allows to fix existing FIFO underruns, which we
> have in many DSC tests.
>
> BSpec: 49259
> HSDES: 18027167222
Also, please add closes
https://gitlab.freedesktop.org/drm/intel/-/issues/8231
>
> Signed-off-by: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_dp.c | 21 +++++++++++----------
> 1 file changed, 11 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
> index aee93b0d810e..e3680ae95b83 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> @@ -687,6 +687,12 @@ u32 intel_dp_dsc_nearest_valid_bpp(struct drm_i915_private *i915, u32 bpp, u32 p
> /* From XE_LPD onwards we support from bpc upto uncompressed bpp-1 BPPs */
> if (DISPLAY_VER(i915) >= 13) {
> bits_per_pixel = min(bits_per_pixel, pipe_bpp - 1);
> +
> + /* According to BSpec, 27 is the max DSC output bpp */
> + bits_per_pixel = min(bits_per_pixel, (u32)27);
> +
> + /* According to BSpec, 8 is the min DSC output bpp */
> + bits_per_pixel = max(bits_per_pixel, (u32)8);
> } else {
> /* Find the nearest match in the array of known BPPs from VESA */
> for (i = 0; i < ARRAY_SIZE(valid_dsc_bpp) - 1; i++) {
> @@ -771,6 +777,9 @@ u8 intel_dp_dsc_get_slice_count(struct intel_dp *intel_dp,
> min_slice_count = DIV_ROUND_UP(mode_clock,
> DP_DSC_MAX_ENC_THROUGHPUT_1);
>
> + if (mode_clock >= ((i915->display.cdclk.max_cdclk_freq * 85) / 100))
> + min_slice_count = max(min_slice_count, (u8)2);
> +
> max_slice_width = drm_dp_dsc_sink_max_slice_width(intel_dp->dsc_dpcd);
> if (max_slice_width < DP_DSC_MIN_SLICE_WIDTH_VALUE) {
> drm_dbg_kms(&i915->drm,
> @@ -1597,16 +1606,8 @@ int intel_dp_dsc_compute_config(struct intel_dp *intel_dp,
> * is greater than the maximum Cdclock and if slice count is even
> * then we need to use 2 VDSC instances.
> */
> - if (adjusted_mode->crtc_clock > dev_priv->display.cdclk.max_cdclk_freq ||
> - pipe_config->bigjoiner_pipes) {
> - if (pipe_config->dsc.slice_count > 1) {
> - pipe_config->dsc.dsc_split = true;
> - } else {
> - drm_dbg_kms(&dev_priv->drm,
> - "Cannot split stream to use 2 VDSC instances\n");
> - return -EINVAL;
> - }
> - }
> + if (pipe_config->bigjoiner_pipes || pipe_config->dsc.slice_count > 1)
> + pipe_config->dsc.dsc_split = true;
>
> ret = intel_dp_dsc_compute_params(&dig_port->base, pipe_config);
> if (ret < 0) {
--
~Swati Sharma
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: Ensure DSC has enough BW and stays within HW limits
2023-03-06 8:04 [Intel-gfx] [PATCH] drm/i915: Ensure DSC has enough BW and stays within HW limits Stanislav Lisovskiy
` (2 preceding siblings ...)
2023-03-06 13:17 ` Swati Sharma
@ 2023-03-06 13:40 ` Jani Nikula
2023-03-08 12:56 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Ensure DSC has enough BW and stays within HW limits (rev3) Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Jani Nikula @ 2023-03-06 13:40 UTC (permalink / raw)
To: Stanislav Lisovskiy, intel-gfx; +Cc: matthew.d.roper
On Mon, 06 Mar 2023, Stanislav Lisovskiy <stanislav.lisovskiy@intel.com> wrote:
> We have currently the issue with some BPPs when using DSC.
> According the HW team the reason is that single VDSC engine instance,
> has some BW limitations which have to be accounted, so whenever
> we approach around 90% of the CDCLK, second VDSC engine have to be
> used. Also that always means using 2 slices, however in our current code
> amount of slices is calculated for some reason independently of
> whether we need to enable 2nd VDSC engine or not, thus leading to
> some logical issues, when according to pixel clock needs we need to enable
> 2nd VDSC engine, however as we calculated previously that we can use
> only single slice, we can't do that and fail.
> So we need to fix that, so that amount of VDSC engines enabled should depend
> on amount of slices and amount of slices should also depend on BW requirements.
> Lastly we didn't have BPP limitation for ADLP/MTL/DG2 implemented which says
> that DSC output BPP's can only be chosen within range of 8 to 27(BSpec 49259).
> This all applied together allows to fix existing FIFO underruns, which we
> have in many DSC tests.
>
> BSpec: 49259
> HSDES: 18027167222
>
> Signed-off-by: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_dp.c | 21 +++++++++++----------
> 1 file changed, 11 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_dp.c b/drivers/gpu/drm/i915/display/intel_dp.c
> index aee93b0d810e..e3680ae95b83 100644
> --- a/drivers/gpu/drm/i915/display/intel_dp.c
> +++ b/drivers/gpu/drm/i915/display/intel_dp.c
> @@ -687,6 +687,12 @@ u32 intel_dp_dsc_nearest_valid_bpp(struct drm_i915_private *i915, u32 bpp, u32 p
> /* From XE_LPD onwards we support from bpc upto uncompressed bpp-1 BPPs */
> if (DISPLAY_VER(i915) >= 13) {
> bits_per_pixel = min(bits_per_pixel, pipe_bpp - 1);
> +
> + /* According to BSpec, 27 is the max DSC output bpp */
> + bits_per_pixel = min(bits_per_pixel, (u32)27);
> +
> + /* According to BSpec, 8 is the min DSC output bpp */
> + bits_per_pixel = max(bits_per_pixel, (u32)8);
Please use clamp() or clamp_t() for ranges. Avoid casting the
params. The _t variants are for handling that.
> } else {
> /* Find the nearest match in the array of known BPPs from VESA */
> for (i = 0; i < ARRAY_SIZE(valid_dsc_bpp) - 1; i++) {
> @@ -771,6 +777,9 @@ u8 intel_dp_dsc_get_slice_count(struct intel_dp *intel_dp,
> min_slice_count = DIV_ROUND_UP(mode_clock,
> DP_DSC_MAX_ENC_THROUGHPUT_1);
>
> + if (mode_clock >= ((i915->display.cdclk.max_cdclk_freq * 85) / 100))
> + min_slice_count = max(min_slice_count, (u8)2);
> +
> max_slice_width = drm_dp_dsc_sink_max_slice_width(intel_dp->dsc_dpcd);
> if (max_slice_width < DP_DSC_MIN_SLICE_WIDTH_VALUE) {
> drm_dbg_kms(&i915->drm,
> @@ -1597,16 +1606,8 @@ int intel_dp_dsc_compute_config(struct intel_dp *intel_dp,
> * is greater than the maximum Cdclock and if slice count is even
> * then we need to use 2 VDSC instances.
> */
> - if (adjusted_mode->crtc_clock > dev_priv->display.cdclk.max_cdclk_freq ||
> - pipe_config->bigjoiner_pipes) {
> - if (pipe_config->dsc.slice_count > 1) {
> - pipe_config->dsc.dsc_split = true;
> - } else {
> - drm_dbg_kms(&dev_priv->drm,
> - "Cannot split stream to use 2 VDSC instances\n");
> - return -EINVAL;
> - }
> - }
> + if (pipe_config->bigjoiner_pipes || pipe_config->dsc.slice_count > 1)
> + pipe_config->dsc.dsc_split = true;
>
> ret = intel_dp_dsc_compute_params(&dig_port->base, pipe_config);
> if (ret < 0) {
--
Jani Nikula, Intel Open Source Graphics Center
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Ensure DSC has enough BW and stays within HW limits (rev3)
2023-03-06 8:04 [Intel-gfx] [PATCH] drm/i915: Ensure DSC has enough BW and stays within HW limits Stanislav Lisovskiy
` (3 preceding siblings ...)
2023-03-06 13:40 ` Jani Nikula
@ 2023-03-08 12:56 ` Patchwork
2023-03-08 13:19 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2023-03-10 3:51 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2023-03-08 12:56 UTC (permalink / raw)
To: Lisovskiy, Stanislav; +Cc: intel-gfx
== Series Details ==
Series: drm/i915: Ensure DSC has enough BW and stays within HW limits (rev3)
URL : https://patchwork.freedesktop.org/series/114679/
State : warning
== Summary ==
Error: dim checkpatch failed
702a04c13be5 drm/i915: Ensure DSC has enough BW and stays within HW limits
-:16: WARNING:COMMIT_LOG_LONG_LINE: Possible unwrapped commit description (prefer a maximum 75 chars per line)
#16:
So we need to fix that, so that amount of VDSC engines enabled should depend
-:39: WARNING:MINMAX: min() should probably be min_t(u32, bits_per_pixel, 27)
#39: FILE: drivers/gpu/drm/i915/display/intel_dp.c:692:
+ bits_per_pixel = min(bits_per_pixel, (u32)27);
-:42: WARNING:MINMAX: max() should probably be max_t(u32, bits_per_pixel, 8)
#42: FILE: drivers/gpu/drm/i915/display/intel_dp.c:695:
+ bits_per_pixel = max(bits_per_pixel, (u32)8);
total: 0 errors, 3 warnings, 0 checks, 39 lines checked
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Ensure DSC has enough BW and stays within HW limits (rev3)
2023-03-06 8:04 [Intel-gfx] [PATCH] drm/i915: Ensure DSC has enough BW and stays within HW limits Stanislav Lisovskiy
` (4 preceding siblings ...)
2023-03-08 12:56 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Ensure DSC has enough BW and stays within HW limits (rev3) Patchwork
@ 2023-03-08 13:19 ` Patchwork
2023-03-10 3:51 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2023-03-08 13:19 UTC (permalink / raw)
To: Lisovskiy, Stanislav; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 10046 bytes --]
== Series Details ==
Series: drm/i915: Ensure DSC has enough BW and stays within HW limits (rev3)
URL : https://patchwork.freedesktop.org/series/114679/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12827 -> Patchwork_114679v3
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/index.html
Participating hosts (35 -> 36)
------------------------------
Additional (2): fi-kbl-soraka bat-dg1-6
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_114679v3 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_huc_copy@huc-copy:
- fi-kbl-soraka: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#2190])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-kbl-soraka: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#4613]) +3 similar issues
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html
* igt@gem_mmap@basic:
- bat-dg1-6: NOTRUN -> [SKIP][3] ([i915#4083])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/bat-dg1-6/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg1-6: NOTRUN -> [SKIP][4] ([i915#4079]) +1 similar issue
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/bat-dg1-6/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-dg1-6: NOTRUN -> [SKIP][5] ([i915#4077]) +2 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/bat-dg1-6/igt@gem_tiled_fence_blits@basic.html
* igt@i915_pm_backlight@basic-brightness:
- bat-dg1-6: NOTRUN -> [SKIP][6] ([i915#7561])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/bat-dg1-6/igt@i915_pm_backlight@basic-brightness.html
* igt@i915_pm_rps@basic-api:
- bat-dg1-6: NOTRUN -> [SKIP][7] ([i915#6621])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/bat-dg1-6/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@gem_contexts:
- fi-kbl-soraka: NOTRUN -> [INCOMPLETE][8] ([i915#7913])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/fi-kbl-soraka/igt@i915_selftest@live@gem_contexts.html
* igt@i915_selftest@live@gt_lrc:
- bat-rpls-1: [PASS][9] -> [INCOMPLETE][10] ([i915#4983])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/bat-rpls-1/igt@i915_selftest@live@gt_lrc.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/bat-rpls-1/igt@i915_selftest@live@gt_lrc.html
* igt@i915_selftest@live@gt_pm:
- fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][11] ([i915#1886])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@migrate:
- bat-adlp-9: [PASS][12] -> [DMESG-FAIL][13] ([i915#7699])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/bat-adlp-9/igt@i915_selftest@live@migrate.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/bat-adlp-9/igt@i915_selftest@live@migrate.html
- bat-dg2-11: [PASS][14] -> [DMESG-WARN][15] ([i915#7699])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/bat-dg2-11/igt@i915_selftest@live@migrate.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/bat-dg2-11/igt@i915_selftest@live@migrate.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg1-6: NOTRUN -> [SKIP][16] ([i915#4215])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/bat-dg1-6/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- bat-dg1-6: NOTRUN -> [SKIP][17] ([i915#4212]) +7 similar issues
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/bat-dg1-6/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- fi-kbl-soraka: NOTRUN -> [SKIP][18] ([fdo#109271]) +16 similar issues
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/fi-kbl-soraka/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- bat-dg1-6: NOTRUN -> [SKIP][19] ([i915#7828]) +8 similar issues
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/bat-dg1-6/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- bat-dg1-6: NOTRUN -> [SKIP][20] ([i915#4103] / [i915#4213]) +1 similar issue
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/bat-dg1-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg1-6: NOTRUN -> [SKIP][21] ([fdo#109285])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/bat-dg1-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_psr@sprite_plane_onoff:
- bat-dg1-6: NOTRUN -> [SKIP][22] ([i915#1072] / [i915#4078]) +3 similar issues
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/bat-dg1-6/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg1-6: NOTRUN -> [SKIP][23] ([i915#3555])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/bat-dg1-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-gtt:
- bat-dg1-6: NOTRUN -> [SKIP][24] ([i915#3708] / [i915#4077]) +1 similar issue
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/bat-dg1-6/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-read:
- bat-dg1-6: NOTRUN -> [SKIP][25] ([i915#3708]) +3 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/bat-dg1-6/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-userptr:
- bat-dg1-6: NOTRUN -> [SKIP][26] ([i915#3708] / [i915#4873])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/bat-dg1-6/igt@prime_vgem@basic-userptr.html
#### Possible fixes ####
* igt@i915_selftest@live@hangcheck:
- fi-skl-guc: [DMESG-WARN][27] ([i915#8073]) -> [PASS][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/fi-skl-guc/igt@i915_selftest@live@hangcheck.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/fi-skl-guc/igt@i915_selftest@live@hangcheck.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-2:
- bat-dg1-5: [FAIL][29] ([fdo#103375]) -> [PASS][30] +3 similar issues
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/bat-dg1-5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-2.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/bat-dg1-5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-2.html
#### Warnings ####
* igt@i915_selftest@live@slpc:
- bat-rpls-2: [DMESG-FAIL][31] ([i915#6367] / [i915#7913]) -> [DMESG-FAIL][32] ([i915#6367] / [i915#7913] / [i915#7996])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/bat-rpls-2/igt@i915_selftest@live@slpc.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/bat-rpls-2/igt@i915_selftest@live@slpc.html
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7996]: https://gitlab.freedesktop.org/drm/intel/issues/7996
[i915#8073]: https://gitlab.freedesktop.org/drm/intel/issues/8073
Build changes
-------------
* Linux: CI_DRM_12827 -> Patchwork_114679v3
CI-20190529: 20190529
CI_DRM_12827: b794b8d84dc0470ee58467386f41870e81a86580 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7183: 3434cef8be4e487644a740039ad15123cd094526 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_114679v3: b794b8d84dc0470ee58467386f41870e81a86580 @ git://anongit.freedesktop.org/gfx-ci/linux
### Linux commits
5e773aa576f8 drm/i915: Ensure DSC has enough BW and stays within HW limits
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/index.html
[-- Attachment #2: Type: text/html, Size: 11889 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915: Ensure DSC has enough BW and stays within HW limits (rev3)
2023-03-06 8:04 [Intel-gfx] [PATCH] drm/i915: Ensure DSC has enough BW and stays within HW limits Stanislav Lisovskiy
` (5 preceding siblings ...)
2023-03-08 13:19 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
@ 2023-03-10 3:51 ` Patchwork
6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2023-03-10 3:51 UTC (permalink / raw)
To: Lisovskiy, Stanislav; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 35093 bytes --]
== Series Details ==
Series: drm/i915: Ensure DSC has enough BW and stays within HW limits (rev3)
URL : https://patchwork.freedesktop.org/series/114679/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12827_full -> Patchwork_114679v3_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 11)
------------------------------
Additional (3): shard-rkl0 shard-tglu-9 shard-tglu0
Known issues
------------
Here are the changes found in Patchwork_114679v3_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@feature_discovery@psr2:
- shard-tglu-9: NOTRUN -> [SKIP][1] ([i915#658])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-9/igt@feature_discovery@psr2.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-tglu-9: NOTRUN -> [SKIP][2] ([i915#5325])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-9/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-tglu-10: NOTRUN -> [SKIP][3] ([fdo#109314])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-tglu-9: NOTRUN -> [FAIL][4] ([i915#2842])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-9/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-glk: [PASS][5] -> [FAIL][6] ([i915#2842]) +1 similar issue
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/shard-glk2/igt@gem_exec_fair@basic-throttle@rcs0.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-glk8/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-tglu-10: NOTRUN -> [SKIP][7] ([fdo#109313])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_params@secure-non-root:
- shard-tglu-10: NOTRUN -> [SKIP][8] ([fdo#112283])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@gem_exec_params@secure-non-root.html
* igt@gem_lmem_swapping@heavy-random:
- shard-tglu-9: NOTRUN -> [SKIP][9] ([i915#4613])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-9/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-tglu-10: NOTRUN -> [SKIP][10] ([i915#4613]) +1 similar issue
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_pxp@create-regular-context-2:
- shard-tglu-10: NOTRUN -> [SKIP][11] ([i915#4270]) +1 similar issue
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@gem_pxp@create-regular-context-2.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglu-10: NOTRUN -> [SKIP][12] ([i915#3297]) +1 similar issue
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-tglu-9: NOTRUN -> [SKIP][13] ([i915#3297])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-9/igt@gem_userptr_blits@unsync-overlap.html
* igt@gen3_render_tiledy_blits:
- shard-tglu-10: NOTRUN -> [SKIP][14] ([fdo#109289]) +3 similar issues
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@gen3_render_tiledy_blits.html
* igt@gen9_exec_parse@allowed-all:
- shard-apl: [PASS][15] -> [ABORT][16] ([i915#5566])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/shard-apl3/igt@gen9_exec_parse@allowed-all.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-apl4/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu-10: NOTRUN -> [SKIP][17] ([i915#2527] / [i915#2856]) +1 similar issue
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@i915_pm_rpm@modeset-non-lpsp:
- shard-tglu-10: NOTRUN -> [SKIP][18] ([fdo#111644] / [i915#1397]) +1 similar issue
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@i915_pm_rpm@modeset-non-lpsp.html
* igt@i915_suspend@forcewake:
- shard-apl: [PASS][19] -> [ABORT][20] ([i915#180]) +1 similar issue
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/shard-apl2/igt@i915_suspend@forcewake.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-apl3/igt@i915_suspend@forcewake.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-tglu-10: NOTRUN -> [SKIP][21] ([i915#5286]) +1 similar issue
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-tglu-9: NOTRUN -> [SKIP][22] ([fdo#111615] / [i915#1845] / [i915#7651]) +2 similar issues
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-9/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu-10: NOTRUN -> [SKIP][23] ([fdo#111615]) +2 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_ccs:
- shard-tglu-10: NOTRUN -> [SKIP][24] ([i915#3689]) +6 similar issues
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_ccs.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs:
- shard-tglu-10: NOTRUN -> [SKIP][25] ([fdo#111615] / [i915#3689])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@kms_ccs@pipe-a-crc-primary-rotation-180-yf_tiled_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-basic-4_tiled_dg2_mc_ccs:
- shard-tglu-10: NOTRUN -> [SKIP][26] ([i915#6095]) +3 similar issues
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@kms_ccs@pipe-b-crc-primary-basic-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs:
- shard-tglu-10: NOTRUN -> [SKIP][27] ([i915#3689] / [i915#3886]) +1 similar issue
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_mc_ccs:
- shard-tglu-10: NOTRUN -> [SKIP][28] ([i915#3689] / [i915#6095]) +3 similar issues
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_mc_ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu-9: NOTRUN -> [SKIP][29] ([i915#3742])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-9/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-tglu-10: NOTRUN -> [SKIP][30] ([fdo#111827])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-tglu-9: NOTRUN -> [SKIP][31] ([i915#7828]) +1 similar issue
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-9/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-tglu-10: NOTRUN -> [SKIP][32] ([i915#7828]) +3 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-tglu-9: NOTRUN -> [SKIP][33] ([i915#1845]) +9 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-9/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-tglu-10: NOTRUN -> [SKIP][34] ([i915#3555]) +8 similar issues
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-tglu-10: NOTRUN -> [SKIP][35] ([fdo#109274]) +1 similar issue
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-apl: [PASS][36] -> [FAIL][37] ([i915#2346])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_dp_tiled_display@basic-test-pattern:
- shard-tglu-10: NOTRUN -> [SKIP][38] ([i915#426])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@kms_dp_tiled_display@basic-test-pattern.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-glk: NOTRUN -> [FAIL][39] ([i915#4767])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-glk8/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-tglu-9: NOTRUN -> [SKIP][40] ([fdo#109274] / [i915#3637])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-9/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@basic-flip-vs-dpms:
- shard-tglu-9: NOTRUN -> [SKIP][41] ([i915#3637]) +1 similar issue
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-9/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-tglu-9: NOTRUN -> [SKIP][42] ([i915#3555]) +2 similar issues
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-tglu-10: NOTRUN -> [SKIP][43] ([i915#2587] / [i915#2672])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt:
- shard-tglu-10: NOTRUN -> [SKIP][44] ([fdo#110189]) +9 similar issues
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-glk: NOTRUN -> [SKIP][45] ([fdo#109271]) +4 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-glk8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite:
- shard-tglu-9: NOTRUN -> [SKIP][46] ([i915#1849]) +17 similar issues
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu:
- shard-tglu-10: NOTRUN -> [SKIP][47] ([fdo#109280]) +15 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
- shard-tglu-10: NOTRUN -> [SKIP][48] ([i915#658]) +3 similar issues
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area:
- shard-tglu-10: NOTRUN -> [SKIP][49] ([fdo#111068] / [i915#658])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
* igt@kms_psr@cursor_plane_move:
- shard-tglu-9: NOTRUN -> [SKIP][50] ([fdo#110189]) +1 similar issue
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-9/igt@kms_psr@cursor_plane_move.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu-10: NOTRUN -> [SKIP][51] ([i915#5461])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-tglu-10: NOTRUN -> [SKIP][52] ([fdo#111615] / [i915#5289])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_sequence@get-busy:
- shard-tglu-9: NOTRUN -> [SKIP][53] ([i915#1845] / [i915#7651]) +23 similar issues
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-9/igt@kms_sequence@get-busy.html
* igt@kms_universal_plane@universal-plane-pipe-d-sanity:
- shard-tglu-9: NOTRUN -> [SKIP][54] ([fdo#109274])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-9/igt@kms_universal_plane@universal-plane-pipe-d-sanity.html
* igt@perf_pmu@event-wait@rcs0:
- shard-tglu-9: NOTRUN -> [SKIP][55] ([fdo#112283])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-9/igt@perf_pmu@event-wait@rcs0.html
* igt@v3d/v3d_get_param@base-params:
- shard-tglu-10: NOTRUN -> [SKIP][56] ([fdo#109315] / [i915#2575])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@v3d/v3d_get_param@base-params.html
* igt@vc4/vc4_tiling@get-bad-flags:
- shard-tglu-9: NOTRUN -> [SKIP][57] ([i915#2575])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-9/igt@vc4/vc4_tiling@get-bad-flags.html
* igt@vc4/vc4_tiling@set-bad-handle:
- shard-tglu-10: NOTRUN -> [SKIP][58] ([i915#2575]) +1 similar issue
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-10/igt@vc4/vc4_tiling@set-bad-handle.html
#### Possible fixes ####
* igt@drm_fdinfo@virtual-idle:
- {shard-rkl}: [FAIL][59] ([i915#7742]) -> [PASS][60] +1 similar issue
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/shard-rkl-4/igt@drm_fdinfo@virtual-idle.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-rkl-2/igt@drm_fdinfo@virtual-idle.html
* igt@drm_read@invalid-buffer:
- {shard-rkl}: [SKIP][61] ([i915#4098]) -> [PASS][62]
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/shard-rkl-3/igt@drm_read@invalid-buffer.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-rkl-6/igt@drm_read@invalid-buffer.html
* igt@gem_ctx_persistence@legacy-engines-hang@blt:
- {shard-rkl}: [SKIP][63] ([i915#6252]) -> [PASS][64]
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-rkl-6/igt@gem_ctx_persistence@legacy-engines-hang@blt.html
* igt@gem_exec_balancer@fairslice:
- {shard-rkl}: [SKIP][65] ([i915#6259]) -> [PASS][66]
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/shard-rkl-5/igt@gem_exec_balancer@fairslice.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-rkl-6/igt@gem_exec_balancer@fairslice.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- {shard-rkl}: [FAIL][67] ([i915#2842]) -> [PASS][68] +1 similar issue
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/shard-rkl-3/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- {shard-tglu}: [FAIL][69] ([i915#2842]) -> [PASS][70]
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/shard-tglu-5/igt@gem_exec_fair@basic-throttle@rcs0.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-tglu-5/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- {shard-rkl}: [SKIP][71] ([fdo#109313]) -> [PASS][72]
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/shard-rkl-6/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-rkl-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_reloc@basic-gtt-read-noreloc:
- {shard-rkl}: [SKIP][73] ([i915#3281]) -> [PASS][74] +14 similar issues
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
* igt@gem_pread@snoop:
- {shard-rkl}: [SKIP][75] ([i915#3282]) -> [PASS][76] +2 similar issues
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/shard-rkl-4/igt@gem_pread@snoop.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-rkl-5/igt@gem_pread@snoop.html
* igt@gen9_exec_parse@batch-invalid-length:
- {shard-rkl}: [SKIP][77] ([i915#2527]) -> [PASS][78] +3 similar issues
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/shard-rkl-2/igt@gen9_exec_parse@batch-invalid-length.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html
* igt@i915_pm_dc@dc5-psr:
- {shard-rkl}: [SKIP][79] ([i915#658]) -> [PASS][80]
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/shard-rkl-3/igt@i915_pm_dc@dc5-psr.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-rkl-6/igt@i915_pm_dc@dc5-psr.html
* igt@i915_pm_rpm@cursor-dpms:
- {shard-rkl}: [SKIP][81] ([i915#1849]) -> [PASS][82] +2 similar issues
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/shard-rkl-5/igt@i915_pm_rpm@cursor-dpms.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-rkl-6/igt@i915_pm_rpm@cursor-dpms.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- {shard-rkl}: [SKIP][83] ([i915#1397]) -> [PASS][84]
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/shard-rkl-3/igt@i915_pm_rpm@modeset-lpsp-stress.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@i915_pm_rpm@modeset-non-lpsp:
- {shard-dg1}: [SKIP][85] ([i915#1397]) -> [PASS][86]
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/shard-dg1-14/igt@i915_pm_rpm@modeset-non-lpsp.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-dg1-17/igt@i915_pm_rpm@modeset-non-lpsp.html
* {igt@i915_power@sanity}:
- {shard-rkl}: [SKIP][87] ([i915#7984]) -> [PASS][88]
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/shard-rkl-2/igt@i915_power@sanity.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-rkl-5/igt@i915_power@sanity.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][89] ([i915#2346]) -> [PASS][90]
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
- {shard-rkl}: [SKIP][91] ([i915#1849] / [i915#4098]) -> [PASS][92] +16 similar issues
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_psr@cursor_blt:
- {shard-rkl}: [SKIP][93] ([i915#1072]) -> [PASS][94] +2 similar issues
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/shard-rkl-3/igt@kms_psr@cursor_blt.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-rkl-6/igt@kms_psr@cursor_blt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- {shard-rkl}: [SKIP][95] ([i915#5461]) -> [PASS][96]
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/shard-rkl-5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-rotation-90:
- {shard-rkl}: [SKIP][97] ([i915#1845] / [i915#4098]) -> [PASS][98] +28 similar issues
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/shard-rkl-3/igt@kms_rotation_crc@primary-rotation-90.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-rkl-6/igt@kms_rotation_crc@primary-rotation-90.html
* igt@perf@gen12-oa-tlb-invalidate:
- {shard-rkl}: [SKIP][99] ([fdo#109289]) -> [PASS][100]
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/shard-rkl-5/igt@perf@gen12-oa-tlb-invalidate.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-rkl-2/igt@perf@gen12-oa-tlb-invalidate.html
* igt@perf@oa-exponents:
- shard-glk: [ABORT][101] ([i915#5213]) -> [PASS][102]
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12827/shard-glk2/igt@perf@oa-exponents.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/shard-glk8/igt@perf@oa-exponents.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2232]: https://gitlab.freedesktop.org/drm/intel/issues/2232
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
[i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036
[i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884
[i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958
[i915#5115]: https://gitlab.freedesktop.org/drm/intel/issues/5115
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5431]: https://gitlab.freedesktop.org/drm/intel/issues/5431
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
[i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247
[i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
[i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252
[i915#6259]: https://gitlab.freedesktop.org/drm/intel/issues/6259
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6355]: https://gitlab.freedesktop.org/drm/intel/issues/6355
[i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
[i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
[i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037
[i915#7052]: https://gitlab.freedesktop.org/drm/intel/issues/7052
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7128]: https://gitlab.freedesktop.org/drm/intel/issues/7128
[i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276
[i915#7294]: https://gitlab.freedesktop.org/drm/intel/issues/7294
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582
[i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984
[i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8273]: https://gitlab.freedesktop.org/drm/intel/issues/8273
[i915#8275]: https://gitlab.freedesktop.org/drm/intel/issues/8275
Build changes
-------------
* Linux: CI_DRM_12827 -> Patchwork_114679v3
CI-20190529: 20190529
CI_DRM_12827: b794b8d84dc0470ee58467386f41870e81a86580 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7183: 3434cef8be4e487644a740039ad15123cd094526 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_114679v3: b794b8d84dc0470ee58467386f41870e81a86580 @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114679v3/index.html
[-- Attachment #2: Type: text/html, Size: 32412 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread