* [PATCH 0/3] drm/i915: intel_color_check() cleanup
@ 2024-05-23 18:28 Ville Syrjala
2024-05-23 18:28 ` [PATCH 1/3] drm/i915: Plumb the entire atomic state into intel_color_check() Ville Syrjala
` (6 more replies)
0 siblings, 7 replies; 8+ messages in thread
From: Ville Syrjala @ 2024-05-23 18:28 UTC (permalink / raw)
To: intel-gfx
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Eliminate the crtc_state->state footgun from intel_color_check(),
and hide some mundane C8 plane details inside it.
Ville Syrjälä (3):
drm/i915: Plumb the entire atomic state into intel_color_check()
drm/i915: Hide the intel_crtc_needs_color_update() inside
intel_color_check()
drm/i915: Bury c8_planes_changed() in intel_color_check()
drivers/gpu/drm/i915/display/intel_color.c | 125 ++++++++++++-------
drivers/gpu/drm/i915/display/intel_color.h | 4 +-
drivers/gpu/drm/i915/display/intel_display.c | 26 +---
3 files changed, 85 insertions(+), 70 deletions(-)
--
2.44.1
^ permalink raw reply [flat|nested] 8+ messages in thread* [PATCH 1/3] drm/i915: Plumb the entire atomic state into intel_color_check() 2024-05-23 18:28 [PATCH 0/3] drm/i915: intel_color_check() cleanup Ville Syrjala @ 2024-05-23 18:28 ` Ville Syrjala 2024-05-23 18:28 ` [PATCH 2/3] drm/i915: Hide the intel_crtc_needs_color_update() inside intel_color_check() Ville Syrjala ` (5 subsequent siblings) 6 siblings, 0 replies; 8+ messages in thread From: Ville Syrjala @ 2024-05-23 18:28 UTC (permalink / raw) To: intel-gfx From: Ville Syrjälä <ville.syrjala@linux.intel.com> Bunch of stuff in intel_color_check() needs to look at both the old and new crtc states. Currently we do that by digging the full atomic state via the crtc_state->state pointer. That thing is a total footgun if I ever saw one, as it's only valid during specific parts of the atomic flow. A lot of people have been bitten by this thing in the past when trying to use it after it's no longer valid. Take a small step towards elimination of the footgun by not using it in the inte_color_check(). Instead we plumb in the entire atomic state all the way from the top. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- drivers/gpu/drm/i915/display/intel_color.c | 111 +++++++++++-------- drivers/gpu/drm/i915/display/intel_color.h | 4 +- drivers/gpu/drm/i915/display/intel_display.c | 2 +- 3 files changed, 69 insertions(+), 48 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_color.c b/drivers/gpu/drm/i915/display/intel_color.c index 82b155708422..ede628b58a5c 100644 --- a/drivers/gpu/drm/i915/display/intel_color.c +++ b/drivers/gpu/drm/i915/display/intel_color.c @@ -30,7 +30,8 @@ #include "intel_dsb.h" struct intel_color_funcs { - int (*color_check)(struct intel_crtc_state *crtc_state); + int (*color_check)(struct intel_atomic_state *state, + struct intel_crtc *crtc); /* * Program non-arming double buffered color management registers * before vblank evasion. The registers should then latch after @@ -1942,11 +1943,9 @@ bool intel_color_uses_dsb(const struct intel_crtc_state *crtc_state) return crtc_state->dsb; } -static bool intel_can_preload_luts(const struct intel_crtc_state *new_crtc_state) +static bool intel_can_preload_luts(struct intel_atomic_state *state, + struct intel_crtc *crtc) { - struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->uapi.crtc); - struct intel_atomic_state *state = - to_intel_atomic_state(new_crtc_state->uapi.state); const struct intel_crtc_state *old_crtc_state = intel_atomic_get_old_crtc_state(state, crtc); @@ -1954,11 +1953,9 @@ static bool intel_can_preload_luts(const struct intel_crtc_state *new_crtc_state !old_crtc_state->pre_csc_lut; } -static bool vlv_can_preload_luts(const struct intel_crtc_state *new_crtc_state) +static bool vlv_can_preload_luts(struct intel_atomic_state *state, + struct intel_crtc *crtc) { - struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->uapi.crtc); - struct intel_atomic_state *state = - to_intel_atomic_state(new_crtc_state->uapi.state); const struct intel_crtc_state *old_crtc_state = intel_atomic_get_old_crtc_state(state, crtc); @@ -1966,13 +1963,13 @@ static bool vlv_can_preload_luts(const struct intel_crtc_state *new_crtc_state) !old_crtc_state->post_csc_lut; } -static bool chv_can_preload_luts(const struct intel_crtc_state *new_crtc_state) +static bool chv_can_preload_luts(struct intel_atomic_state *state, + struct intel_crtc *crtc) { - struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->uapi.crtc); - struct intel_atomic_state *state = - to_intel_atomic_state(new_crtc_state->uapi.state); const struct intel_crtc_state *old_crtc_state = intel_atomic_get_old_crtc_state(state, crtc); + const struct intel_crtc_state *new_crtc_state = + intel_atomic_get_new_crtc_state(state, crtc); /* * CGM_PIPE_MODE is itself single buffered. We'd have to @@ -1982,14 +1979,15 @@ static bool chv_can_preload_luts(const struct intel_crtc_state *new_crtc_state) if (old_crtc_state->cgm_mode || new_crtc_state->cgm_mode) return false; - return vlv_can_preload_luts(new_crtc_state); + return vlv_can_preload_luts(state, crtc); } -int intel_color_check(struct intel_crtc_state *crtc_state) +int intel_color_check(struct intel_atomic_state *state, + struct intel_crtc *crtc) { - struct drm_i915_private *i915 = to_i915(crtc_state->uapi.crtc->dev); + struct drm_i915_private *i915 = to_i915(state->base.dev); - return i915->display.funcs.color->color_check(crtc_state); + return i915->display.funcs.color->color_check(state, crtc); } void intel_color_get_config(struct intel_crtc_state *crtc_state) @@ -2039,14 +2037,14 @@ static bool need_plane_update(struct intel_plane *plane, } static int -intel_color_add_affected_planes(struct intel_crtc_state *new_crtc_state) +intel_color_add_affected_planes(struct intel_atomic_state *state, + struct intel_crtc *crtc) { - struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->uapi.crtc); - struct drm_i915_private *i915 = to_i915(crtc->base.dev); - struct intel_atomic_state *state = - to_intel_atomic_state(new_crtc_state->uapi.state); + struct drm_i915_private *i915 = to_i915(state->base.dev); const struct intel_crtc_state *old_crtc_state = intel_atomic_get_old_crtc_state(state, crtc); + struct intel_crtc_state *new_crtc_state = + intel_atomic_get_new_crtc_state(state, crtc); struct intel_plane *plane; if (!new_crtc_state->hw.active || @@ -2240,9 +2238,12 @@ static void intel_assign_luts(struct intel_crtc_state *crtc_state) crtc_state->hw.gamma_lut); } -static int i9xx_color_check(struct intel_crtc_state *crtc_state) +static int i9xx_color_check(struct intel_atomic_state *state, + struct intel_crtc *crtc) { - struct drm_i915_private *i915 = to_i915(crtc_state->uapi.crtc->dev); + struct drm_i915_private *i915 = to_i915(state->base.dev); + struct intel_crtc_state *crtc_state = + intel_atomic_get_new_crtc_state(state, crtc); int ret; ret = check_luts(crtc_state); @@ -2262,13 +2263,13 @@ static int i9xx_color_check(struct intel_crtc_state *crtc_state) return ret; } - ret = intel_color_add_affected_planes(crtc_state); + ret = intel_color_add_affected_planes(state, crtc); if (ret) return ret; intel_assign_luts(crtc_state); - crtc_state->preload_luts = intel_can_preload_luts(crtc_state); + crtc_state->preload_luts = intel_can_preload_luts(state, crtc); return 0; } @@ -2277,8 +2278,11 @@ static int i9xx_color_check(struct intel_crtc_state *crtc_state) * VLV color pipeline: * u0.10 -> WGC csc -> u0.10 -> pipe gamma -> u0.10 */ -static int vlv_color_check(struct intel_crtc_state *crtc_state) +static int vlv_color_check(struct intel_atomic_state *state, + struct intel_crtc *crtc) { + struct intel_crtc_state *crtc_state = + intel_atomic_get_new_crtc_state(state, crtc); int ret; ret = check_luts(crtc_state); @@ -2293,7 +2297,7 @@ static int vlv_color_check(struct intel_crtc_state *crtc_state) crtc_state->wgc_enable = crtc_state->hw.ctm; - ret = intel_color_add_affected_planes(crtc_state); + ret = intel_color_add_affected_planes(state, crtc); if (ret) return ret; @@ -2301,7 +2305,7 @@ static int vlv_color_check(struct intel_crtc_state *crtc_state) vlv_assign_csc(crtc_state); - crtc_state->preload_luts = vlv_can_preload_luts(crtc_state); + crtc_state->preload_luts = vlv_can_preload_luts(state, crtc); return 0; } @@ -2336,8 +2340,11 @@ static u32 chv_cgm_mode(const struct intel_crtc_state *crtc_state) * We always bypass the WGC csc and use the CGM csc * instead since it has degamma and better precision. */ -static int chv_color_check(struct intel_crtc_state *crtc_state) +static int chv_color_check(struct intel_atomic_state *state, + struct intel_crtc *crtc) { + struct intel_crtc_state *crtc_state = + intel_atomic_get_new_crtc_state(state, crtc); int ret; ret = check_luts(crtc_state); @@ -2362,7 +2369,7 @@ static int chv_color_check(struct intel_crtc_state *crtc_state) */ crtc_state->wgc_enable = false; - ret = intel_color_add_affected_planes(crtc_state); + ret = intel_color_add_affected_planes(state, crtc); if (ret) return ret; @@ -2370,7 +2377,7 @@ static int chv_color_check(struct intel_crtc_state *crtc_state) chv_assign_csc(crtc_state); - crtc_state->preload_luts = chv_can_preload_luts(crtc_state); + crtc_state->preload_luts = chv_can_preload_luts(state, crtc); return 0; } @@ -2454,9 +2461,12 @@ static int ilk_assign_luts(struct intel_crtc_state *crtc_state) return 0; } -static int ilk_color_check(struct intel_crtc_state *crtc_state) +static int ilk_color_check(struct intel_atomic_state *state, + struct intel_crtc *crtc) { - struct drm_i915_private *i915 = to_i915(crtc_state->uapi.crtc->dev); + struct drm_i915_private *i915 = to_i915(state->base.dev); + struct intel_crtc_state *crtc_state = + intel_atomic_get_new_crtc_state(state, crtc); int ret; ret = check_luts(crtc_state); @@ -2484,7 +2494,7 @@ static int ilk_color_check(struct intel_crtc_state *crtc_state) crtc_state->csc_mode = ilk_csc_mode(crtc_state); - ret = intel_color_add_affected_planes(crtc_state); + ret = intel_color_add_affected_planes(state, crtc); if (ret) return ret; @@ -2494,7 +2504,7 @@ static int ilk_color_check(struct intel_crtc_state *crtc_state) ilk_assign_csc(crtc_state); - crtc_state->preload_luts = intel_can_preload_luts(crtc_state); + crtc_state->preload_luts = intel_can_preload_luts(state, crtc); return 0; } @@ -2555,9 +2565,12 @@ static int ivb_assign_luts(struct intel_crtc_state *crtc_state) return 0; } -static int ivb_color_check(struct intel_crtc_state *crtc_state) +static int ivb_color_check(struct intel_atomic_state *state, + struct intel_crtc *crtc) { - struct drm_i915_private *i915 = to_i915(crtc_state->uapi.crtc->dev); + struct drm_i915_private *i915 = to_i915(state->base.dev); + struct intel_crtc_state *crtc_state = + intel_atomic_get_new_crtc_state(state, crtc); int ret; ret = check_luts(crtc_state); @@ -2592,7 +2605,7 @@ static int ivb_color_check(struct intel_crtc_state *crtc_state) crtc_state->csc_mode = ivb_csc_mode(crtc_state); - ret = intel_color_add_affected_planes(crtc_state); + ret = intel_color_add_affected_planes(state, crtc); if (ret) return ret; @@ -2602,7 +2615,7 @@ static int ivb_color_check(struct intel_crtc_state *crtc_state) ilk_assign_csc(crtc_state); - crtc_state->preload_luts = intel_can_preload_luts(crtc_state); + crtc_state->preload_luts = intel_can_preload_luts(state, crtc); return 0; } @@ -2686,9 +2699,12 @@ static int glk_check_luts(const struct intel_crtc_state *crtc_state) return _check_luts(crtc_state, degamma_tests, gamma_tests); } -static int glk_color_check(struct intel_crtc_state *crtc_state) +static int glk_color_check(struct intel_atomic_state *state, + struct intel_crtc *crtc) { - struct drm_i915_private *i915 = to_i915(crtc_state->uapi.crtc->dev); + struct drm_i915_private *i915 = to_i915(state->base.dev); + struct intel_crtc_state *crtc_state = + intel_atomic_get_new_crtc_state(state, crtc); int ret; ret = glk_check_luts(crtc_state); @@ -2725,7 +2741,7 @@ static int glk_color_check(struct intel_crtc_state *crtc_state) crtc_state->csc_mode = 0; - ret = intel_color_add_affected_planes(crtc_state); + ret = intel_color_add_affected_planes(state, crtc); if (ret) return ret; @@ -2735,7 +2751,7 @@ static int glk_color_check(struct intel_crtc_state *crtc_state) ilk_assign_csc(crtc_state); - crtc_state->preload_luts = intel_can_preload_luts(crtc_state); + crtc_state->preload_luts = intel_can_preload_luts(state, crtc); return 0; } @@ -2783,8 +2799,11 @@ static u32 icl_csc_mode(const struct intel_crtc_state *crtc_state) return csc_mode; } -static int icl_color_check(struct intel_crtc_state *crtc_state) +static int icl_color_check(struct intel_atomic_state *state, + struct intel_crtc *crtc) { + struct intel_crtc_state *crtc_state = + intel_atomic_get_new_crtc_state(state, crtc); int ret; ret = check_luts(crtc_state); @@ -2799,7 +2818,7 @@ static int icl_color_check(struct intel_crtc_state *crtc_state) icl_assign_csc(crtc_state); - crtc_state->preload_luts = intel_can_preload_luts(crtc_state); + crtc_state->preload_luts = intel_can_preload_luts(state, crtc); return 0; } diff --git a/drivers/gpu/drm/i915/display/intel_color.h b/drivers/gpu/drm/i915/display/intel_color.h index 8ecd36149def..21ba4aa02e7b 100644 --- a/drivers/gpu/drm/i915/display/intel_color.h +++ b/drivers/gpu/drm/i915/display/intel_color.h @@ -8,6 +8,7 @@ #include <linux/types.h> +struct intel_atomic_state; struct intel_crtc_state; struct intel_crtc; struct drm_i915_private; @@ -16,7 +17,8 @@ struct drm_property_blob; void intel_color_init_hooks(struct drm_i915_private *i915); int intel_color_init(struct drm_i915_private *i915); void intel_color_crtc_init(struct intel_crtc *crtc); -int intel_color_check(struct intel_crtc_state *crtc_state); +int intel_color_check(struct intel_atomic_state *state, + struct intel_crtc *crtc); void intel_color_prepare_commit(struct intel_crtc_state *crtc_state); void intel_color_cleanup_commit(struct intel_crtc_state *crtc_state); bool intel_color_uses_dsb(const struct intel_crtc_state *crtc_state); diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c index 1e8e2fd52cf6..3b2765b371f8 100644 --- a/drivers/gpu/drm/i915/display/intel_display.c +++ b/drivers/gpu/drm/i915/display/intel_display.c @@ -4255,7 +4255,7 @@ static int intel_crtc_atomic_check(struct intel_atomic_state *state, crtc_state->uapi.color_mgmt_changed = true; if (intel_crtc_needs_color_update(crtc_state)) { - ret = intel_color_check(crtc_state); + ret = intel_color_check(state, crtc); if (ret) return ret; } -- 2.44.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 2/3] drm/i915: Hide the intel_crtc_needs_color_update() inside intel_color_check() 2024-05-23 18:28 [PATCH 0/3] drm/i915: intel_color_check() cleanup Ville Syrjala 2024-05-23 18:28 ` [PATCH 1/3] drm/i915: Plumb the entire atomic state into intel_color_check() Ville Syrjala @ 2024-05-23 18:28 ` Ville Syrjala 2024-05-23 18:28 ` [PATCH 3/3] drm/i915: Bury c8_planes_changed() in intel_color_check() Ville Syrjala ` (4 subsequent siblings) 6 siblings, 0 replies; 8+ messages in thread From: Ville Syrjala @ 2024-05-23 18:28 UTC (permalink / raw) To: intel-gfx From: Ville Syrjälä <ville.syrjala@linux.intel.com> Move the intel_crtc_needs_color_update() into intel_color_check() so that the caller doesn't have to care about this. This will also enable us to hide the c8_planes_changed() thing better. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- drivers/gpu/drm/i915/display/intel_color.c | 5 +++++ drivers/gpu/drm/i915/display/intel_display.c | 8 +++----- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_color.c b/drivers/gpu/drm/i915/display/intel_color.c index ede628b58a5c..a2ddce100fcc 100644 --- a/drivers/gpu/drm/i915/display/intel_color.c +++ b/drivers/gpu/drm/i915/display/intel_color.c @@ -1986,6 +1986,11 @@ int intel_color_check(struct intel_atomic_state *state, struct intel_crtc *crtc) { struct drm_i915_private *i915 = to_i915(state->base.dev); + const struct intel_crtc_state *new_crtc_state = + intel_atomic_get_new_crtc_state(state, crtc); + + if (!intel_crtc_needs_color_update(new_crtc_state)) + return 0; return i915->display.funcs.color->color_check(state, crtc); } diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c index 3b2765b371f8..84f46370c88d 100644 --- a/drivers/gpu/drm/i915/display/intel_display.c +++ b/drivers/gpu/drm/i915/display/intel_display.c @@ -4254,11 +4254,9 @@ static int intel_crtc_atomic_check(struct intel_atomic_state *state, if (c8_planes_changed(crtc_state)) crtc_state->uapi.color_mgmt_changed = true; - if (intel_crtc_needs_color_update(crtc_state)) { - ret = intel_color_check(state, crtc); - if (ret) - return ret; - } + ret = intel_color_check(state, crtc); + if (ret) + return ret; ret = intel_compute_pipe_wm(state, crtc); if (ret) { -- 2.44.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 3/3] drm/i915: Bury c8_planes_changed() in intel_color_check() 2024-05-23 18:28 [PATCH 0/3] drm/i915: intel_color_check() cleanup Ville Syrjala 2024-05-23 18:28 ` [PATCH 1/3] drm/i915: Plumb the entire atomic state into intel_color_check() Ville Syrjala 2024-05-23 18:28 ` [PATCH 2/3] drm/i915: Hide the intel_crtc_needs_color_update() inside intel_color_check() Ville Syrjala @ 2024-05-23 18:28 ` Ville Syrjala 2024-05-23 19:39 ` ✗ Fi.CI.SPARSE: warning for drm/i915: intel_color_check() cleanup Patchwork ` (3 subsequent siblings) 6 siblings, 0 replies; 8+ messages in thread From: Ville Syrjala @ 2024-05-23 18:28 UTC (permalink / raw) To: intel-gfx From: Ville Syrjälä <ville.syrjala@linux.intel.com> The c8_planes_changed() check in the high level atomic code is a bit of an eyesore. Push it inside intel_color_check() so the high level code doesn't have to care about this stuff. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- drivers/gpu/drm/i915/display/intel_color.c | 11 ++++++++++- drivers/gpu/drm/i915/display/intel_display.c | 18 ------------------ 2 files changed, 10 insertions(+), 19 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_color.c b/drivers/gpu/drm/i915/display/intel_color.c index a2ddce100fcc..a9d526ab107a 100644 --- a/drivers/gpu/drm/i915/display/intel_color.c +++ b/drivers/gpu/drm/i915/display/intel_color.c @@ -1986,9 +1986,18 @@ int intel_color_check(struct intel_atomic_state *state, struct intel_crtc *crtc) { struct drm_i915_private *i915 = to_i915(state->base.dev); - const struct intel_crtc_state *new_crtc_state = + const struct intel_crtc_state *old_crtc_state = + intel_atomic_get_old_crtc_state(state, crtc); + struct intel_crtc_state *new_crtc_state = intel_atomic_get_new_crtc_state(state, crtc); + /* + * May need to update pipe gamma enable bits + * when C8 planes are getting enabled/disabled. + */ + if (!old_crtc_state->c8_planes != !new_crtc_state->c8_planes) + new_crtc_state->uapi.color_mgmt_changed = true; + if (!intel_crtc_needs_color_update(new_crtc_state)) return 0; diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c index 84f46370c88d..c3f142495d0b 100644 --- a/drivers/gpu/drm/i915/display/intel_display.c +++ b/drivers/gpu/drm/i915/display/intel_display.c @@ -4138,17 +4138,6 @@ static int icl_check_nv12_planes(struct intel_crtc_state *crtc_state) return 0; } -static bool c8_planes_changed(const struct intel_crtc_state *new_crtc_state) -{ - struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->uapi.crtc); - struct intel_atomic_state *state = - to_intel_atomic_state(new_crtc_state->uapi.state); - const struct intel_crtc_state *old_crtc_state = - intel_atomic_get_old_crtc_state(state, crtc); - - return !old_crtc_state->c8_planes != !new_crtc_state->c8_planes; -} - static u16 hsw_linetime_wm(const struct intel_crtc_state *crtc_state) { const struct drm_display_mode *pipe_mode = @@ -4247,13 +4236,6 @@ static int intel_crtc_atomic_check(struct intel_atomic_state *state, return ret; } - /* - * May need to update pipe gamma enable bits - * when C8 planes are getting enabled/disabled. - */ - if (c8_planes_changed(crtc_state)) - crtc_state->uapi.color_mgmt_changed = true; - ret = intel_color_check(state, crtc); if (ret) return ret; -- 2.44.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* ✗ Fi.CI.SPARSE: warning for drm/i915: intel_color_check() cleanup 2024-05-23 18:28 [PATCH 0/3] drm/i915: intel_color_check() cleanup Ville Syrjala ` (2 preceding siblings ...) 2024-05-23 18:28 ` [PATCH 3/3] drm/i915: Bury c8_planes_changed() in intel_color_check() Ville Syrjala @ 2024-05-23 19:39 ` Patchwork 2024-05-23 19:48 ` ✓ Fi.CI.BAT: success " Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-05-23 19:39 UTC (permalink / raw) To: Ville Syrjala; +Cc: intel-gfx == Series Details == Series: drm/i915: intel_color_check() cleanup URL : https://patchwork.freedesktop.org/series/133985/ State : warning == Summary == Error: dim sparse failed Sparse version: v0.6.2 Fast mode used, each commit won't be checked separately. +./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return' +drivers/gpu/drm/i915/display/intel_de.h:105:15: warning: trying to copy expression type 31 +drivers/gpu/drm/i915/display/intel_display_types.h:2064:16: warning: trying to copy expression type 31 +drivers/gpu/drm/i915/display/intel_display_types.h:2072:16: warning: trying to copy expression type 31 +drivers/gpu/drm/i915/display/intel_display_types.h:2072:16: warning: unreplaced symbol 'crtc' +drivers/gpu/drm/i915/display/intel_display_types.h:2072:16: warning: unreplaced symbol 'return' +drivers/gpu/drm/i915/display/intel_display_types.h:2072:16: warning: unreplaced symbol 'state' +./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' +./include/drm/drm_atomic.h:630:16: warning: unreplaced symbol 'state' +./include/drm/drm_atomic.h:630:43: warning: unreplaced symbol 'crtc' +./include/drm/drm_atomic.h:630:43: warning: unreplaced symbol 'return' +./include/drm/drm_atomic.h:630:9: warning: unreplaced symbol 'return' +./include/drm/drm_crtc.h:1267:16: warning: unreplaced symbol 'crtc' +./include/drm/drm_crtc.h:1267:9: warning: unreplaced symbol 'return' +./include/linux/find.h:203:45: warning: shift count is negative (-12) ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ Fi.CI.BAT: success for drm/i915: intel_color_check() cleanup 2024-05-23 18:28 [PATCH 0/3] drm/i915: intel_color_check() cleanup Ville Syrjala ` (3 preceding siblings ...) 2024-05-23 19:39 ` ✗ Fi.CI.SPARSE: warning for drm/i915: intel_color_check() cleanup Patchwork @ 2024-05-23 19:48 ` Patchwork 2024-05-24 9:17 ` [PATCH 0/3] " Jani Nikula 2024-05-24 21:40 ` ✗ Fi.CI.IGT: failure for " Patchwork 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-05-23 19:48 UTC (permalink / raw) To: Ville Syrjala; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 4425 bytes --] == Series Details == Series: drm/i915: intel_color_check() cleanup URL : https://patchwork.freedesktop.org/series/133985/ State : success == Summary == CI Bug Log - changes from CI_DRM_14813 -> Patchwork_133985v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/index.html Participating hosts (43 -> 42) ------------------------------ Additional (1): fi-kbl-8809g Missing (2): bat-jsl-1 fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_133985v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-kbl-8809g: NOTRUN -> [SKIP][1] ([i915#2190]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - fi-kbl-8809g: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/fi-kbl-8809g/igt@gem_lmem_swapping@parallel-random-engines.html * igt@i915_module_load@load: - bat-arls-3: [PASS][3] -> [ABORT][4] ([i915#11041]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/bat-arls-3/igt@i915_module_load@load.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/bat-arls-3/igt@i915_module_load@load.html * igt@kms_dsc@dsc-basic: - fi-kbl-8809g: NOTRUN -> [SKIP][5] +30 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/fi-kbl-8809g/igt@kms_dsc@dsc-basic.html #### Possible fixes #### * igt@gem_lmem_swapping@basic@lmem0: - bat-dg2-8: [FAIL][6] ([i915#10378]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/bat-dg2-8/igt@gem_lmem_swapping@basic@lmem0.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/bat-dg2-8/igt@gem_lmem_swapping@basic@lmem0.html * igt@i915_selftest@live@execlists: - fi-bsw-n3050: [ABORT][8] ([i915#10594]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/fi-bsw-n3050/igt@i915_selftest@live@execlists.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/fi-bsw-n3050/igt@i915_selftest@live@execlists.html * igt@kms_flip@basic-flip-vs-modeset@c-dp6: - {bat-mtlp-9}: [DMESG-FAIL][10] ([i915#11009]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/bat-mtlp-9/igt@kms_flip@basic-flip-vs-modeset@c-dp6.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/bat-mtlp-9/igt@kms_flip@basic-flip-vs-modeset@c-dp6.html * igt@kms_flip@basic-flip-vs-modeset@d-dp6: - {bat-mtlp-9}: [FAIL][12] ([i915#6121]) -> [PASS][13] +4 other tests pass [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/bat-mtlp-9/igt@kms_flip@basic-flip-vs-modeset@d-dp6.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/bat-mtlp-9/igt@kms_flip@basic-flip-vs-modeset@d-dp6.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378 [i915#10594]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10594 [i915#10979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10979 [i915#11009]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11009 [i915#11041]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11041 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#6121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6121 Build changes ------------- * Linux: CI_DRM_14813 -> Patchwork_133985v1 CI-20190529: 20190529 CI_DRM_14813: 1385623a20ad940dab90bfaa4bc01fe599506e09 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7870: ad1cea5f9b4ce0f4a036cbda2da3d8979fb1ce15 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_133985v1: 1385623a20ad940dab90bfaa4bc01fe599506e09 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/index.html [-- Attachment #2: Type: text/html, Size: 5155 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 0/3] drm/i915: intel_color_check() cleanup 2024-05-23 18:28 [PATCH 0/3] drm/i915: intel_color_check() cleanup Ville Syrjala ` (4 preceding siblings ...) 2024-05-23 19:48 ` ✓ Fi.CI.BAT: success " Patchwork @ 2024-05-24 9:17 ` Jani Nikula 2024-05-24 21:40 ` ✗ Fi.CI.IGT: failure for " Patchwork 6 siblings, 0 replies; 8+ messages in thread From: Jani Nikula @ 2024-05-24 9:17 UTC (permalink / raw) To: Ville Syrjala, intel-gfx On Thu, 23 May 2024, Ville Syrjala <ville.syrjala@linux.intel.com> wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > Eliminate the crtc_state->state footgun from intel_color_check(), > and hide some mundane C8 plane details inside it. On the series, Reviewed-by: Jani Nikula <jani.nikula@intel.com> > > Ville Syrjälä (3): > drm/i915: Plumb the entire atomic state into intel_color_check() > drm/i915: Hide the intel_crtc_needs_color_update() inside > intel_color_check() > drm/i915: Bury c8_planes_changed() in intel_color_check() > > drivers/gpu/drm/i915/display/intel_color.c | 125 ++++++++++++------- > drivers/gpu/drm/i915/display/intel_color.h | 4 +- > drivers/gpu/drm/i915/display/intel_display.c | 26 +--- > 3 files changed, 85 insertions(+), 70 deletions(-) -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Fi.CI.IGT: failure for drm/i915: intel_color_check() cleanup 2024-05-23 18:28 [PATCH 0/3] drm/i915: intel_color_check() cleanup Ville Syrjala ` (5 preceding siblings ...) 2024-05-24 9:17 ` [PATCH 0/3] " Jani Nikula @ 2024-05-24 21:40 ` Patchwork 6 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2024-05-24 21:40 UTC (permalink / raw) To: Ville Syrjala; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 78478 bytes --] == Series Details == Series: drm/i915: intel_color_check() cleanup URL : https://patchwork.freedesktop.org/series/133985/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14813_full -> Patchwork_133985v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_133985v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_133985v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_133985v1_full: ### IGT changes ### #### Possible regressions #### * igt@gem_softpin@noreloc-s3: - shard-rkl: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-rkl-5/igt@gem_softpin@noreloc-s3.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-6/igt@gem_softpin@noreloc-s3.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][3] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html Known issues ------------ Here are the changes found in Patchwork_133985v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_fdinfo@idle@rcs0: - shard-rkl: [PASS][4] -> [FAIL][5] ([i915#7742]) +1 other test fail [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-rkl-5/igt@drm_fdinfo@idle@rcs0.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-6/igt@drm_fdinfo@idle@rcs0.html * igt@drm_fdinfo@isolation@vecs0: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8414]) +12 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-16/igt@drm_fdinfo@isolation@vecs0.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +6 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-6/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@drm_fdinfo@virtual-idle: - shard-rkl: NOTRUN -> [FAIL][8] ([i915#7742]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@drm_fdinfo@virtual-idle.html * igt@gem_bad_reloc@negative-reloc: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#3281]) +10 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-1/igt@gem_bad_reloc@negative-reloc.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#3281]) +11 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-13/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-18/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_close_race@multigpu-basic-threads: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#7697]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#6335]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#8562]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-8/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#8555]) +2 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@legacy-engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][18] ([i915#1099]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-snb7/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#280]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-18/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-5/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#4812]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-6/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@bonded-sync: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#4771]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#4525]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@gem_exec_balancer@parallel.html * igt@gem_exec_capture@many-4k-incremental: - shard-rkl: NOTRUN -> [FAIL][24] ([i915#9606]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@gem_exec_capture@many-4k-incremental.html - shard-dg1: NOTRUN -> [FAIL][25] ([i915#9606]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-18/igt@gem_exec_capture@many-4k-incremental.html * igt@gem_exec_capture@many-4k-zero: - shard-mtlp: NOTRUN -> [FAIL][26] ([i915#9606]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@gem_exec_capture@many-4k-zero.html - shard-dg2: NOTRUN -> [FAIL][27] ([i915#9606]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-4/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) +6 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-16/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-glk: NOTRUN -> [FAIL][29] ([i915#2842]) +1 other test fail [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-glk6/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none-share: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-3/igt@gem_exec_fair@basic-none-share.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [PASS][31] -> [FAIL][32] ([i915#2842]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-glk8/igt@gem_exec_fair@basic-none-share@rcs0.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-glk3/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo: - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4473]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-4/igt@gem_exec_fair@basic-none-solo.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: NOTRUN -> [FAIL][34] ([i915#2842]) +4 other tests fail [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglu: [PASS][35] -> [FAIL][36] ([i915#2842]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-tglu-4/igt@gem_exec_fair@basic-pace@rcs0.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-tglu-6/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4812]) +4 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@gem_exec_fence@submit.html * igt@gem_exec_reloc@basic-active: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3281]) +9 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-3/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-gtt-read: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#3281]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4537] / [i915#4812]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-3/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-rkl: NOTRUN -> [ABORT][41] ([i915#7975] / [i915#8213]) +1 other test abort [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4860]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-3/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4860]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_swapping@heavy-random@lmem0: - shard-dg1: NOTRUN -> [FAIL][44] ([i915#10378]) +1 other test fail [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-18/igt@gem_lmem_swapping@heavy-random@lmem0.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg2: [PASS][45] -> [FAIL][46] ([i915#10378]) +1 other test fail [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-2/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html - shard-dg1: NOTRUN -> [SKIP][47] ([i915#4565]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg2: NOTRUN -> [FAIL][48] ([i915#10446]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-8/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@smem-oom: - shard-glk: NOTRUN -> [SKIP][49] ([i915#4613]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-glk6/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][50] -> [TIMEOUT][51] ([i915#5493]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-random: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#4613]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@gem_lmem_swapping@verify-random.html - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4613]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-4/igt@gem_lmem_swapping@verify-random.html * igt@gem_lmem_swapping@verify-random@lmem0: - shard-dg1: NOTRUN -> [INCOMPLETE][54] ([i915#1982]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-17/igt@gem_lmem_swapping@verify-random@lmem0.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4077]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4077]) +7 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-4/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4083]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-4/igt@gem_mmap_wc@copy.html - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4083]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4083]) +11 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-18/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#3282]) +10 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@gem_pread@exhaustion.html * igt@gem_pread@self: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#3282]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-3/igt@gem_pread@self.html * igt@gem_pread@uncached: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3282]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@gem_pread@uncached.html * igt@gem_pxp@display-protected-crc: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#4270]) +4 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-5/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4270]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-4/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4270]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4270]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#5190] / [i915#8428]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-6/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#8428]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4079]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#3282]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4885]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-16/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#3297]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#3297]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3297]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@gem_userptr_blits@unsync-unmap-cycles.html - shard-dg2: NOTRUN -> [SKIP][75] ([i915#3297]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-4/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][76] +18 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-3/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@allowed-single: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#2856]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#2527]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-16/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#2856]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-6/igt@gen9_exec_parse@unaligned-access.html * igt@gen9_exec_parse@unaligned-jump: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#2527]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-1/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_fb_tiling: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#4881]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-18/igt@i915_fb_tiling.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#6412]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-5/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#8399]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rpm@gem-mmap-type@gtt-smem0: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#8431]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][85] -> [FAIL][86] ([i915#10031]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-rkl-5/igt@i915_suspend@basic-s3-without-i915.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#5190]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4215] / [i915#5190]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-3/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#4212]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#4212]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-4/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#8709]) +11 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#9531]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#1769] / [i915#3555]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][94] +7 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#5286]) +7 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][96] ([i915#4538] / [i915#5286]) +5 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-18/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#3638]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-16/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#3638]) +4 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#4538] / [i915#5190]) +9 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][100] +42 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#4538]) +10 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#10307] / [i915#10434] / [i915#6095]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-4/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs: - shard-dg1: NOTRUN -> [SKIP][103] ([i915#10278]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#6095]) +7 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#6095]) +93 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#10307] / [i915#6095]) +118 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-11/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-dp-4.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#6095]) +103 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-13/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#4087]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_chamelium_audio@dp-audio-edid: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#7828]) +8 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-4/igt@kms_chamelium_audio@dp-audio-edid.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#7828]) +10 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-16/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#7828]) +7 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#7828]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_content_protection@content-type-change: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#9424]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-16/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#3299]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-3/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-rkl: NOTRUN -> [SKIP][115] ([i915#3116]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-1/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#3299]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#9424]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-5/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#7118] / [i915#9424]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-4/igt@kms_content_protection@type1.html - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#3555] / [i915#6944] / [i915#9424]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#7116] / [i915#9424]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#3555] / [i915#8814]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#3359]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#3359]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-dg1: NOTRUN -> [SKIP][124] ([i915#3359]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-16/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#9809]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#4213]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#4103]) +2 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-dg1: NOTRUN -> [SKIP][128] ([i915#4103] / [i915#4213]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-16/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#4103] / [i915#4213]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#9723]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#9723]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#3804]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#8812]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-13/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-basic: - shard-dg1: NOTRUN -> [SKIP][134] ([i915#3555] / [i915#3840]) +2 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#3555] / [i915#3840]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#1839]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-3/igt@kms_feature_discovery@display-3x.html - shard-rkl: NOTRUN -> [SKIP][137] ([i915#1839]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-1/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#9337]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-dpms: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#9934]) +3 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#3637]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1: - shard-snb: [PASS][141] -> [FAIL][142] ([i915#2122]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-snb6/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#2672]) +3 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][144] ([i915#2587] / [i915#2672]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][145] ([i915#2672] / [i915#3555]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#2672]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#2672]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#2672] / [i915#3555]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: - shard-dg2: NOTRUN -> [FAIL][149] ([i915#6880]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#8708]) +18 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#5439]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#3458]) +10 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#8708]) +16 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#1825]) +38 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#8708]) +4 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#10055]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#3023]) +25 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#10433] / [i915#3458]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#5354]) +30 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#1825]) +7 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#3458]) +21 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#3555] / [i915#8228]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#3555] / [i915#8228]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-6/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#3555] / [i915#8228]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@kms_hdr@static-toggle.html * igt@kms_invalid_mode@bad-vsync-start: - shard-glk: NOTRUN -> [INCOMPLETE][165] ([i915#2295] / [i915#9878]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-glk5/igt@kms_invalid_mode@bad-vsync-start.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#6301]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-5/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#8821]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-8/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#8806]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-3/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][169] ([i915#8292]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#9423]) +7 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#9423]) +13 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][172] ([i915#9423]) +7 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#5176] / [i915#9423]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#5176] / [i915#9423]) +3 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#5235] / [i915#9423]) +11 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2.html - shard-rkl: NOTRUN -> [SKIP][176] ([i915#5235]) +9 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#5235]) +2 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#5235]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][179] +128 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-glk1/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][180] ([i915#5235]) +15 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-13/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_pm_backlight@fade: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#5354]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc5-psr: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#9685]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-8/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_rpm@fences: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#4077]) +8 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@kms_pm_rpm@fences.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg1: NOTRUN -> [SKIP][184] ([i915#9519]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-13/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [PASS][185] -> [SKIP][186] ([i915#9519]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][187] -> [SKIP][188] ([i915#9519]) +3 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#6524] / [i915#6805]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-6/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-crc-vgem: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#6524]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-13/igt@kms_prime@basic-crc-vgem.html * igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][191] +55 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-18/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#9683]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-5/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][193] ([i915#9683]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-dpms: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#9688]) +4 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@kms_psr@fbc-pr-dpms.html * igt@kms_psr@fbc-psr-primary-render: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#1072] / [i915#9732]) +24 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@kms_psr@fbc-psr-primary-render.html * igt@kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#1072] / [i915#9732]) +24 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-8/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#1072] / [i915#9732]) +20 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@kms_psr@psr2-sprite-mmap-cpu.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#9685]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#5289]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-dg1: NOTRUN -> [SKIP][200] ([i915#5289]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-16/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#5289]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-snb: NOTRUN -> [SKIP][202] +54 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-snb7/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#3555]) +3 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@clone-exclusive-crtc: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#3555]) +5 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-13/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#3555]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#8623]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: - shard-mtlp: [PASS][207] -> [FAIL][208] ([i915#9196]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1: - shard-snb: [PASS][209] -> [FAIL][210] ([i915#9196]) +1 other test fail [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-snb5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-snb4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html - shard-tglu: [PASS][211] -> [FAIL][212] ([i915#9196]) +1 other test fail [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#9906]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-dg1: NOTRUN -> [SKIP][214] ([i915#9906]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-18/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#9906]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-4/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#9906]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_writeback@writeback-check-output: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#2437]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][218] ([i915#2437] / [i915#9412]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-16/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#2437] / [i915#9412]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#2436]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-8/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#7387]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-3/igt@perf@global-sseu-config.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][222] ([i915#9100]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-8/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][223] ([i915#4349]) +3 other tests fail [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-3/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][224] ([i915#10537] / [i915#5793]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-4/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#8516]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-4/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [INCOMPLETE][226] ([i915#5493]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-read: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#3291] / [i915#3708]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#3291] / [i915#3708]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-6/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#3708] / [i915#4077]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-4/igt@prime_vgem@coherency-gtt.html - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#3708] / [i915#4077]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][231] ([i915#3708]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@prime_vgem@fence-flip-hang.html * igt@runner@aborted: - shard-glk: NOTRUN -> [FAIL][232] ([i915#10291]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-glk1/igt@runner@aborted.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#9917]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@sriov_basic@enable-vfs-autoprobe-on.html - shard-dg1: NOTRUN -> [SKIP][234] ([i915#9917]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-16/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#9917]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@sriov_basic@enable-vfs-bind-unbind-each.html - shard-dg2: NOTRUN -> [SKIP][236] ([i915#9917]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-4/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-rkl: NOTRUN -> [FAIL][237] ([i915#9781]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-5/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@v3d/v3d_perfmon@create-two-perfmon: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#2575]) +11 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-4/igt@v3d/v3d_perfmon@create-two-perfmon.html * igt@v3d/v3d_submit_cl@single-out-sync: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#2575]) +3 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@v3d/v3d_submit_cl@single-out-sync.html * igt@v3d/v3d_submit_csd@bad-perfmon: - shard-dg1: NOTRUN -> [SKIP][240] ([i915#2575]) +13 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-18/igt@v3d/v3d_submit_csd@bad-perfmon.html * igt@vc4/vc4_perfmon@create-two-perfmon: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#7711]) +5 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-2/igt@vc4/vc4_perfmon@create-two-perfmon.html * igt@vc4/vc4_perfmon@get-values-valid-perfmon: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#7711]) +6 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-4/igt@vc4/vc4_perfmon@get-values-valid-perfmon.html * igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem: - shard-dg1: NOTRUN -> [SKIP][243] ([i915#7711]) +9 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-15/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html * igt@vc4/vc4_wait_seqno@bad-seqno-0ns: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#7711]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-mtlp-7/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html #### Possible fixes #### * igt@gem_eio@kms: - shard-tglu: [INCOMPLETE][245] ([i915#10513]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-tglu-8/igt@gem_eio@kms.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-tglu-4/igt@gem_eio@kms.html * igt@gem_exec_balancer@full-pulse: - shard-dg2: [FAIL][247] -> [PASS][248] [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-dg2-8/igt@gem_exec_balancer@full-pulse.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-4/igt@gem_exec_balancer@full-pulse.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [INCOMPLETE][249] ([i915#9275]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-dg2-7/igt@gem_exec_suspend@basic-s0@smem.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-8/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_lmem_swapping@basic@lmem0: - shard-dg2: [FAIL][251] ([i915#10378]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-dg2-5/igt@gem_lmem_swapping@basic@lmem0.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-6/igt@gem_lmem_swapping@basic@lmem0.html * igt@gem_lmem_swapping@heavy-verify-multi@lmem0: - shard-dg1: [FAIL][253] ([i915#10378]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html * igt@gem_watchdog@default-virtual: - shard-dg2: [INCOMPLETE][255] -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-dg2-10/igt@gem_watchdog@default-virtual.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-10/igt@gem_watchdog@default-virtual.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [FAIL][257] ([i915#3591]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_pm_rps@reset: - shard-snb: [INCOMPLETE][259] ([i915#7790]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-snb7/igt@i915_pm_rps@reset.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-snb7/igt@i915_pm_rps@reset.html * igt@kms_cursor_legacy@torture-move@pipe-a: - shard-tglu: [DMESG-WARN][261] ([i915#10166] / [i915#1982]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-tglu-9/igt@kms_cursor_legacy@torture-move@pipe-a.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-tglu-6/igt@kms_cursor_legacy@torture-move@pipe-a.html * igt@kms_flip@plain-flip-ts-check-interruptible@a-vga1: - shard-snb: [FAIL][263] ([i915#2122]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-snb7/igt@kms_flip@plain-flip-ts-check-interruptible@a-vga1.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-snb5/igt@kms_flip@plain-flip-ts-check-interruptible@a-vga1.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][265] ([i915#4281]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-tglu-4/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [SKIP][267] ([i915#9519]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-dg2-7/igt@kms_pm_rpm@dpms-lpsp.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-8/igt@kms_pm_rpm@dpms-lpsp.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [ABORT][269] ([i915#11164]) -> [INCOMPLETE][270] ([i915#9408]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: [SKIP][271] ([i915#3458]) -> [SKIP][272] ([i915#10433] / [i915#3458]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][273] ([i915#4070] / [i915#4816]) -> [SKIP][274] ([i915#4816]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2: [SKIP][275] ([i915#1072] / [i915#9732]) -> [SKIP][276] ([i915#1072] / [i915#9673] / [i915#9732]) +13 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14813/shard-dg2-2/igt@kms_psr@psr2-primary-mmap-gtt.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133985v1/shard-dg2-11/igt@kms_psr@psr2-primary-mmap-gtt.html [i915#10031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10031 [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10166 [i915#10278]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10278 [i915#10291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10291 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10446]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10446 [i915#10513]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10513 [i915#10537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10537 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11164]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11164 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122 [i915#2295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2295 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4473]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4473 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5793]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5793 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742 [i915#7790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8431]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8431 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100 [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196 [i915#9275]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9275 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9408]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9408 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9606]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9606 [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * Linux: CI_DRM_14813 -> Patchwork_133985v1 CI-20190529: 20190529 CI_DRM_14813: 1385623a20ad940dab90bfaa4bc01fe599506e09 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7870: ad1cea5f9b4ce0f4a036cbda2da3d8979fb1ce15 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_133985v1: 1385623a20ad940dab90bfaa4bc01fe599506e09 @ 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_133985v1/index.html [-- Attachment #2: Type: text/html, Size: 96159 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-05-24 21:40 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-05-23 18:28 [PATCH 0/3] drm/i915: intel_color_check() cleanup Ville Syrjala 2024-05-23 18:28 ` [PATCH 1/3] drm/i915: Plumb the entire atomic state into intel_color_check() Ville Syrjala 2024-05-23 18:28 ` [PATCH 2/3] drm/i915: Hide the intel_crtc_needs_color_update() inside intel_color_check() Ville Syrjala 2024-05-23 18:28 ` [PATCH 3/3] drm/i915: Bury c8_planes_changed() in intel_color_check() Ville Syrjala 2024-05-23 19:39 ` ✗ Fi.CI.SPARSE: warning for drm/i915: intel_color_check() cleanup Patchwork 2024-05-23 19:48 ` ✓ Fi.CI.BAT: success " Patchwork 2024-05-24 9:17 ` [PATCH 0/3] " Jani Nikula 2024-05-24 21:40 ` ✗ Fi.CI.IGT: failure for " Patchwork
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.