* [PATCH v7 01/13] drm/i915/psr: Use PSR2_MAN_TRK_CTL CFF bit only to send full update
2025-02-12 7:57 [PATCH v7 00/13] PSR DSB support Jouni Högander
@ 2025-02-12 7:57 ` Jouni Högander
2025-02-12 10:25 ` Manna, Animesh
2025-02-12 7:57 ` [PATCH v7 02/13] drm/i915/psr: Rename psr_force_hw_tracking_exit as intel_psr_force_update Jouni Högander
` (15 subsequent siblings)
16 siblings, 1 reply; 24+ messages in thread
From: Jouni Högander @ 2025-02-12 7:57 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Jouni Högander
We are preparing for a change where only frontbuffer flush will use
single full frame bit of a new register (SFF_CTL) available on LunarLake
onwards.
It shouldn't be necessary to have SFF bit set if CFF bit is set in
PSR2_MAN_TRK_CTL -> removing setting it on all platforms as there is not
reason to have it different on older platforms.
v2: commit message improved
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
drivers/gpu/drm/i915/display/intel_psr.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index 861e50ceef85..64e03d19cad5 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -2395,7 +2395,6 @@ static void psr2_man_trk_ctl_calc(struct intel_crtc_state *crtc_state,
val |= man_trk_ctl_partial_frame_bit_get(display);
if (full_update) {
- val |= man_trk_ctl_single_full_frame_bit_get(display);
val |= man_trk_ctl_continuos_full_frame(display);
goto exit;
}
--
2.43.0
^ permalink raw reply related [flat|nested] 24+ messages in thread* RE: [PATCH v7 01/13] drm/i915/psr: Use PSR2_MAN_TRK_CTL CFF bit only to send full update
2025-02-12 7:57 ` [PATCH v7 01/13] drm/i915/psr: Use PSR2_MAN_TRK_CTL CFF bit only to send full update Jouni Högander
@ 2025-02-12 10:25 ` Manna, Animesh
0 siblings, 0 replies; 24+ messages in thread
From: Manna, Animesh @ 2025-02-12 10:25 UTC (permalink / raw)
To: Hogander, Jouni, intel-gfx@lists.freedesktop.org,
intel-xe@lists.freedesktop.org
Cc: Hogander, Jouni
> -----Original Message-----
> From: Intel-xe <intel-xe-bounces@lists.freedesktop.org> On Behalf Of Jouni
> Högander
> Sent: Wednesday, February 12, 2025 1:27 PM
> To: intel-gfx@lists.freedesktop.org; intel-xe@lists.freedesktop.org
> Cc: Hogander, Jouni <jouni.hogander@intel.com>
> Subject: [PATCH v7 01/13] drm/i915/psr: Use PSR2_MAN_TRK_CTL CFF bit
> only to send full update
>
> We are preparing for a change where only frontbuffer flush will use single
> full frame bit of a new register (SFF_CTL) available on LunarLake onwards.
>
> It shouldn't be necessary to have SFF bit set if CFF bit is set in
> PSR2_MAN_TRK_CTL -> removing setting it on all platforms as there is not
> reason to have it different on older platforms.
>
> v2: commit message improved
>
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
LGTM.
Reviewed-by: Animesh Manna <animesh.manna@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_psr.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_psr.c
> b/drivers/gpu/drm/i915/display/intel_psr.c
> index 861e50ceef85..64e03d19cad5 100644
> --- a/drivers/gpu/drm/i915/display/intel_psr.c
> +++ b/drivers/gpu/drm/i915/display/intel_psr.c
> @@ -2395,7 +2395,6 @@ static void psr2_man_trk_ctl_calc(struct
> intel_crtc_state *crtc_state,
> val |= man_trk_ctl_partial_frame_bit_get(display);
>
> if (full_update) {
> - val |= man_trk_ctl_single_full_frame_bit_get(display);
> val |= man_trk_ctl_continuos_full_frame(display);
> goto exit;
> }
> --
> 2.43.0
^ permalink raw reply [flat|nested] 24+ messages in thread
* [PATCH v7 02/13] drm/i915/psr: Rename psr_force_hw_tracking_exit as intel_psr_force_update
2025-02-12 7:57 [PATCH v7 00/13] PSR DSB support Jouni Högander
2025-02-12 7:57 ` [PATCH v7 01/13] drm/i915/psr: Use PSR2_MAN_TRK_CTL CFF bit only to send full update Jouni Högander
@ 2025-02-12 7:57 ` Jouni Högander
2025-02-12 7:57 ` [PATCH v7 03/13] drm/i915/psr: Split setting sff and cff bits away from intel_psr_force_update Jouni Högander
` (14 subsequent siblings)
16 siblings, 0 replies; 24+ messages in thread
From: Jouni Högander @ 2025-02-12 7:57 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Jouni Högander, Animesh Manna
psr_force_hw_tracking_exit is misleading name as it is used for PSR1, PSR2
HW tracking and PSR2 selective fetch. Due to this rename it as
intel_psr_force_update.
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
Reviewed-by: Animesh Manna <animesh.manna@intel.com>
---
drivers/gpu/drm/i915/display/intel_psr.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index 64e03d19cad5..16d125f51ab0 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -2324,7 +2324,7 @@ static u32 man_trk_ctl_continuos_full_frame(struct intel_display *display)
PSR2_MAN_TRK_CTL_SF_CONTINUOS_FULL_FRAME;
}
-static void psr_force_hw_tracking_exit(struct intel_dp *intel_dp)
+static void intel_psr_force_update(struct intel_dp *intel_dp)
{
struct intel_display *display = to_intel_display(intel_dp);
enum transcoder cpu_transcoder = intel_dp->psr.transcoder;
@@ -2869,7 +2869,7 @@ void intel_psr_post_plane_update(struct intel_atomic_state *state,
/* Force a PSR exit when enabling CRC to avoid CRC timeouts */
if (crtc_state->crc_enabled && psr->enabled)
- psr_force_hw_tracking_exit(intel_dp);
+ intel_psr_force_update(intel_dp);
/*
* Clear possible busy bits in case we have
@@ -3266,10 +3266,10 @@ static void _psr_flush_handle(struct intel_dp *intel_dp)
* continuous full frame is disabled, only a single full
* frame is required
*/
- psr_force_hw_tracking_exit(intel_dp);
+ intel_psr_force_update(intel_dp);
}
} else {
- psr_force_hw_tracking_exit(intel_dp);
+ intel_psr_force_update(intel_dp);
if (!intel_dp->psr.active && !intel_dp->psr.busy_frontbuffer_bits)
queue_work(dev_priv->unordered_wq, &intel_dp->psr.work);
--
2.43.0
^ permalink raw reply related [flat|nested] 24+ messages in thread* [PATCH v7 03/13] drm/i915/psr: Split setting sff and cff bits away from intel_psr_force_update
2025-02-12 7:57 [PATCH v7 00/13] PSR DSB support Jouni Högander
2025-02-12 7:57 ` [PATCH v7 01/13] drm/i915/psr: Use PSR2_MAN_TRK_CTL CFF bit only to send full update Jouni Högander
2025-02-12 7:57 ` [PATCH v7 02/13] drm/i915/psr: Rename psr_force_hw_tracking_exit as intel_psr_force_update Jouni Högander
@ 2025-02-12 7:57 ` Jouni Högander
2025-02-12 7:57 ` [PATCH v7 04/13] drm/i915/psr: Add register definitions for SFF_CTL and CFF_CTL registers Jouni Högander
` (13 subsequent siblings)
16 siblings, 0 replies; 24+ messages in thread
From: Jouni Högander @ 2025-02-12 7:57 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Jouni Högander, Animesh Manna
This is a clean-up and a preparation for adding own SFF and CFF registers
for LunarLake onwards.
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
Reviewed-by: Animesh Manna <animesh.manna@intel.com>
---
drivers/gpu/drm/i915/display/intel_psr.c | 88 +++++++++---------------
1 file changed, 31 insertions(+), 57 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index 16d125f51ab0..c0ba74c16d16 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -2327,15 +2327,6 @@ static u32 man_trk_ctl_continuos_full_frame(struct intel_display *display)
static void intel_psr_force_update(struct intel_dp *intel_dp)
{
struct intel_display *display = to_intel_display(intel_dp);
- enum transcoder cpu_transcoder = intel_dp->psr.transcoder;
-
- if (intel_dp->psr.psr2_sel_fetch_enabled)
- intel_de_write(display,
- PSR2_MAN_TRK_CTL(display, cpu_transcoder),
- man_trk_ctl_enable_bit_get(display) |
- man_trk_ctl_partial_frame_bit_get(display) |
- man_trk_ctl_single_full_frame_bit_get(display) |
- man_trk_ctl_continuos_full_frame(display));
/*
* Display WA #0884: skl+
@@ -3131,31 +3122,31 @@ static void intel_psr_work(struct work_struct *work)
mutex_unlock(&intel_dp->psr.lock);
}
-static void _psr_invalidate_handle(struct intel_dp *intel_dp)
+static void intel_psr_configure_full_frame_update(struct intel_dp *intel_dp)
{
struct intel_display *display = to_intel_display(intel_dp);
enum transcoder cpu_transcoder = intel_dp->psr.transcoder;
- if (intel_dp->psr.psr2_sel_fetch_enabled) {
- u32 val;
+ if (!intel_dp->psr.psr2_sel_fetch_enabled)
+ return;
- if (intel_dp->psr.psr2_sel_fetch_cff_enabled) {
- /* Send one update otherwise lag is observed in screen */
- intel_de_write(display,
- CURSURFLIVE(display, intel_dp->psr.pipe),
- 0);
- return;
+ intel_de_write(display,
+ PSR2_MAN_TRK_CTL(display, cpu_transcoder),
+ man_trk_ctl_enable_bit_get(display) |
+ man_trk_ctl_partial_frame_bit_get(display) |
+ man_trk_ctl_single_full_frame_bit_get(display) |
+ man_trk_ctl_continuos_full_frame(display));
+}
+
+static void _psr_invalidate_handle(struct intel_dp *intel_dp)
+{
+ if (intel_dp->psr.psr2_sel_fetch_enabled) {
+ if (!intel_dp->psr.psr2_sel_fetch_cff_enabled) {
+ intel_dp->psr.psr2_sel_fetch_cff_enabled = true;
+ intel_psr_configure_full_frame_update(intel_dp);
}
- val = man_trk_ctl_enable_bit_get(display) |
- man_trk_ctl_partial_frame_bit_get(display) |
- man_trk_ctl_continuos_full_frame(display);
- intel_de_write(display,
- PSR2_MAN_TRK_CTL(display, cpu_transcoder),
- val);
- intel_de_write(display,
- CURSURFLIVE(display, intel_dp->psr.pipe), 0);
- intel_dp->psr.psr2_sel_fetch_cff_enabled = true;
+ intel_psr_force_update(intel_dp);
} else {
intel_psr_exit(intel_dp);
}
@@ -3236,44 +3227,27 @@ static void _psr_flush_handle(struct intel_dp *intel_dp)
{
struct intel_display *display = to_intel_display(intel_dp);
struct drm_i915_private *dev_priv = to_i915(display->drm);
- enum transcoder cpu_transcoder = intel_dp->psr.transcoder;
if (intel_dp->psr.psr2_sel_fetch_enabled) {
if (intel_dp->psr.psr2_sel_fetch_cff_enabled) {
/* can we turn CFF off? */
- if (intel_dp->psr.busy_frontbuffer_bits == 0) {
- u32 val = man_trk_ctl_enable_bit_get(display) |
- man_trk_ctl_partial_frame_bit_get(display) |
- man_trk_ctl_single_full_frame_bit_get(display) |
- man_trk_ctl_continuos_full_frame(display);
-
- /*
- * Set psr2_sel_fetch_cff_enabled as false to allow selective
- * updates. Still keep cff bit enabled as we don't have proper
- * SU configuration in case update is sent for any reason after
- * sff bit gets cleared by the HW on next vblank.
- */
- intel_de_write(display,
- PSR2_MAN_TRK_CTL(display, cpu_transcoder),
- val);
- intel_de_write(display,
- CURSURFLIVE(display, intel_dp->psr.pipe),
- 0);
+ if (intel_dp->psr.busy_frontbuffer_bits == 0)
intel_dp->psr.psr2_sel_fetch_cff_enabled = false;
- }
- } else {
- /*
- * continuous full frame is disabled, only a single full
- * frame is required
- */
- intel_psr_force_update(intel_dp);
}
- } else {
- intel_psr_force_update(intel_dp);
- if (!intel_dp->psr.active && !intel_dp->psr.busy_frontbuffer_bits)
- queue_work(dev_priv->unordered_wq, &intel_dp->psr.work);
+ /*
+ * Still keep cff bit enabled as we don't have proper SU
+ * configuration in case update is sent for any reason after
+ * sff bit gets cleared by the HW on next vblank.
+ */
+ intel_psr_configure_full_frame_update(intel_dp);
}
+
+ intel_psr_force_update(intel_dp);
+
+ if (!intel_dp->psr.psr2_sel_fetch_enabled && !intel_dp->psr.active &&
+ !intel_dp->psr.busy_frontbuffer_bits)
+ queue_work(dev_priv->unordered_wq, &intel_dp->psr.work);
}
/**
--
2.43.0
^ permalink raw reply related [flat|nested] 24+ messages in thread* [PATCH v7 04/13] drm/i915/psr: Add register definitions for SFF_CTL and CFF_CTL registers
2025-02-12 7:57 [PATCH v7 00/13] PSR DSB support Jouni Högander
` (2 preceding siblings ...)
2025-02-12 7:57 ` [PATCH v7 03/13] drm/i915/psr: Split setting sff and cff bits away from intel_psr_force_update Jouni Högander
@ 2025-02-12 7:57 ` Jouni Högander
2025-02-12 7:57 ` [PATCH v7 05/13] drm/i915/psr: Use SFF_CTL on invalidate/flush for LunarLake onwards Jouni Högander
` (12 subsequent siblings)
16 siblings, 0 replies; 24+ messages in thread
From: Jouni Högander @ 2025-02-12 7:57 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Jouni Högander, Animesh Manna
Add register definitions for SFF_CTL and CFF_CTL registers. Name them as
LNL_SFF_CTL and LNL_CFF_CTL.
v2: use _MMIO_TRANS instead of _MMIO_TRANS2
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
Reviewed-by: Animesh Manna <animesh.manna@intel.com>
---
drivers/gpu/drm/i915/display/intel_psr_regs.h | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_psr_regs.h b/drivers/gpu/drm/i915/display/intel_psr_regs.h
index 9ad7611506e8..795e6b9cc575 100644
--- a/drivers/gpu/drm/i915/display/intel_psr_regs.h
+++ b/drivers/gpu/drm/i915/display/intel_psr_regs.h
@@ -251,6 +251,16 @@
#define ADLP_PSR2_MAN_TRK_CTL_SF_SINGLE_FULL_FRAME REG_BIT(14)
#define ADLP_PSR2_MAN_TRK_CTL_SF_CONTINUOS_FULL_FRAME REG_BIT(13)
+#define _LNL_SFF_CTL_A 0x60918
+#define _LNL_SFF_CTL_B 0x61918
+#define LNL_SFF_CTL(tran) _MMIO_TRANS(tran, _LNL_SFF_CTL_A, _LNL_SFF_CTL_B)
+#define LNL_SFF_CTL_SF_SINGLE_FULL_FRAME REG_BIT(1)
+
+#define _LNL_CFF_CTL_A 0x6091c
+#define _LNL_CFF_CTL_B 0x6191c
+#define LNL_CFF_CTL(tran) _MMIO_TRANS(tran, _LNL_CFF_CTL_A, _LNL_CFF_CTL_B)
+#define LNL_CFF_CTL_SF_CONTINUOUS_FULL_FRAME REG_BIT(1)
+
/* PSR2 Early transport */
#define _PIPE_SRCSZ_ERLY_TPT_A 0x70074
#define _PIPE_SRCSZ_ERLY_TPT_B 0x71074
--
2.43.0
^ permalink raw reply related [flat|nested] 24+ messages in thread* [PATCH v7 05/13] drm/i915/psr: Use SFF_CTL on invalidate/flush for LunarLake onwards
2025-02-12 7:57 [PATCH v7 00/13] PSR DSB support Jouni Högander
` (3 preceding siblings ...)
2025-02-12 7:57 ` [PATCH v7 04/13] drm/i915/psr: Add register definitions for SFF_CTL and CFF_CTL registers Jouni Högander
@ 2025-02-12 7:57 ` Jouni Högander
2025-02-12 7:57 ` [PATCH v7 06/13] drm/i915/psr: Allow writing PSR2_MAN_TRK_CTL using DSB Jouni Högander
` (11 subsequent siblings)
16 siblings, 0 replies; 24+ messages in thread
From: Jouni Högander @ 2025-02-12 7:57 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Jouni Högander, Animesh Manna
In LunarLake we have SFF_CTL register which contains SFF bit ored with
respective SFF bit in PSR2_MAN_TRK_CTL register. Use this register instead
of the bit in PSR2_MAN_TRK_CTL on frontbuffer tracking callbacks. This
helps us avoiding taking psr mutex when performing atomic commit.
We don't need to set the CFF bit as selective update configuration in
PSR2_MAN_TRL_CTL is not overwritten anymore. I.e. we have valid
configuration in PSR2_MAN_TRK_CTL and in plane SEL_FETCH_* registers when
SFF bit gets cleared by the HW in case something triggers "frame change"
event after SFF bit is cleared.
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
Reviewed-by: Animesh Manna <animesh.manna@intel.com>
---
drivers/gpu/drm/i915/display/intel_psr.c | 22 +++++++++++++++-------
1 file changed, 15 insertions(+), 7 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index c0ba74c16d16..b5292f68d100 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -2359,7 +2359,7 @@ void intel_psr2_program_trans_man_trk_ctl(const struct intel_crtc_state *crtc_st
struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
lockdep_assert_held(&intel_dp->psr.lock);
- if (intel_dp->psr.psr2_sel_fetch_cff_enabled)
+ if (DISPLAY_VER(display) < 20 && intel_dp->psr.psr2_sel_fetch_cff_enabled)
return;
break;
}
@@ -3130,12 +3130,16 @@ static void intel_psr_configure_full_frame_update(struct intel_dp *intel_dp)
if (!intel_dp->psr.psr2_sel_fetch_enabled)
return;
- intel_de_write(display,
- PSR2_MAN_TRK_CTL(display, cpu_transcoder),
- man_trk_ctl_enable_bit_get(display) |
- man_trk_ctl_partial_frame_bit_get(display) |
- man_trk_ctl_single_full_frame_bit_get(display) |
- man_trk_ctl_continuos_full_frame(display));
+ if (DISPLAY_VER(display) >= 20)
+ intel_de_write(display, LNL_SFF_CTL(cpu_transcoder),
+ LNL_SFF_CTL_SF_SINGLE_FULL_FRAME);
+ else
+ intel_de_write(display,
+ PSR2_MAN_TRK_CTL(display, cpu_transcoder),
+ man_trk_ctl_enable_bit_get(display) |
+ man_trk_ctl_partial_frame_bit_get(display) |
+ man_trk_ctl_single_full_frame_bit_get(display) |
+ man_trk_ctl_continuos_full_frame(display));
}
static void _psr_invalidate_handle(struct intel_dp *intel_dp)
@@ -3239,6 +3243,10 @@ static void _psr_flush_handle(struct intel_dp *intel_dp)
* Still keep cff bit enabled as we don't have proper SU
* configuration in case update is sent for any reason after
* sff bit gets cleared by the HW on next vblank.
+ *
+ * NOTE: Setting cff bit is not needed for LunarLake onwards as
+ * we have own register for SFF bit and we are not overwriting
+ * existing SU configuration
*/
intel_psr_configure_full_frame_update(intel_dp);
}
--
2.43.0
^ permalink raw reply related [flat|nested] 24+ messages in thread* [PATCH v7 06/13] drm/i915/psr: Allow writing PSR2_MAN_TRK_CTL using DSB
2025-02-12 7:57 [PATCH v7 00/13] PSR DSB support Jouni Högander
` (4 preceding siblings ...)
2025-02-12 7:57 ` [PATCH v7 05/13] drm/i915/psr: Use SFF_CTL on invalidate/flush for LunarLake onwards Jouni Högander
@ 2025-02-12 7:57 ` Jouni Högander
2025-02-12 7:57 ` [PATCH v7 07/13] drm/i915/psr: Changes for PSR2_MAN_TRK_CTL handling when DSB is in use Jouni Högander
` (10 subsequent siblings)
16 siblings, 0 replies; 24+ messages in thread
From: Jouni Högander @ 2025-02-12 7:57 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Jouni Högander, Animesh Manna
Allow writing PSR2_MAN_TRK_CTL using DSB by using intel_de_write_dsb. Do
not check intel_dp->psr.lock being held when using DSB. This assertion
doesn't make sense as in case of using DSB the actual write happens later
and we are not taking intel_dp->psr.lock mutex over dsb commit.
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
Reviewed-by: Animesh Manna <animesh.manna@intel.com>
---
drivers/gpu/drm/i915/display/intel_display.c | 2 +-
drivers/gpu/drm/i915/display/intel_psr.c | 16 ++++++++++------
drivers/gpu/drm/i915/display/intel_psr.h | 4 +++-
3 files changed, 14 insertions(+), 8 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 2d7ac53bb924..a1e0fa304d22 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -7156,7 +7156,7 @@ static void commit_pipe_pre_planes(struct intel_atomic_state *state,
intel_pipe_fastset(old_crtc_state, new_crtc_state);
}
- intel_psr2_program_trans_man_trk_ctl(new_crtc_state);
+ intel_psr2_program_trans_man_trk_ctl(NULL, new_crtc_state);
intel_atomic_update_watermarks(state, crtc);
}
diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index b5292f68d100..c805ff82e700 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -2344,7 +2344,8 @@ static void intel_psr_force_update(struct intel_dp *intel_dp)
intel_de_write(display, CURSURFLIVE(display, intel_dp->psr.pipe), 0);
}
-void intel_psr2_program_trans_man_trk_ctl(const struct intel_crtc_state *crtc_state)
+void intel_psr2_program_trans_man_trk_ctl(struct intel_dsb *dsb,
+ const struct intel_crtc_state *crtc_state)
{
struct intel_display *display = to_intel_display(crtc_state);
struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
@@ -2358,20 +2359,23 @@ void intel_psr2_program_trans_man_trk_ctl(const struct intel_crtc_state *crtc_st
crtc_state->uapi.encoder_mask) {
struct intel_dp *intel_dp = enc_to_intel_dp(encoder);
- lockdep_assert_held(&intel_dp->psr.lock);
+ if (!dsb)
+ lockdep_assert_held(&intel_dp->psr.lock);
+
if (DISPLAY_VER(display) < 20 && intel_dp->psr.psr2_sel_fetch_cff_enabled)
return;
break;
}
- intel_de_write(display, PSR2_MAN_TRK_CTL(display, cpu_transcoder),
- crtc_state->psr2_man_track_ctl);
+ intel_de_write_dsb(display, dsb,
+ PSR2_MAN_TRK_CTL(display, cpu_transcoder),
+ crtc_state->psr2_man_track_ctl);
if (!crtc_state->enable_psr2_su_region_et)
return;
- intel_de_write(display, PIPE_SRCSZ_ERLY_TPT(crtc->pipe),
- crtc_state->pipe_srcsz_early_tpt);
+ intel_de_write_dsb(display, dsb, PIPE_SRCSZ_ERLY_TPT(crtc->pipe),
+ crtc_state->pipe_srcsz_early_tpt);
}
static void psr2_man_trk_ctl_calc(struct intel_crtc_state *crtc_state,
diff --git a/drivers/gpu/drm/i915/display/intel_psr.h b/drivers/gpu/drm/i915/display/intel_psr.h
index 5f1671d02d76..e6eba6633a92 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.h
+++ b/drivers/gpu/drm/i915/display/intel_psr.h
@@ -17,6 +17,7 @@ struct intel_crtc;
struct intel_crtc_state;
struct intel_display;
struct intel_dp;
+struct intel_dsb;
struct intel_encoder;
struct intel_plane;
struct intel_plane_state;
@@ -54,7 +55,8 @@ void intel_psr_wait_for_idle_locked(const struct intel_crtc_state *new_crtc_stat
bool intel_psr_enabled(struct intel_dp *intel_dp);
int intel_psr2_sel_fetch_update(struct intel_atomic_state *state,
struct intel_crtc *crtc);
-void intel_psr2_program_trans_man_trk_ctl(const struct intel_crtc_state *crtc_state);
+void intel_psr2_program_trans_man_trk_ctl(struct intel_dsb *dsb,
+ const struct intel_crtc_state *crtc_state);
void intel_psr_pause(struct intel_dp *intel_dp);
void intel_psr_resume(struct intel_dp *intel_dp);
bool intel_psr_needs_block_dc_vblank(const struct intel_crtc_state *crtc_state);
--
2.43.0
^ permalink raw reply related [flat|nested] 24+ messages in thread* [PATCH v7 07/13] drm/i915/psr: Changes for PSR2_MAN_TRK_CTL handling when DSB is in use
2025-02-12 7:57 [PATCH v7 00/13] PSR DSB support Jouni Högander
` (5 preceding siblings ...)
2025-02-12 7:57 ` [PATCH v7 06/13] drm/i915/psr: Allow writing PSR2_MAN_TRK_CTL using DSB Jouni Högander
@ 2025-02-12 7:57 ` Jouni Högander
2025-02-12 7:57 ` [PATCH v7 07/13] drm/i915/psr: Write PSR2_MAN_TRK_CTL on DSB commit as well Jouni Högander
` (9 subsequent siblings)
16 siblings, 0 replies; 24+ messages in thread
From: Jouni Högander @ 2025-02-12 7:57 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Jouni Högander, Animesh Manna
Do needed changes to handle PSR2_MAN_TRK_CTL correctly when DSB is in use:
1. Write PSR2_MAN_TRK_CTL in commit_pipe_pre_planes only when not using
DSB.
2. Add PSR2_MAN_TRK_CTL writing into DSB commit in
intel_atomic_dsb_finish.
Taking PSR lock over DSB commit is not needed because PSR2_MAN_TRK_CTL is
now written only by DSB.
v2: remove checking use_dsb
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
Reviewed-by: Animesh Manna <animesh.manna@intel.com>
---
drivers/gpu/drm/i915/display/intel_display.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index a1e0fa304d22..cab6852dd9c2 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -7745,6 +7745,8 @@ static void intel_atomic_dsb_finish(struct intel_atomic_state *state,
new_crtc_state);
bdw_set_pipe_misc(new_crtc_state->dsb_commit,
new_crtc_state);
+ intel_psr2_program_trans_man_trk_ctl(new_crtc_state->dsb_commit,
+ new_crtc_state);
intel_crtc_planes_update_arm(new_crtc_state->dsb_commit,
state, crtc);
--
2.43.0
^ permalink raw reply related [flat|nested] 24+ messages in thread* [PATCH v7 07/13] drm/i915/psr: Write PSR2_MAN_TRK_CTL on DSB commit as well
2025-02-12 7:57 [PATCH v7 00/13] PSR DSB support Jouni Högander
` (6 preceding siblings ...)
2025-02-12 7:57 ` [PATCH v7 07/13] drm/i915/psr: Changes for PSR2_MAN_TRK_CTL handling when DSB is in use Jouni Högander
@ 2025-02-12 7:57 ` Jouni Högander
2025-02-12 7:57 ` [PATCH v7 08/13] drm/i915/display: Warn on use_dsb in non-dsb pipe update functions Jouni Högander
` (8 subsequent siblings)
16 siblings, 0 replies; 24+ messages in thread
From: Jouni Högander @ 2025-02-12 7:57 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Jouni Högander
Add PSR2_MAN_TRK_CTL writing into DSB commit in intel_atomic_dsb_finish.
Taking PSR lock over DSB commit is not needed because PSR2_MAN_TRK_CTL is
now written only by DSB.
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
drivers/gpu/drm/i915/display/intel_display.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index a1e0fa304d22..cab6852dd9c2 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -7745,6 +7745,8 @@ static void intel_atomic_dsb_finish(struct intel_atomic_state *state,
new_crtc_state);
bdw_set_pipe_misc(new_crtc_state->dsb_commit,
new_crtc_state);
+ intel_psr2_program_trans_man_trk_ctl(new_crtc_state->dsb_commit,
+ new_crtc_state);
intel_crtc_planes_update_arm(new_crtc_state->dsb_commit,
state, crtc);
--
2.43.0
^ permalink raw reply related [flat|nested] 24+ messages in thread* [PATCH v7 08/13] drm/i915/display: Warn on use_dsb in non-dsb pipe update functions
2025-02-12 7:57 [PATCH v7 00/13] PSR DSB support Jouni Högander
` (7 preceding siblings ...)
2025-02-12 7:57 ` [PATCH v7 07/13] drm/i915/psr: Write PSR2_MAN_TRK_CTL on DSB commit as well Jouni Högander
@ 2025-02-12 7:57 ` Jouni Högander
2025-02-12 14:51 ` Ville Syrjälä
2025-02-12 7:57 ` [PATCH v7 09/13] drm/i915/psr: Remove DSB_SKIP_WAITS_EN chicken bit Jouni Högander
` (7 subsequent siblings)
16 siblings, 1 reply; 24+ messages in thread
From: Jouni Högander @ 2025-02-12 7:57 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Jouni Högander
Add drm_WARN_ON(use_dsb) into commit_pipe_{pre,post}_planes() and
intel_pipe_update_{start,end}() as they are not supposed to get called on
non-dsb updates.
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
---
drivers/gpu/drm/i915/display/intel_crtc.c | 4 ++++
drivers/gpu/drm/i915/display/intel_display.c | 6 +++++-
2 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/display/intel_crtc.c b/drivers/gpu/drm/i915/display/intel_crtc.c
index 89785da93603..eb089d76ba2a 100644
--- a/drivers/gpu/drm/i915/display/intel_crtc.c
+++ b/drivers/gpu/drm/i915/display/intel_crtc.c
@@ -522,6 +522,8 @@ void intel_pipe_update_start(struct intel_atomic_state *state,
struct intel_vblank_evade_ctx evade;
int scanline;
+ drm_WARN_ON(display->drm, new_crtc_state->use_dsb);
+
intel_psr_lock(new_crtc_state);
if (new_crtc_state->do_async_flip) {
@@ -660,6 +662,8 @@ void intel_pipe_update_end(struct intel_atomic_state *state,
ktime_t end_vbl_time = ktime_get();
struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
+ drm_WARN_ON(display->drm, new_crtc_state->use_dsb);
+
if (new_crtc_state->do_async_flip)
goto out;
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index cab6852dd9c2..79b8d2ad3b9c 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -7141,11 +7141,13 @@ static void commit_pipe_pre_planes(struct intel_atomic_state *state,
intel_atomic_get_new_crtc_state(state, crtc);
bool modeset = intel_crtc_needs_modeset(new_crtc_state);
+ drm_WARN_ON(&dev_priv->drm, new_crtc_state->use_dsb);
+
/*
* During modesets pipe configuration was programmed as the
* CRTC was enabled.
*/
- if (!modeset && !new_crtc_state->use_dsb) {
+ if (!modeset) {
if (intel_crtc_needs_color_update(new_crtc_state))
intel_color_commit_arm(NULL, new_crtc_state);
@@ -7168,6 +7170,8 @@ static void commit_pipe_post_planes(struct intel_atomic_state *state,
const struct intel_crtc_state *new_crtc_state =
intel_atomic_get_new_crtc_state(state, crtc);
+ drm_WARN_ON(&dev_priv->drm, new_crtc_state->use_dsb);
+
/*
* Disable the scaler(s) after the plane(s) so that we don't
* get a catastrophic underrun even if the two operations
--
2.43.0
^ permalink raw reply related [flat|nested] 24+ messages in thread* Re: [PATCH v7 08/13] drm/i915/display: Warn on use_dsb in non-dsb pipe update functions
2025-02-12 7:57 ` [PATCH v7 08/13] drm/i915/display: Warn on use_dsb in non-dsb pipe update functions Jouni Högander
@ 2025-02-12 14:51 ` Ville Syrjälä
0 siblings, 0 replies; 24+ messages in thread
From: Ville Syrjälä @ 2025-02-12 14:51 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-gfx, intel-xe
On Wed, Feb 12, 2025 at 09:57:37AM +0200, Jouni Högander wrote:
> Add drm_WARN_ON(use_dsb) into commit_pipe_{pre,post}_planes() and
> intel_pipe_update_{start,end}() as they are not supposed to get called on
> non-dsb updates.
>
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_crtc.c | 4 ++++
> drivers/gpu/drm/i915/display/intel_display.c | 6 +++++-
> 2 files changed, 9 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_crtc.c b/drivers/gpu/drm/i915/display/intel_crtc.c
> index 89785da93603..eb089d76ba2a 100644
> --- a/drivers/gpu/drm/i915/display/intel_crtc.c
> +++ b/drivers/gpu/drm/i915/display/intel_crtc.c
> @@ -522,6 +522,8 @@ void intel_pipe_update_start(struct intel_atomic_state *state,
> struct intel_vblank_evade_ctx evade;
> int scanline;
>
> + drm_WARN_ON(display->drm, new_crtc_state->use_dsb);
> +
> intel_psr_lock(new_crtc_state);
>
> if (new_crtc_state->do_async_flip) {
> @@ -660,6 +662,8 @@ void intel_pipe_update_end(struct intel_atomic_state *state,
> ktime_t end_vbl_time = ktime_get();
> struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
>
> + drm_WARN_ON(display->drm, new_crtc_state->use_dsb);
> +
> if (new_crtc_state->do_async_flip)
> goto out;
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
> index cab6852dd9c2..79b8d2ad3b9c 100644
> --- a/drivers/gpu/drm/i915/display/intel_display.c
> +++ b/drivers/gpu/drm/i915/display/intel_display.c
> @@ -7141,11 +7141,13 @@ static void commit_pipe_pre_planes(struct intel_atomic_state *state,
> intel_atomic_get_new_crtc_state(state, crtc);
> bool modeset = intel_crtc_needs_modeset(new_crtc_state);
>
> + drm_WARN_ON(&dev_priv->drm, new_crtc_state->use_dsb);
> +
> /*
> * During modesets pipe configuration was programmed as the
> * CRTC was enabled.
> */
> - if (!modeset && !new_crtc_state->use_dsb) {
> + if (!modeset) {
> if (intel_crtc_needs_color_update(new_crtc_state))
> intel_color_commit_arm(NULL, new_crtc_state);
>
> @@ -7168,6 +7170,8 @@ static void commit_pipe_post_planes(struct intel_atomic_state *state,
> const struct intel_crtc_state *new_crtc_state =
> intel_atomic_get_new_crtc_state(state, crtc);
>
> + drm_WARN_ON(&dev_priv->drm, new_crtc_state->use_dsb);
> +
> /*
> * Disable the scaler(s) after the plane(s) so that we don't
> * get a catastrophic underrun even if the two operations
> --
> 2.43.0
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 24+ messages in thread
* [PATCH v7 09/13] drm/i915/psr: Remove DSB_SKIP_WAITS_EN chicken bit
2025-02-12 7:57 [PATCH v7 00/13] PSR DSB support Jouni Högander
` (8 preceding siblings ...)
2025-02-12 7:57 ` [PATCH v7 08/13] drm/i915/display: Warn on use_dsb in non-dsb pipe update functions Jouni Högander
@ 2025-02-12 7:57 ` Jouni Högander
2025-02-12 7:57 ` [PATCH v7 10/13] drm/i915/display: Evade scanline 0 as well if PSR1 or PSR2 is enabled Jouni Högander
` (6 subsequent siblings)
16 siblings, 0 replies; 24+ messages in thread
From: Jouni Högander @ 2025-02-12 7:57 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Jouni Högander, Ville Syrjälä
We have different approach on how flip is considered being complete. We are
waiting for vblank on DSB and generate interrupt when it happens and this
interrupt is considered as indication of completion -> we definitely do not
want to skip vblank wait.
Also not skipping scanline wait shouldn't cause any problems if we are in
DEEP_SLEEP PIPEDSL register is returning 0 -> evasion does nothing and if
we are not in DEEP_SLEEP evasion works same way as without PSR.
v2: add comment explaining why we are not setting DSB_SKIP_WAITS_EN
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_dsb.c | 15 ++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_dsb.c b/drivers/gpu/drm/i915/display/intel_dsb.c
index 2f2812c23972..30782ab0b908 100644
--- a/drivers/gpu/drm/i915/display/intel_dsb.c
+++ b/drivers/gpu/drm/i915/display/intel_dsb.c
@@ -164,17 +164,26 @@ static int dsb_scanline_to_hw(struct intel_atomic_state *state,
return (scanline + vtotal - intel_crtc_scanline_offset(crtc_state)) % vtotal;
}
+/*
+ * Bspec suggests that we should always set DSB_SKIP_WAITS_EN. We have approach
+ * different from what is explained in Bspec on how flip is considered being
+ * complete. We are waiting for vblank in DSB and generate interrupt when it
+ * happens and this interrupt is considered as indication of completion -> we
+ * definitely do not want to skip vblank wait. We also have concern what comes
+ * to skipping vblank evasion. I.e. arming registers are latched before we have
+ * managed writing them. Due to these reasons we are not setting
+ * DSB_SKIP_WAITS_EN.
+ */
static u32 dsb_chicken(struct intel_atomic_state *state,
struct intel_crtc *crtc)
{
if (pre_commit_is_vrr_active(state, crtc))
- return DSB_SKIP_WAITS_EN |
- DSB_CTRL_WAIT_SAFE_WINDOW |
+ return DSB_CTRL_WAIT_SAFE_WINDOW |
DSB_CTRL_NO_WAIT_VBLANK |
DSB_INST_WAIT_SAFE_WINDOW |
DSB_INST_NO_WAIT_VBLANK;
else
- return DSB_SKIP_WAITS_EN;
+ return 0;
}
static bool assert_dsb_has_room(struct intel_dsb *dsb)
--
2.43.0
^ permalink raw reply related [flat|nested] 24+ messages in thread* [PATCH v7 10/13] drm/i915/display: Evade scanline 0 as well if PSR1 or PSR2 is enabled
2025-02-12 7:57 [PATCH v7 00/13] PSR DSB support Jouni Högander
` (9 preceding siblings ...)
2025-02-12 7:57 ` [PATCH v7 09/13] drm/i915/psr: Remove DSB_SKIP_WAITS_EN chicken bit Jouni Högander
@ 2025-02-12 7:57 ` Jouni Högander
2025-02-12 7:57 ` [PATCH v7 11/13] drm/i915/psr: Add function for triggering "Frame Change" event Jouni Högander
` (5 subsequent siblings)
16 siblings, 0 replies; 24+ messages in thread
From: Jouni Högander @ 2025-02-12 7:57 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Jouni Högander, Ville Syrjälä
PIPEDSL is reading as 0 when in SRDENT(PSR1) or DEEP_SLEEP(PSR2). On
wake-up scanline counting starts from vblank_start - 1. We don't know if
wake-up is already ongoing when evasion starts. In worst case PIPEDSL could
start reading valid value right after checking the scanline. In this
scenario we wouldn't have enough time to write all registers. To tackle
this evade scanline 0 as well. As a drawback we have 1 frame delay in flip
when waking up.
v2:
- use intel_dsb_emit_wait_dsl
- add evasion of scanline 0 also for Panel Replay
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_dsb.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_dsb.c b/drivers/gpu/drm/i915/display/intel_dsb.c
index 30782ab0b908..f15e6c2a195c 100644
--- a/drivers/gpu/drm/i915/display/intel_dsb.c
+++ b/drivers/gpu/drm/i915/display/intel_dsb.c
@@ -538,6 +538,18 @@ void intel_dsb_vblank_evade(struct intel_atomic_state *state,
int latency = intel_usecs_to_scanlines(&crtc_state->hw.adjusted_mode, 20);
int start, end;
+ /*
+ * PIPEDSL is reading as 0 when in SRDENT(PSR1) or DEEP_SLEEP(PSR2). On
+ * wake-up scanline counting starts from vblank_start - 1. We don't know
+ * if wake-up is already ongoing when evasion starts. In worst case
+ * PIPEDSL could start reading valid value right after checking the
+ * scanline. In this scenario we wouldn't have enough time to write all
+ * registers. To tackle this evade scanline 0 as well. As a drawback we
+ * have 1 frame delay in flip when waking up.
+ */
+ if (crtc_state->has_psr)
+ intel_dsb_emit_wait_dsl(dsb, DSB_OPCODE_WAIT_DSL_OUT, 0, 0);
+
if (pre_commit_is_vrr_active(state, crtc)) {
int vblank_delay = intel_vrr_vblank_delay(crtc_state);
--
2.43.0
^ permalink raw reply related [flat|nested] 24+ messages in thread* [PATCH v7 11/13] drm/i915/psr: Add function for triggering "Frame Change" event
2025-02-12 7:57 [PATCH v7 00/13] PSR DSB support Jouni Högander
` (10 preceding siblings ...)
2025-02-12 7:57 ` [PATCH v7 10/13] drm/i915/display: Evade scanline 0 as well if PSR1 or PSR2 is enabled Jouni Högander
@ 2025-02-12 7:57 ` Jouni Högander
2025-02-12 7:57 ` [PATCH v7 12/13] drm/i915/display: Ensure we have "Frame Change" event in DSB commit Jouni Högander
` (4 subsequent siblings)
16 siblings, 0 replies; 24+ messages in thread
From: Jouni Högander @ 2025-02-12 7:57 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Jouni Högander, Ville Syrjälä
Add new function to trigger "Frame Change" event for ensuring we are waking
up before vblank evasion.
v2: dsb as a first parameter
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_psr.c | 22 ++++++++++++++++++++++
drivers/gpu/drm/i915/display/intel_psr.h | 3 +++
2 files changed, 25 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_psr.c b/drivers/gpu/drm/i915/display/intel_psr.c
index c805ff82e700..427a7d1df1f9 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.c
+++ b/drivers/gpu/drm/i915/display/intel_psr.c
@@ -44,6 +44,7 @@
#include "intel_psr.h"
#include "intel_psr_regs.h"
#include "intel_snps_phy.h"
+#include "intel_vblank.h"
#include "skl_universal_plane.h"
/**
@@ -2289,6 +2290,27 @@ bool intel_psr_needs_block_dc_vblank(const struct intel_crtc_state *crtc_state)
return false;
}
+/**
+ * intel_psr_trigger_frame_change_event - Trigger "Frame Change" event
+ * @dsb: DSB context
+ * @state: the atomic state
+ * @crtc: the CRTC
+ *
+ * Generate PSR "Frame Change" event.
+ */
+void intel_psr_trigger_frame_change_event(struct intel_dsb *dsb,
+ struct intel_atomic_state *state,
+ struct intel_crtc *crtc)
+{
+ const struct intel_crtc_state *crtc_state =
+ intel_pre_commit_crtc_state(state, crtc);
+ struct intel_display *display = to_intel_display(crtc);
+
+ if (crtc_state->has_psr)
+ intel_de_write_dsb(display, dsb,
+ CURSURFLIVE(display, crtc->pipe), 0);
+}
+
static u32 man_trk_ctl_enable_bit_get(struct intel_display *display)
{
struct drm_i915_private *dev_priv = to_i915(display->drm);
diff --git a/drivers/gpu/drm/i915/display/intel_psr.h b/drivers/gpu/drm/i915/display/intel_psr.h
index e6eba6633a92..a43a374cff55 100644
--- a/drivers/gpu/drm/i915/display/intel_psr.h
+++ b/drivers/gpu/drm/i915/display/intel_psr.h
@@ -64,6 +64,9 @@ bool intel_psr_link_ok(struct intel_dp *intel_dp);
void intel_psr_lock(const struct intel_crtc_state *crtc_state);
void intel_psr_unlock(const struct intel_crtc_state *crtc_state);
+void intel_psr_trigger_frame_change_event(struct intel_dsb *dsb,
+ struct intel_atomic_state *state,
+ struct intel_crtc *crtc);
void intel_psr_connector_debugfs_add(struct intel_connector *connector);
void intel_psr_debugfs_register(struct intel_display *display);
--
2.43.0
^ permalink raw reply related [flat|nested] 24+ messages in thread* [PATCH v7 12/13] drm/i915/display: Ensure we have "Frame Change" event in DSB commit
2025-02-12 7:57 [PATCH v7 00/13] PSR DSB support Jouni Högander
` (11 preceding siblings ...)
2025-02-12 7:57 ` [PATCH v7 11/13] drm/i915/psr: Add function for triggering "Frame Change" event Jouni Högander
@ 2025-02-12 7:57 ` Jouni Högander
2025-02-12 7:57 ` [PATCH v7 13/13] drm/i915/psr: Allow DSB usage when PSR is enabled Jouni Högander
` (3 subsequent siblings)
16 siblings, 0 replies; 24+ messages in thread
From: Jouni Högander @ 2025-02-12 7:57 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Jouni Högander, Ville Syrjälä
We may have commit which doesn't have any non-arming plane register
writes. In that case there aren't "Frame Change" event before DSB vblank
evasion which hangs as PIPEDSL register is reading as 0 when PSR state is
SRDENT(PSR1) or DEEP_SLEEP(PSR2). Handle this by ensuring "Frame Change"
event at the begin of DSB commit if using PSR/PR.
v3: dsb_commit as a first parameter
v2: use intel_psr_trigger_frame_change_event
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_display.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 79b8d2ad3b9c..0ba85623835c 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -7742,6 +7742,14 @@ static void intel_atomic_dsb_finish(struct intel_atomic_state *state,
intel_crtc_planes_update_noarm(new_crtc_state->dsb_commit,
state, crtc);
+ /*
+ * Ensure we have "Frame Change" event when PSR state is
+ * SRDENT(PSR1) or DEEP_SLEEP(PSR2). Otherwise DSB vblank
+ * evasion hangs as PIPEDSL is reading as 0.
+ */
+ intel_psr_trigger_frame_change_event(new_crtc_state->dsb_commit,
+ state, crtc);
+
intel_dsb_vblank_evade(state, new_crtc_state->dsb_commit);
if (intel_crtc_needs_color_update(new_crtc_state))
--
2.43.0
^ permalink raw reply related [flat|nested] 24+ messages in thread* [PATCH v7 13/13] drm/i915/psr: Allow DSB usage when PSR is enabled
2025-02-12 7:57 [PATCH v7 00/13] PSR DSB support Jouni Högander
` (12 preceding siblings ...)
2025-02-12 7:57 ` [PATCH v7 12/13] drm/i915/display: Ensure we have "Frame Change" event in DSB commit Jouni Högander
@ 2025-02-12 7:57 ` Jouni Högander
2025-02-12 14:52 ` Ville Syrjälä
2025-02-12 9:06 ` ✗ Fi.CI.SPARSE: warning for PSR DSB support (rev9) Patchwork
` (2 subsequent siblings)
16 siblings, 1 reply; 24+ messages in thread
From: Jouni Högander @ 2025-02-12 7:57 UTC (permalink / raw)
To: intel-gfx, intel-xe; +Cc: Jouni Högander, Animesh Manna
Now as we have correct PSR2_MAN_TRK_CTL handling in place we can allow DSB
usage also when PSR is enabled for LunarLake onwards.
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
Reviewed-by: Animesh Manna <animesh.manna@intel.com>
---
drivers/gpu/drm/i915/display/intel_display.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 0ba85623835c..a6966a664d87 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -7698,6 +7698,7 @@ static void intel_atomic_dsb_prepare(struct intel_atomic_state *state,
static void intel_atomic_dsb_finish(struct intel_atomic_state *state,
struct intel_crtc *crtc)
{
+ struct intel_display *display = to_intel_display(state);
const struct intel_crtc_state *old_crtc_state =
intel_atomic_get_old_crtc_state(state, crtc);
struct intel_crtc_state *new_crtc_state =
@@ -7713,7 +7714,7 @@ static void intel_atomic_dsb_finish(struct intel_atomic_state *state,
new_crtc_state->use_dsb =
new_crtc_state->update_planes &&
!new_crtc_state->do_async_flip &&
- !new_crtc_state->has_psr &&
+ (DISPLAY_VER(display) >= 20 || !new_crtc_state->has_psr) &&
!new_crtc_state->scaler_state.scaler_users &&
!old_crtc_state->scaler_state.scaler_users &&
!intel_crtc_needs_modeset(new_crtc_state) &&
--
2.43.0
^ permalink raw reply related [flat|nested] 24+ messages in thread* Re: [PATCH v7 13/13] drm/i915/psr: Allow DSB usage when PSR is enabled
2025-02-12 7:57 ` [PATCH v7 13/13] drm/i915/psr: Allow DSB usage when PSR is enabled Jouni Högander
@ 2025-02-12 14:52 ` Ville Syrjälä
2025-02-12 18:22 ` Hogander, Jouni
0 siblings, 1 reply; 24+ messages in thread
From: Ville Syrjälä @ 2025-02-12 14:52 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-gfx, intel-xe, Animesh Manna
On Wed, Feb 12, 2025 at 09:57:42AM +0200, Jouni Högander wrote:
> Now as we have correct PSR2_MAN_TRK_CTL handling in place we can allow DSB
> usage also when PSR is enabled for LunarLake onwards.
>
> Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> Reviewed-by: Animesh Manna <animesh.manna@intel.com>
> ---
> drivers/gpu/drm/i915/display/intel_display.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
> index 0ba85623835c..a6966a664d87 100644
> --- a/drivers/gpu/drm/i915/display/intel_display.c
> +++ b/drivers/gpu/drm/i915/display/intel_display.c
> @@ -7698,6 +7698,7 @@ static void intel_atomic_dsb_prepare(struct intel_atomic_state *state,
> static void intel_atomic_dsb_finish(struct intel_atomic_state *state,
> struct intel_crtc *crtc)
> {
> + struct intel_display *display = to_intel_display(state);
> const struct intel_crtc_state *old_crtc_state =
> intel_atomic_get_old_crtc_state(state, crtc);
> struct intel_crtc_state *new_crtc_state =
> @@ -7713,7 +7714,7 @@ static void intel_atomic_dsb_finish(struct intel_atomic_state *state,
> new_crtc_state->use_dsb =
> new_crtc_state->update_planes &&
> !new_crtc_state->do_async_flip &&
> - !new_crtc_state->has_psr &&
> + (DISPLAY_VER(display) >= 20 || !new_crtc_state->has_psr) &&
Couldn't we also do it for !selective_fetch on earlier platforms?
> !new_crtc_state->scaler_state.scaler_users &&
> !old_crtc_state->scaler_state.scaler_users &&
> !intel_crtc_needs_modeset(new_crtc_state) &&
> --
> 2.43.0
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 24+ messages in thread* Re: [PATCH v7 13/13] drm/i915/psr: Allow DSB usage when PSR is enabled
2025-02-12 14:52 ` Ville Syrjälä
@ 2025-02-12 18:22 ` Hogander, Jouni
2025-02-12 18:52 ` Ville Syrjälä
0 siblings, 1 reply; 24+ messages in thread
From: Hogander, Jouni @ 2025-02-12 18:22 UTC (permalink / raw)
To: ville.syrjala@linux.intel.com
Cc: intel-xe@lists.freedesktop.org, Manna, Animesh,
intel-gfx@lists.freedesktop.org
On Wed, 2025-02-12 at 16:52 +0200, Ville Syrjälä wrote:
> On Wed, Feb 12, 2025 at 09:57:42AM +0200, Jouni Högander wrote:
> > Now as we have correct PSR2_MAN_TRK_CTL handling in place we can
> > allow DSB
> > usage also when PSR is enabled for LunarLake onwards.
> >
> > Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> > Reviewed-by: Animesh Manna <animesh.manna@intel.com>
> > ---
> > drivers/gpu/drm/i915/display/intel_display.c | 3 ++-
> > 1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git a/drivers/gpu/drm/i915/display/intel_display.c
> > b/drivers/gpu/drm/i915/display/intel_display.c
> > index 0ba85623835c..a6966a664d87 100644
> > --- a/drivers/gpu/drm/i915/display/intel_display.c
> > +++ b/drivers/gpu/drm/i915/display/intel_display.c
> > @@ -7698,6 +7698,7 @@ static void intel_atomic_dsb_prepare(struct
> > intel_atomic_state *state,
> > static void intel_atomic_dsb_finish(struct intel_atomic_state
> > *state,
> > struct intel_crtc *crtc)
> > {
> > + struct intel_display *display = to_intel_display(state);
> > const struct intel_crtc_state *old_crtc_state =
> > intel_atomic_get_old_crtc_state(state, crtc);
> > struct intel_crtc_state *new_crtc_state =
> > @@ -7713,7 +7714,7 @@ static void intel_atomic_dsb_finish(struct
> > intel_atomic_state *state,
> > new_crtc_state->use_dsb =
> > new_crtc_state->update_planes &&
> > !new_crtc_state->do_async_flip &&
> > - !new_crtc_state->has_psr &&
> > + (DISPLAY_VER(display) >= 20 || !new_crtc_state-
> > >has_psr) &&
>
> Couldn't we also do it for !selective_fetch on earlier platforms?
I was thinking this as well, but I haven't tested it. I'm concerned are
of frontbuffer invalidates/flushes. There we are disabling PSR. I'm not
sure if it would be ok to do that while DSB update is ongoing.
BR,
Jouni Högander
>
> > !new_crtc_state->scaler_state.scaler_users &&
> > !old_crtc_state->scaler_state.scaler_users &&
> > !intel_crtc_needs_modeset(new_crtc_state) &&
> > --
> > 2.43.0
>
^ permalink raw reply [flat|nested] 24+ messages in thread* Re: [PATCH v7 13/13] drm/i915/psr: Allow DSB usage when PSR is enabled
2025-02-12 18:22 ` Hogander, Jouni
@ 2025-02-12 18:52 ` Ville Syrjälä
0 siblings, 0 replies; 24+ messages in thread
From: Ville Syrjälä @ 2025-02-12 18:52 UTC (permalink / raw)
To: Hogander, Jouni
Cc: intel-xe@lists.freedesktop.org, Manna, Animesh,
intel-gfx@lists.freedesktop.org
On Wed, Feb 12, 2025 at 06:22:21PM +0000, Hogander, Jouni wrote:
> On Wed, 2025-02-12 at 16:52 +0200, Ville Syrjälä wrote:
> > On Wed, Feb 12, 2025 at 09:57:42AM +0200, Jouni Högander wrote:
> > > Now as we have correct PSR2_MAN_TRK_CTL handling in place we can
> > > allow DSB
> > > usage also when PSR is enabled for LunarLake onwards.
> > >
> > > Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
> > > Reviewed-by: Animesh Manna <animesh.manna@intel.com>
> > > ---
> > > drivers/gpu/drm/i915/display/intel_display.c | 3 ++-
> > > 1 file changed, 2 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/drivers/gpu/drm/i915/display/intel_display.c
> > > b/drivers/gpu/drm/i915/display/intel_display.c
> > > index 0ba85623835c..a6966a664d87 100644
> > > --- a/drivers/gpu/drm/i915/display/intel_display.c
> > > +++ b/drivers/gpu/drm/i915/display/intel_display.c
> > > @@ -7698,6 +7698,7 @@ static void intel_atomic_dsb_prepare(struct
> > > intel_atomic_state *state,
> > > static void intel_atomic_dsb_finish(struct intel_atomic_state
> > > *state,
> > > struct intel_crtc *crtc)
> > > {
> > > + struct intel_display *display = to_intel_display(state);
> > > const struct intel_crtc_state *old_crtc_state =
> > > intel_atomic_get_old_crtc_state(state, crtc);
> > > struct intel_crtc_state *new_crtc_state =
> > > @@ -7713,7 +7714,7 @@ static void intel_atomic_dsb_finish(struct
> > > intel_atomic_state *state,
> > > new_crtc_state->use_dsb =
> > > new_crtc_state->update_planes &&
> > > !new_crtc_state->do_async_flip &&
> > > - !new_crtc_state->has_psr &&
> > > + (DISPLAY_VER(display) >= 20 || !new_crtc_state-
> > > >has_psr) &&
> >
> > Couldn't we also do it for !selective_fetch on earlier platforms?
>
> I was thinking this as well, but I haven't tested it. I'm concerned are
> of frontbuffer invalidates/flushes. There we are disabling PSR. I'm not
> sure if it would be ok to do that while DSB update is ongoing.
As long as we don't touch any PSR registers via the DSB I don't
really see why it shouldn't work. Whether the PSR exit gets
triggered by the DSB, some random event, of the PSR code poking
at the control register or CURSURFLIVE it shouldn't really matter.
But better smoke test it first before flipping the switch I guess.
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 24+ messages in thread
* ✗ Fi.CI.SPARSE: warning for PSR DSB support (rev9)
2025-02-12 7:57 [PATCH v7 00/13] PSR DSB support Jouni Högander
` (13 preceding siblings ...)
2025-02-12 7:57 ` [PATCH v7 13/13] drm/i915/psr: Allow DSB usage when PSR is enabled Jouni Högander
@ 2025-02-12 9:06 ` Patchwork
2025-02-12 9:34 ` ✓ i915.CI.BAT: success " Patchwork
2025-02-12 14:33 ` ✗ i915.CI.Full: failure " Patchwork
16 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-02-12 9:06 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-gfx
== Series Details ==
Series: PSR DSB support (rev9)
URL : https://patchwork.freedesktop.org/series/142520/
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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:245: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: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: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: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: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: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: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: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: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: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: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'
+./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'
+./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'
+./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'
+./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'
+./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'
+./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'
+./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'
+./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'
+./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'
+./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'
+./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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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-
^ permalink raw reply [flat|nested] 24+ messages in thread* ✓ i915.CI.BAT: success for PSR DSB support (rev9)
2025-02-12 7:57 [PATCH v7 00/13] PSR DSB support Jouni Högander
` (14 preceding siblings ...)
2025-02-12 9:06 ` ✗ Fi.CI.SPARSE: warning for PSR DSB support (rev9) Patchwork
@ 2025-02-12 9:34 ` Patchwork
2025-02-12 14:33 ` ✗ i915.CI.Full: failure " Patchwork
16 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-02-12 9:34 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 3771 bytes --]
== Series Details ==
Series: PSR DSB support (rev9)
URL : https://patchwork.freedesktop.org/series/142520/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_16113 -> Patchwork_142520v9
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/index.html
Participating hosts (43 -> 43)
------------------------------
Additional (1): fi-pnv-d510
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_142520v9 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests:
- bat-apl-1: [PASS][1] -> [INCOMPLETE][2] ([i915#12904]) +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/bat-apl-1/igt@dmabuf@all-tests.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/bat-apl-1/igt@dmabuf@all-tests.html
* igt@i915_pm_rpm@module-reload:
- bat-dg2-11: [PASS][3] -> [FAIL][4] ([i915#13633])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
- bat-rpls-4: [PASS][5] -> [FAIL][6] ([i915#13633])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: [PASS][7] -> [SKIP][8] ([i915#9197]) +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_psr@psr-primary-mmap-gtt:
- fi-pnv-d510: NOTRUN -> [SKIP][9] +33 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/fi-pnv-d510/igt@kms_psr@psr-primary-mmap-gtt.html
#### Possible fixes ####
* igt@i915_module_load@load:
- bat-mtlp-9: [DMESG-WARN][10] ([i915#13494]) -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/bat-mtlp-9/igt@i915_module_load@load.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/bat-mtlp-9/igt@i915_module_load@load.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-9: [DMESG-FAIL][12] ([i915#12061]) -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494
[i915#13633]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13633
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
Build changes
-------------
* Linux: CI_DRM_16113 -> Patchwork_142520v9
CI-20190529: 20190529
CI_DRM_16113: 212e6e1842223b745408ec6ae15be3009bb8635e @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8228: 8228
Patchwork_142520v9: 212e6e1842223b745408ec6ae15be3009bb8635e @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/index.html
[-- Attachment #2: Type: text/html, Size: 4595 bytes --]
^ permalink raw reply [flat|nested] 24+ messages in thread* ✗ i915.CI.Full: failure for PSR DSB support (rev9)
2025-02-12 7:57 [PATCH v7 00/13] PSR DSB support Jouni Högander
` (15 preceding siblings ...)
2025-02-12 9:34 ` ✓ i915.CI.BAT: success " Patchwork
@ 2025-02-12 14:33 ` Patchwork
2025-02-13 6:08 ` Hogander, Jouni
16 siblings, 1 reply; 24+ messages in thread
From: Patchwork @ 2025-02-12 14:33 UTC (permalink / raw)
To: Jouni Högander; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 100249 bytes --]
== Series Details ==
Series: PSR DSB support (rev9)
URL : https://patchwork.freedesktop.org/series/142520/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_16113_full -> Patchwork_142520v9_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_142520v9_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_142520v9_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 (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_142520v9_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_tiled_swapping@non-threaded:
- shard-snb: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-snb6/igt@gem_tiled_swapping@non-threaded.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-snb2/igt@gem_tiled_swapping@non-threaded.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg1: [PASS][3] -> [SKIP][4] +16 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_flip@flip-vs-suspend-interruptible.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-dg1: NOTRUN -> [SKIP][5] +13 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_rotation_crc@multiplane-rotation.html
#### Warnings ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg1: [SKIP][6] ([i915#1769] / [i915#3555]) -> [SKIP][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: [SKIP][8] ([i915#4538] / [i915#5286]) -> [SKIP][9] +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-dg1: [SKIP][10] ([i915#3638]) -> [SKIP][11] +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg1: [SKIP][12] ([i915#4538]) -> [SKIP][13] +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs:
- shard-dg1: [SKIP][14] ([i915#6095]) -> [SKIP][15] +6 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-13/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg1: [SKIP][16] ([i915#3299]) -> [SKIP][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-13/igt@kms_content_protection@dp-mst-type-0.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-dg1: [SKIP][18] ([i915#3555]) -> [SKIP][19] +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_cursor_crc@cursor-onscreen-32x10.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg1: [SKIP][20] ([i915#4103] / [i915#4213]) -> [SKIP][21]
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg1: [SKIP][22] ([i915#3555] / [i915#3840]) -> [SKIP][23]
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_dsc@dsc-with-bpc-formats.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg1: [SKIP][24] ([i915#3555] / [i915#8228]) -> [SKIP][25]
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_hdr@static-toggle-dpms.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_vrr@max-min:
- shard-dg1: [SKIP][26] ([i915#9906]) -> [SKIP][27]
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-13/igt@kms_vrr@max-min.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_vrr@max-min.html
New tests
---------
New tests have been introduced between CI_DRM_16113_full and Patchwork_142520v9_full:
### New IGT tests (2) ###
* igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-a-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.32] s
* igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-d-hdmi-a-4:
- Statuses : 1 pass(s)
- Exec time: [3.21] s
Known issues
------------
Here are the changes found in Patchwork_142520v9_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#8411]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#9318])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@debugfs_test@basic-hwmon.html
* igt@drm_fdinfo@all-busy-idle-check-all:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#8414])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@drm_fdinfo@all-busy-idle-check-all.html
* igt@drm_fdinfo@busy-hang@bcs0:
- shard-dg2-9: NOTRUN -> [SKIP][31] ([i915#8414]) +8 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@drm_fdinfo@busy-hang@bcs0.html
* igt@fbdev@pan:
- shard-dg1: [PASS][32] -> [SKIP][33] ([i915#2582])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-13/igt@fbdev@pan.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@fbdev@pan.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#3936])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@gem_busy@semaphore.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-tglu-1: NOTRUN -> [SKIP][35] ([i915#9323])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][36] ([i915#9323])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@gem_ccs@suspend-resume.html
* igt@gem_compute@compute-square:
- shard-dg2-9: NOTRUN -> [FAIL][37] ([i915#13665])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@gem_compute@compute-square.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][38] ([i915#6335])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_sseu@mmap-args:
- shard-tglu-1: NOTRUN -> [SKIP][39] ([i915#280])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@kms:
- shard-mtlp: [PASS][40] -> [ABORT][41] ([i915#13193]) +1 other test abort
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-mtlp-6/igt@gem_eio@kms.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-7/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-dual:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4771])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-3/igt@gem_exec_balancer@bonded-dual.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#4525])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-tglu: NOTRUN -> [SKIP][44] ([i915#4525])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-tglu-1: NOTRUN -> [SKIP][45] ([i915#4525]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_fence@submit:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#4812])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@gem_exec_fence@submit.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg2-9: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#3539])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#3539] / [i915#4852]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-10/igt@gem_exec_flush@basic-uc-ro-default.html
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#3539] / [i915#4852])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_reloc@basic-active:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#3281]) +8 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][52] ([i915#3281]) +4 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@gem_exec_reloc@basic-cpu-gtt.html
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#3281]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#3281]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-3/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_schedule@preempt-engines@vecs0:
- shard-rkl: [PASS][55] -> [DMESG-WARN][56] ([i915#12964]) +16 other tests dmesg-warn
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-rkl-8/igt@gem_exec_schedule@preempt-engines@vecs0.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@gem_exec_schedule@preempt-engines@vecs0.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4537] / [i915#4812])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4860]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4860])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-6/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4860])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#4613] / [i915#7582])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4613])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-3/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-tglu-1: NOTRUN -> [SKIP][63] ([i915#4613]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][64] ([i915#4613]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_madvise@dontneed-before-pwrite:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#3282]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@gem_madvise@dontneed-before-pwrite.html
* igt@gem_mmap_gtt@fault-concurrent-x:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4077]) +6 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-10/igt@gem_mmap_gtt@fault-concurrent-x.html
- shard-dg1: NOTRUN -> [SKIP][67] ([i915#4077])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@gem_mmap_gtt@fault-concurrent-x.html
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4077]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-6/igt@gem_mmap_gtt@fault-concurrent-x.html
* igt@gem_mmap_wc@bad-offset:
- shard-dg2-9: NOTRUN -> [SKIP][69] ([i915#4083])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@gem_mmap_wc@bad-offset.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4083]) +5 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@write-read-distinct:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4083])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-3/igt@gem_mmap_wc@write-read-distinct.html
* igt@gem_pwrite@basic-random:
- shard-dg2-9: NOTRUN -> [SKIP][72] ([i915#3282])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@create-protected-buffer:
- shard-rkl: [PASS][73] -> [TIMEOUT][74] ([i915#12964])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-rkl-8/igt@gem_pxp@create-protected-buffer.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-4/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@create-regular-context-1:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#4270]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@gem_pxp@create-regular-context-1.html
- shard-rkl: [PASS][76] -> [TIMEOUT][77] ([i915#12917] / [i915#12964]) +1 other test timeout
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-rkl-8/igt@gem_pxp@create-regular-context-1.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-3/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-dg2-9: NOTRUN -> [SKIP][78] ([i915#4270])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@gem_pxp@fail-invalid-protected-context.html
- shard-rkl: NOTRUN -> [TIMEOUT][79] ([i915#12964])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-tglu-1: NOTRUN -> [SKIP][80] ([i915#13398])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_render_copy@y-tiled-to-vebox-y-tiled:
- shard-dg2-9: NOTRUN -> [SKIP][81] ([i915#5190] / [i915#8428]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#5190] / [i915#8428]) +3 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2-9: NOTRUN -> [SKIP][83] ([i915#4079])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#8411])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4079])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@gem_set_tiling_vs_gtt.html
* igt@gem_tiled_swapping@non-threaded:
- shard-tglu: NOTRUN -> [FAIL][86] ([i915#12941])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][87] ([i915#3297])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2-9: NOTRUN -> [SKIP][88] ([i915#3297]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@gem_userptr_blits@dmabuf-unsync.html
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#3297])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2-9: NOTRUN -> [SKIP][90] ([i915#3297] / [i915#4880])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#3297]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-tglu: NOTRUN -> [SKIP][92] ([i915#3297])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen7_exec_parse@basic-rejected:
- shard-dg2-9: NOTRUN -> [SKIP][93] +3 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@gen7_exec_parse@basic-rejected.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][94] +12 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-10/igt@gen7_exec_parse@bitmasks.html
- shard-dg1: NOTRUN -> [SKIP][95] +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@bb-secure:
- shard-tglu: NOTRUN -> [SKIP][96] ([i915#2527] / [i915#2856]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-out:
- shard-tglu-1: NOTRUN -> [SKIP][97] ([i915#2527] / [i915#2856]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#2856]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@shadow-peek:
- shard-dg2-9: NOTRUN -> [SKIP][99] ([i915#2856]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@gen9_exec_parse@shadow-peek.html
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#2527])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_fb_tiling:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#4881])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@i915_fb_tiling.html
* igt@i915_module_load@resize-bar:
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#7178])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@i915_module_load@resize-bar.html
- shard-tglu: NOTRUN -> [SKIP][103] ([i915#6412])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu-1: NOTRUN -> [WARN][104] ([i915#2681]) +1 other test warn
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [PASS][105] -> [FAIL][106] ([i915#3591])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rpm@gem-evict-pwrite:
- shard-dg2-9: NOTRUN -> [SKIP][107] ([i915#4077]) +6 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@i915_pm_rpm@gem-evict-pwrite.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#11681] / [i915#6621])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@waitboost:
- shard-mtlp: NOTRUN -> [FAIL][109] ([i915#8346])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-6/igt@i915_pm_rps@waitboost.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#4387])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@i915_pm_sseu@full-enable.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu-1: NOTRUN -> [SKIP][111] ([i915#7707]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-dg2-9: NOTRUN -> [SKIP][112] ([i915#4212])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#4212]) +2 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu-1: NOTRUN -> [SKIP][114] ([i915#12454] / [i915#12712])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-dp-3-4-rc-ccs-cc:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#8709]) +7 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-dp-3-4-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y-rc-ccs-cc:
- shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#8709]) +3 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#8709]) +4 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][118] ([i915#8709]) +7 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#1769] / [i915#3555])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2-9: NOTRUN -> [SKIP][120] ([i915#1769] / [i915#3555])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#1769] / [i915#3555])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][122] ([i915#5286]) +2 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#5286]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#5286])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#3638])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-13/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#3638])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#5190]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][128] +3 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#4538] / [i915#5190]) +5 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#4538])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-13/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
- shard-dg2-9: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5190]) +5 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-mtlp: NOTRUN -> [SKIP][132] +4 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#6095]) +123 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-17/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][134] ([i915#6095]) +49 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#6095]) +29 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#6095]) +14 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-3/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#12313]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#10307] / [i915#6095]) +145 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#6095]) +73 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][141] ([i915#10307] / [i915#6095]) +34 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#12805])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#12805])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#6095]) +13 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: [PASS][145] -> [INCOMPLETE][146] ([i915#12796])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-glk7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-glk1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_cdclk@mode-transition:
- shard-tglu-1: NOTRUN -> [SKIP][147] ([i915#3742])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#7213]) +3 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#3742])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][150] ([i915#4087]) +4 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-dg2-9: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +3 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +2 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-3/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +5 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#11151] / [i915#7828]) +5 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#7828]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-tglu: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +4 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#7828]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_color@deep-color:
- shard-dg2: [PASS][158] -> [SKIP][159] ([i915#3555])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg2-11/igt@kms_color@deep-color.html
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-7/igt@kms_color@deep-color.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-9: NOTRUN -> [SKIP][160] ([i915#3299])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#3116] / [i915#3299])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: NOTRUN -> [FAIL][162] ([i915#7173]) +1 other test fail
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2-9: NOTRUN -> [SKIP][163] ([i915#9424])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_content_protection@lic-type-1.html
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#9424])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#6944] / [i915#9424])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-3/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#3555]) +3 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#13049]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#13049])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-dg2-9: NOTRUN -> [SKIP][169] ([i915#13049])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#13049]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#9809])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#13046] / [i915#5354]) +6 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-dg2-9: NOTRUN -> [SKIP][173] ([i915#13046] / [i915#5354]) +2 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-tglu-1: NOTRUN -> [SKIP][174] ([i915#4103])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-tglu-1: NOTRUN -> [SKIP][175] ([i915#9723])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#8588])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#3804])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2-9: NOTRUN -> [SKIP][178] ([i915#8812])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#3840])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#3840])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#3840])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_dsc@dsc-with-formats.html
* igt@kms_feature_discovery@psr2:
- shard-dg2-9: NOTRUN -> [SKIP][182] ([i915#658])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_feature_discovery@psr2.html
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#658])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-dg2-9: NOTRUN -> [SKIP][184] ([i915#9934])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_flip@2x-blocking-wf_vblank.html
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#9934])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#3637]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-3/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#9934]) +6 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2-9: NOTRUN -> [SKIP][188] ([i915#8381])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-tglu-1: NOTRUN -> [SKIP][189] ([i915#3637]) +4 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#9934])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
- shard-tglu: NOTRUN -> [SKIP][191] ([i915#3637]) +2 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-snb: [PASS][192] -> [FAIL][193] ([i915#11989]) +1 other test fail
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-snb5/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-snb6/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-rkl: [PASS][194] -> [FAIL][195] ([i915#11989])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-rkl-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2:
- shard-rkl: NOTRUN -> [FAIL][196] ([i915#11989])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1:
- shard-tglu: [PASS][197] -> [FAIL][198] ([i915#11989]) +2 other tests fail
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-tglu-7/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-7/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html
* igt@kms_flip@flip-vs-modeset-vs-hang@b-hdmi-a1:
- shard-rkl: NOTRUN -> [DMESG-WARN][199] ([i915#12964]) +6 other tests dmesg-warn
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_flip@flip-vs-modeset-vs-hang@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-tglu: NOTRUN -> [SKIP][200] ([i915#2672] / [i915#3555]) +2 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][201] ([i915#2587] / [i915#2672]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#2587] / [i915#2672]) +2 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
- shard-dg2-9: NOTRUN -> [SKIP][203] ([i915#2672]) +2 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#2672] / [i915#3555] / [i915#5190])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#2672])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#2672] / [i915#3555])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#2587] / [i915#2672])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-dg1: [PASS][208] -> [SKIP][209] ([i915#3555])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-dg2-9: NOTRUN -> [SKIP][210] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu:
- shard-dg1: [PASS][211] -> [SKIP][212] ([i915#4342]) +2 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: [PASS][213] -> [DMESG-WARN][214] ([i915#12917] / [i915#12964])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#1825]) +9 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-tglu-1: NOTRUN -> [SKIP][216] +57 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary:
- shard-dg2: [PASS][217] -> [FAIL][218] ([i915#6880])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#4342]) +6 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#10433] / [i915#3458]) +3 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-9: NOTRUN -> [SKIP][221] ([i915#8708]) +7 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#5354]) +24 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][223] ([i915#8708])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-tglu: NOTRUN -> [SKIP][224] +42 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#1825]) +7 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#8708]) +17 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#10055]) +1 other test skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu: NOTRUN -> [SKIP][228] ([i915#9766])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#3023]) +5 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
- shard-dg2-9: NOTRUN -> [SKIP][230] ([i915#3458]) +9 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2-9: NOTRUN -> [SKIP][231] ([i915#5354]) +11 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#3458]) +7 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdmi_inject@inject-audio:
- shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#13030])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch:
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#3555] / [i915#8228])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_hdr@bpc-switch.html
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#3555] / [i915#8228])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2: [PASS][236] -> [SKIP][237] ([i915#3555] / [i915#8228])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg2-11/igt@kms_hdr@bpc-switch-suspend.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-7/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_invalid_mode@zero-clock:
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#3555])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_invalid_mode@zero-clock.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][239] ([i915#10656])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#10656])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#12394])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2-9: NOTRUN -> [SKIP][242] ([i915#13522])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#4816])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk: [PASS][244] -> [INCOMPLETE][245] ([i915#12756])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-glk4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-glk6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_plane@pixel-format:
- shard-dg1: [PASS][246] -> [SKIP][247] ([i915#8825])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-13/igt@kms_plane@pixel-format.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_plane@pixel-format.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d:
- shard-dg1: [PASS][248] -> [SKIP][249] ([i915#8152]) +1 other test skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-tglu: NOTRUN -> [SKIP][250] ([i915#12247]) +8 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#3555])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#12247]) +3 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
- shard-tglu: NOTRUN -> [SKIP][254] ([i915#12247] / [i915#6953])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2: NOTRUN -> [SKIP][255] ([i915#12247] / [i915#9423])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#12247]) +11 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-tglu-1: NOTRUN -> [SKIP][257] ([i915#12247] / [i915#6953])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#12247]) +7 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling:
- shard-dg1: [PASS][259] -> [SKIP][260] ([i915#3555] / [i915#8152])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-c:
- shard-dg1: [PASS][261] -> [SKIP][262] ([i915#12247]) +8 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-c.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-c.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d:
- shard-dg1: [PASS][263] -> [SKIP][264] ([i915#12247] / [i915#8152]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5:
- shard-dg1: [PASS][265] -> [SKIP][266] ([i915#6953] / [i915#8152])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-13/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-tglu-1: NOTRUN -> [SKIP][267] ([i915#12247] / [i915#3555])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][268] ([i915#12343])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#9812])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#9685])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#3828])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-10/igt@kms_pm_dc@dc5-retention-flops.html
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#3828])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_pm_dc@dc5-retention-flops.html
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#3828])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#5978])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [PASS][275] -> [SKIP][276] ([i915#9340])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][277] ([i915#9519])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [PASS][278] -> [SKIP][279] ([i915#9519])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg1: [PASS][280] -> [SKIP][281] ([i915#9519])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2-9: NOTRUN -> [SKIP][282] ([i915#6524] / [i915#6805])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_prime@basic-crc-vgem.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-tglu: NOTRUN -> [SKIP][283] ([i915#6524])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#11520])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
- shard-tglu: NOTRUN -> [SKIP][285] ([i915#11520]) +4 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
- shard-mtlp: NOTRUN -> [SKIP][286] ([i915#12316])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][287] ([i915#11520]) +2 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-tglu-1: NOTRUN -> [SKIP][288] ([i915#11520]) +6 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-dg2-9: NOTRUN -> [SKIP][289] ([i915#11520]) +3 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][290] ([i915#11520]) +6 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr@fbc-psr-primary-render:
- shard-tglu-1: NOTRUN -> [SKIP][291] ([i915#9732]) +15 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_psr@fbc-psr-primary-render.html
* igt@kms_psr@fbc-psr2-sprite-blt:
- shard-dg2-9: NOTRUN -> [SKIP][292] ([i915#1072] / [i915#9732]) +10 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_psr@fbc-psr2-sprite-blt.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-mtlp: NOTRUN -> [SKIP][293] ([i915#9688]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-6/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@pr-primary-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][294] ([i915#1072] / [i915#9732]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_psr@pr-primary-mmap-gtt.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#1072] / [i915#9732]) +4 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][296] ([i915#9732]) +8 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][297] ([i915#1072] / [i915#9732]) +16 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-tglu-1: NOTRUN -> [SKIP][298] ([i915#5289])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-dg2-9: NOTRUN -> [SKIP][299] ([i915#12755] / [i915#5190])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#12755] / [i915#5190])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#5289])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#3555]) +1 other test skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-9: NOTRUN -> [SKIP][303] ([i915#3555]) +2 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@max-min:
- shard-tglu: NOTRUN -> [SKIP][304] ([i915#9906])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#3555] / [i915#9906])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-tglu-1: NOTRUN -> [SKIP][306] ([i915#9906])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-tglu: NOTRUN -> [SKIP][307] ([i915#2437] / [i915#9412])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][308] ([i915#4349]) +4 other tests fail
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@invalid-init:
- shard-tglu-1: NOTRUN -> [FAIL][309] ([i915#13663])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@perf_pmu@invalid-init.html
* igt@perf_pmu@rc6-all-gts:
- shard-tglu: NOTRUN -> [SKIP][310] ([i915#8516])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][311] ([i915#8516]) +1 other test skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_mmap@test_aperture_limit:
- shard-dg2: NOTRUN -> [WARN][312] ([i915#9351])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@prime_mmap@test_aperture_limit.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: NOTRUN -> [CRASH][313] ([i915#9351])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][314] ([i915#3291] / [i915#3708])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][315] ([i915#3708] / [i915#4077])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-write-hang:
- shard-mtlp: NOTRUN -> [SKIP][316] ([i915#3708])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-3/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][317] ([i915#9917])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-tglu: NOTRUN -> [FAIL][318] ([i915#12910])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@syncobj_wait@single-wait-all-submitted:
- shard-dg1: [PASS][319] -> [DMESG-WARN][320] ([i915#4423]) +1 other test dmesg-warn
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-12/igt@syncobj_wait@single-wait-all-submitted.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-14/igt@syncobj_wait@single-wait-all-submitted.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume:
- shard-dg2: [INCOMPLETE][321] ([i915#13356]) -> [PASS][322]
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg2-4/igt@gem_ccs@suspend-resume.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [INCOMPLETE][323] ([i915#12392] / [i915#13356]) -> [PASS][324]
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][325] ([i915#12543] / [i915#5784]) -> [PASS][326]
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@gem_eio@reset-stress.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@gem_eio@reset-stress.html
* igt@gem_eio@wait-1us:
- shard-mtlp: [ABORT][327] ([i915#13193]) -> [PASS][328]
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-mtlp-7/igt@gem_eio@wait-1us.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-6/igt@gem_eio@wait-1us.html
* igt@gem_exec_suspend@basic-s0@smem:
- shard-dg2: [INCOMPLETE][329] ([i915#11441] / [i915#13304]) -> [PASS][330] +1 other test pass
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg2-10/igt@gem_exec_suspend@basic-s0@smem.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@gem_exec_suspend@basic-s0@smem.html
* igt@gem_pxp@create-regular-context-2:
- shard-rkl: [TIMEOUT][331] ([i915#12917] / [i915#12964]) -> [PASS][332]
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-rkl-4/igt@gem_pxp@create-regular-context-2.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-8/igt@gem_pxp@create-regular-context-2.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: [FAIL][333] ([i915#12739] / [i915#3591]) -> [PASS][334]
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@i915_pm_rps@waitboost:
- shard-rkl: [FAIL][335] -> [PASS][336]
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-rkl-5/igt@i915_pm_rps@waitboost.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-8/igt@i915_pm_rps@waitboost.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [FAIL][337] ([i915#13566]) -> [PASS][338] +1 other test pass
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][339] ([i915#13566]) -> [PASS][340] +1 other test pass
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-onscreen-256x256:
- shard-dg1: [SKIP][341] -> [PASS][342] +69 other tests pass
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_cursor_crc@cursor-onscreen-256x256.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-17/igt@kms_cursor_crc@cursor-onscreen-256x256.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
- shard-dg1: [DMESG-WARN][343] ([i915#4423]) -> [PASS][344] +1 other test pass
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-13/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-12/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
* igt@kms_fbcon_fbt@fbc:
- shard-dg1: [SKIP][345] ([i915#1849]) -> [PASS][346]
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_fbcon_fbt@fbc.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-18/igt@kms_fbcon_fbt@fbc.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-dg1: [SKIP][347] ([i915#3637]) -> [PASS][348] +1 other test pass
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_flip@basic-flip-vs-wf_vblank.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-18/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a3:
- shard-dg2: [FAIL][349] ([i915#11989]) -> [PASS][350]
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg2-6/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a3.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-6/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a3.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-rkl: [FAIL][351] ([i915#11989]) -> [PASS][352]
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-rkl-8/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_flip@wf_vblank-ts-check-interruptible.html
- shard-dg1: [FAIL][353] ([i915#11989]) -> [PASS][354]
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-13/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling:
- shard-dg1: [SKIP][355] ([i915#3555]) -> [PASS][356] +8 other tests pass
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt:
- shard-dg1: [SKIP][357] ([i915#4342]) -> [PASS][358] +5 other tests pass
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [FAIL][359] ([i915#6880]) -> [PASS][360]
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: [SKIP][361] ([i915#3555] / [i915#8228]) -> [PASS][362]
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg2-1/igt@kms_hdr@invalid-metadata-sizes.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_plane@plane-position-covered:
- shard-dg1: [SKIP][363] ([i915#8825]) -> [PASS][364] +1 other test pass
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_plane@plane-position-covered.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-13/igt@kms_plane@plane-position-covered.html
* igt@kms_plane_alpha_blend@alpha-7efc:
- shard-dg1: [SKIP][365] ([i915#7294]) -> [PASS][366] +1 other test pass
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_plane_alpha_blend@alpha-7efc.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-12/igt@kms_plane_alpha_blend@alpha-7efc.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a:
- shard-dg1: [SKIP][367] ([i915#12247]) -> [PASS][368] +8 other tests pass
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-17/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format:
- shard-dg1: [SKIP][369] ([i915#8152]) -> [PASS][370] +2 other tests pass
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-12/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
- shard-dg1: [SKIP][371] ([i915#6953] / [i915#8152]) -> [PASS][372]
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d:
- shard-dg1: [SKIP][373] ([i915#12247] / [i915#8152]) -> [PASS][374] +2 other tests pass
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [FAIL][375] ([i915#9295]) -> [PASS][376]
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg1: [SKIP][377] ([i915#9519]) -> [PASS][378]
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-18/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@drm-resources-equal:
- shard-dg1: [SKIP][379] ([i915#3547] / [i915#9519]) -> [PASS][380]
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_pm_rpm@drm-resources-equal.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-12/igt@kms_pm_rpm@drm-resources-equal.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [SKIP][381] ([i915#9519]) -> [PASS][382]
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][383] ([i915#9519]) -> [PASS][384] +2 other tests pass
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_properties@invalid-properties-atomic:
- shard-rkl: [DMESG-WARN][385] ([i915#12964]) -> [PASS][386] +1 other test pass
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-rkl-1/igt@kms_properties@invalid-properties-atomic.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-5/igt@kms_properties@invalid-properties-atomic.html
* igt@perf_pmu@module-unload:
- shard-mtlp: [INCOMPLETE][387] -> [PASS][388]
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-mtlp-7/igt@perf_pmu@module-unload.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-3/igt@perf_pmu@module-unload.html
#### Warnings ####
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg1: [SKIP][389] -> [SKIP][390] ([i915#1769] / [i915#3555])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-18/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg1: [SKIP][391] -> [SKIP][392] ([i915#4538] / [i915#5286]) +3 other tests skip
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg1: [SKIP][393] -> [SKIP][394] ([i915#3638]) +2 other tests skip
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-13/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-dg1: [SKIP][395] -> [SKIP][396] ([i915#4538]) +3 other tests skip
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-dg1: [SKIP][397] -> [SKIP][398] ([i915#6095]) +10 other tests skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-13/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg1: [SKIP][399] -> [SKIP][400] ([i915#12805])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-13/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: [FAIL][401] ([i915#7173]) -> [SKIP][402] ([i915#7118] / [i915#9424])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg2-11/igt@kms_content_protection@atomic-dpms.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-7/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@lic-type-1:
- shard-dg1: [SKIP][403] -> [SKIP][404] ([i915#9424])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_content_protection@lic-type-1.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-18/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg1: [SKIP][405] -> [SKIP][406] ([i915#13049]) +2 other tests skip
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_cursor_crc@cursor-sliding-512x512.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-13/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg1: [SKIP][407] -> [SKIP][408] ([i915#9723])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-17/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg1: [SKIP][409] -> [SKIP][410] ([i915#8812])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_draw_crc@draw-method-mmap-wc.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-18/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg1: [SKIP][411] -> [SKIP][412] ([i915#3555] / [i915#3840]) +1 other test skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_dsc@dsc-with-formats.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-12/igt@kms_dsc@dsc-with-formats.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg1: [SKIP][413] ([i915#3555]) -> [SKIP][414] ([i915#2672] / [i915#3555]) +1 other test skip
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg1: [SKIP][415] ([i915#2672] / [i915#3555]) -> [SKIP][416] ([i915#3555]) +1 other test skip
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-dg1: [SKIP][417] -> [SKIP][418] ([i915#4423]) +2 other tests skip
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-dg1: [SKIP][419] ([i915#4342]) -> [SKIP][420] +26 other tests skip
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
- shard-dg2: [SKIP][421] ([i915#10433] / [i915#3458]) -> [SKIP][422] ([i915#3458]) +1 other test skip
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite:
- shard-dg1: [SKIP][423] -> [SKIP][424] ([i915#4342]) +10 other tests skip
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
- shard-dg1: [SKIP][425] ([i915#4342]) -> [SKIP][426] ([i915#3458]) +15 other tests skip
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg1: [SKIP][427] ([i915#9766]) -> [SKIP][428] ([i915#4342])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-13/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt:
- shard-dg1: [SKIP][429] ([i915#8708]) -> [SKIP][430] ([i915#4342]) +6 other tests skip
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: [SKIP][431] ([i915#4342]) -> [SKIP][432] ([i915#8708]) +
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/index.html
[-- Attachment #2: Type: text/html, Size: 109217 bytes --]
^ permalink raw reply [flat|nested] 24+ messages in thread* Re: ✗ i915.CI.Full: failure for PSR DSB support (rev9)
2025-02-12 14:33 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-02-13 6:08 ` Hogander, Jouni
0 siblings, 0 replies; 24+ messages in thread
From: Hogander, Jouni @ 2025-02-13 6:08 UTC (permalink / raw)
To: intel-gfx@lists.freedesktop.org
[-- Attachment #1: Type: text/plain, Size: 94319 bytes --]
Hello All,
Possible regressions identified by CI are not related to my patches. See more details inline below.
BR,
Jouni Högander
On Wed, 2025-02-12 at 14:33 +0000, Patchwork wrote:
Patch Details
Series: PSR DSB support (rev9)
URL: https://patchwork.freedesktop.org/series/142520/
State: failure
Details: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/index.html
CI Bug Log - changes from CI_DRM_16113_full -> Patchwork_142520v9_full
Summary
FAILURE
Serious unknown changes coming with Patchwork_142520v9_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_142520v9_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 (10 -> 10)
No changes in participating hosts
Possible new issues
Here are the unknown changes that may have been introduced in Patchwork_142520v9_full:
IGT changes
Possible regressions
* igt@gem_tiled_swapping@non-threaded:
* shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-snb6/igt@gem_tiled_swapping@non-threaded.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-snb2/igt@gem_tiled_swapping@non-threaded.html>
I don't think my patches could cause memory allocation failure:
Starting subtest: non-threaded
(gem_tiled_swapping:3039) ioctl_wrappers-CRITICAL: Test assertion failure function gem_set_domain, file ../lib/ioctl_wrappers.c:542:
(gem_tiled_swapping:3039) ioctl_wrappers-CRITICAL: Failed assertion: ret == 0
(gem_tiled_swapping:3039) ioctl_wrappers-CRITICAL: Last errno: 12, Cannot allocate memory
(gem_tiled_swapping:3039) ioctl_wrappers-CRITICAL: error: -12 != 0
Subtest non-threaded failed.
* igt@kms_flip@flip-vs-suspend-interruptible:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_flip@flip-vs-suspend-interruptible.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_flip@flip-vs-suspend-interruptible.html> +16 other tests skip
* igt@kms_rotation_crc@multiplane-rotation:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_rotation_crc@multiplane-rotation.html> +13 other tests skip
These are expected skips as there are no monitors connected:
Connector info
--------------
[CONNECTOR:313:DP-1]: status: disconnected
[CONNECTOR:325:HDMI-A-1]: status: disconnected
[CONNECTOR:332:HDMI-A-2]: status: disconnected
[CONNECTOR:336:DP-2]: status: disconnected
[CONNECTOR:344:HDMI-A-3]: status: disconnected
[CONNECTOR:348:DP-3]: status: disconnected
[CONNECTOR:356:HDMI-A-4]: status: disconnected
BR,
Jouni Högander
Warnings
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> ([i915#1769] / [i915#3555]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html>
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html> ([i915#4538] / [i915#5286]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html> +2 other tests skip
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html> ([i915#3638]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html> +1 other test skip
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html> ([i915#4538]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html> +1 other test skip
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-13/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html> ([i915#6095]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html> +6 other tests skip
* igt@kms_content_protection@dp-mst-type-0:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-13/igt@kms_content_protection@dp-mst-type-0.html> ([i915#3299]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_content_protection@dp-mst-type-0.html>
* igt@kms_cursor_crc@cursor-onscreen-32x10:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_cursor_crc@cursor-onscreen-32x10.html> ([i915#3555]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_cursor_crc@cursor-onscreen-32x10.html> +1 other test skip
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html> ([i915#4103] / [i915#4213]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html>
* igt@kms_dsc@dsc-with-bpc-formats:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_dsc@dsc-with-bpc-formats.html> ([i915#3555] / [i915#3840]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_dsc@dsc-with-bpc-formats.html>
* igt@kms_hdr@static-toggle-dpms:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_hdr@static-toggle-dpms.html> ([i915#3555] / [i915#8228]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_hdr@static-toggle-dpms.html>
* igt@kms_vrr@max-min:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-13/igt@kms_vrr@max-min.html> ([i915#9906]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_vrr@max-min.html>
New tests
New tests have been introduced between CI_DRM_16113_full and Patchwork_142520v9_full:
New IGT tests (2)
* igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-a-hdmi-a-4:
* Statuses : 1 pass(s)
* Exec time: [3.32] s
* igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-d-hdmi-a-4:
* Statuses : 1 pass(s)
* Exec time: [3.21] s
Known issues
Here are the changes found in Patchwork_142520v9_full that come from known issues:
IGT changes
Issues hit
* igt@api_intel_bb@object-reloc-purge-cache:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@api_intel_bb@object-reloc-purge-cache.html> ([i915#8411]) +1 other test skip
* igt@debugfs_test@basic-hwmon:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@debugfs_test@basic-hwmon.html> ([i915#9318])
* igt@drm_fdinfo@all-busy-idle-check-all:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@drm_fdinfo@all-busy-idle-check-all.html> ([i915#8414])
* igt@drm_fdinfo@busy-hang@bcs0:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@drm_fdinfo@busy-hang@bcs0.html> ([i915#8414]) +8 other tests skip
* igt@fbdev@pan:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-13/igt@fbdev@pan.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@fbdev@pan.html> ([i915#2582])
* igt@gem_busy@semaphore:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@gem_busy@semaphore.html> ([i915#3936])
* igt@gem_ccs@block-multicopy-compressed:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@gem_ccs@block-multicopy-compressed.html> ([i915#9323])
* igt@gem_ccs@suspend-resume:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@gem_ccs@suspend-resume.html> ([i915#9323])
* igt@gem_compute@compute-square:
* shard-dg2-9: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@gem_compute@compute-square.html> ([i915#13665])
* igt@gem_create@create-ext-cpu-access-big:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@gem_create@create-ext-cpu-access-big.html> ([i915#6335])
* igt@gem_ctx_sseu@mmap-args:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html> ([i915#280])
* igt@gem_eio@kms:
* shard-mtlp: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-mtlp-6/igt@gem_eio@kms.html> -> ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-7/igt@gem_eio@kms.html> ([i915#13193]) +1 other test abort
* igt@gem_exec_balancer@bonded-dual:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-3/igt@gem_exec_balancer@bonded-dual.html> ([i915#4771])
* igt@gem_exec_balancer@parallel:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@gem_exec_balancer@parallel.html> ([i915#4525])
* igt@gem_exec_balancer@parallel-keep-in-fence:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@gem_exec_balancer@parallel-keep-in-fence.html> ([i915#4525])
* igt@gem_exec_balancer@parallel-out-fence:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@gem_exec_balancer@parallel-out-fence.html> ([i915#4525]) +1 other test skip
* igt@gem_exec_fence@submit:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@gem_exec_fence@submit.html> ([i915#4812])
* igt@gem_exec_flush@basic-uc-pro-default:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@gem_exec_flush@basic-uc-pro-default.html> ([i915#3539] / [i915#4852]) +1 other test skip
* igt@gem_exec_flush@basic-uc-prw-default:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@gem_exec_flush@basic-uc-prw-default.html> ([i915#3539])
* igt@gem_exec_flush@basic-uc-ro-default:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-10/igt@gem_exec_flush@basic-uc-ro-default.html> ([i915#3539] / [i915#4852]) +2 other tests skip
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@gem_exec_flush@basic-uc-ro-default.html> ([i915#3539] / [i915#4852])
* igt@gem_exec_reloc@basic-active:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@gem_exec_reloc@basic-active.html> ([i915#3281]) +8 other tests skip
* igt@gem_exec_reloc@basic-cpu-gtt:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@gem_exec_reloc@basic-cpu-gtt.html> ([i915#3281]) +4 other tests skip
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-gtt.html> ([i915#3281]) +3 other tests skip
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-3/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html> ([i915#3281]) +1 other test skip
* igt@gem_exec_schedule@preempt-engines@vecs0:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-rkl-8/igt@gem_exec_schedule@preempt-engines@vecs0.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@gem_exec_schedule@preempt-engines@vecs0.html> ([i915#12964]) +16 other tests dmesg-warn
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@gem_exec_schedule@preempt-queue-contexts-chain.html> ([i915#4537] / [i915#4812])
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@gem_fence_thrash@bo-write-verify-threaded-none.html> ([i915#4860]) +1 other test skip
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-6/igt@gem_fence_thrash@bo-write-verify-threaded-none.html> ([i915#4860])
* igt@gem_fence_thrash@bo-write-verify-x:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-x.html> ([i915#4860])
* igt@gem_lmem_evict@dontneed-evict-race:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@gem_lmem_evict@dontneed-evict-race.html> ([i915#4613] / [i915#7582])
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-3/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html> ([i915#4613])
* igt@gem_lmem_swapping@parallel-multi:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@gem_lmem_swapping@parallel-multi.html> ([i915#4613]) +2 other tests skip
* igt@gem_lmem_swapping@smem-oom:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@gem_lmem_swapping@smem-oom.html> ([i915#4613]) +2 other tests skip
* igt@gem_madvise@dontneed-before-pwrite:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@gem_madvise@dontneed-before-pwrite.html> ([i915#3282]) +3 other tests skip
* igt@gem_mmap_gtt@fault-concurrent-x:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-10/igt@gem_mmap_gtt@fault-concurrent-x.html> ([i915#4077]) +6 other tests skip
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@gem_mmap_gtt@fault-concurrent-x.html> ([i915#4077])
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-6/igt@gem_mmap_gtt@fault-concurrent-x.html> ([i915#4077]) +1 other test skip
* igt@gem_mmap_wc@bad-offset:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@gem_mmap_wc@bad-offset.html> ([i915#4083])
* igt@gem_mmap_wc@copy:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@gem_mmap_wc@copy.html> ([i915#4083]) +5 other tests skip
* igt@gem_mmap_wc@write-read-distinct:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-3/igt@gem_mmap_wc@write-read-distinct.html> ([i915#4083])
* igt@gem_pwrite@basic-random:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@gem_pwrite@basic-random.html> ([i915#3282])
* igt@gem_pxp@create-protected-buffer:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-rkl-8/igt@gem_pxp@create-protected-buffer.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-4/igt@gem_pxp@create-protected-buffer.html> ([i915#12964])
* igt@gem_pxp@create-regular-context-1:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@gem_pxp@create-regular-context-1.html> ([i915#4270]) +1 other test skip
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-rkl-8/igt@gem_pxp@create-regular-context-1.html> -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-3/igt@gem_pxp@create-regular-context-1.html> ([i915#12917] / [i915#12964]) +1 other test timeout
* igt@gem_pxp@fail-invalid-protected-context:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@gem_pxp@fail-invalid-protected-context.html> ([i915#4270])
* shard-rkl: NOTRUN -> TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@gem_pxp@fail-invalid-protected-context.html> ([i915#12964])
* igt@gem_pxp@hw-rejects-pxp-context:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html> ([i915#13398])
* igt@gem_render_copy@y-tiled-to-vebox-y-tiled:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html> ([i915#5190] / [i915#8428]) +2 other tests skip
* igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html> ([i915#5190] / [i915#8428]) +3 other tests skip
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html> ([i915#4079])
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html> ([i915#8411])
* igt@gem_set_tiling_vs_gtt:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@gem_set_tiling_vs_gtt.html> ([i915#4079])
* igt@gem_tiled_swapping@non-threaded:
* shard-tglu: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@gem_tiled_swapping@non-threaded.html> ([i915#12941])
* igt@gem_userptr_blits@coherency-unsync:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@gem_userptr_blits@coherency-unsync.html> ([i915#3297])
* igt@gem_userptr_blits@dmabuf-unsync:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@gem_userptr_blits@dmabuf-unsync.html> ([i915#3297]) +2 other tests skip
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@gem_userptr_blits@dmabuf-unsync.html> ([i915#3297])
* igt@gem_userptr_blits@map-fixed-invalidate:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@gem_userptr_blits@map-fixed-invalidate.html> ([i915#3297] / [i915#4880])
* igt@gem_userptr_blits@readonly-unsync:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@gem_userptr_blits@readonly-unsync.html> ([i915#3297]) +1 other test skip
* igt@gem_userptr_blits@unsync-unmap-after-close:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@gem_userptr_blits@unsync-unmap-after-close.html> ([i915#3297])
* igt@gen7_exec_parse@basic-rejected:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@gen7_exec_parse@basic-rejected.html> +3 other tests skip
* igt@gen7_exec_parse@bitmasks:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-10/igt@gen7_exec_parse@bitmasks.html> +12 other tests skip
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@gen7_exec_parse@bitmasks.html> +1 other test skip
* igt@gen9_exec_parse@bb-secure:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@gen9_exec_parse@bb-secure.html> ([i915#2527] / [i915#2856]) +1 other test skip
* igt@gen9_exec_parse@bb-start-out:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@gen9_exec_parse@bb-start-out.html> ([i915#2527] / [i915#2856]) +2 other tests skip
* igt@gen9_exec_parse@bb-start-param:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@gen9_exec_parse@bb-start-param.html> ([i915#2856]) +1 other test skip
* igt@gen9_exec_parse@shadow-peek:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@gen9_exec_parse@shadow-peek.html> ([i915#2856]) +1 other test skip
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@gen9_exec_parse@shadow-peek.html> ([i915#2527])
* igt@i915_fb_tiling:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@i915_fb_tiling.html> ([i915#4881])
* igt@i915_module_load@resize-bar:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@i915_module_load@resize-bar.html> ([i915#7178])
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@i915_module_load@resize-bar.html> ([i915#6412])
* igt@i915_pm_rc6_residency@rc6-fence:
* shard-tglu-1: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-fence.html> ([i915#2681]) +1 other test warn
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html> ([i915#3591])
* igt@i915_pm_rpm@gem-evict-pwrite:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@i915_pm_rpm@gem-evict-pwrite.html> ([i915#4077]) +6 other tests skip
* igt@i915_pm_rps@min-max-config-idle:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@i915_pm_rps@min-max-config-idle.html> ([i915#11681] / [i915#6621])
* igt@i915_pm_rps@waitboost:
* shard-mtlp: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-6/igt@i915_pm_rps@waitboost.html> ([i915#8346])
* igt@i915_pm_sseu@full-enable:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@i915_pm_sseu@full-enable.html> ([i915#4387])
* igt@intel_hwmon@hwmon-write:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@intel_hwmon@hwmon-write.html> ([i915#7707]) +1 other test skip
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html> ([i915#4212])
* igt@kms_addfb_basic@clobberred-modifier:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_addfb_basic@clobberred-modifier.html> ([i915#4212]) +2 other tests skip
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html> ([i915#12454] / [i915#12712])
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-dp-3-4-rc-ccs-cc:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-dp-3-4-rc-ccs-cc.html> ([i915#8709]) +7 other tests skip
* igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y-rc-ccs-cc:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y-rc-ccs-cc.html> ([i915#8709]) +3 other tests skip
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html> ([i915#8709]) +4 other tests skip
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html> ([i915#8709]) +7 other tests skip
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html> ([i915#1769] / [i915#3555])
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> ([i915#1769] / [i915#3555])
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> ([i915#1769] / [i915#3555])
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html> ([i915#5286]) +2 other tests skip
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html> ([i915#5286]) +2 other tests skip
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> ([i915#5286])
* igt@kms_big_fb@linear-16bpp-rotate-270:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-13/igt@kms_big_fb@linear-16bpp-rotate-270.html> ([i915#3638])
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html> ([i915#3638])
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@kms_big_fb@y-tiled-addfb-size-overflow.html> ([i915#5190]) +1 other test skip
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html> +3 other tests skip
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html> ([i915#4538] / [i915#5190]) +5 other tests skip
* igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-13/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html> ([i915#4538])
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html> ([i915#4538] / [i915#5190]) +5 other tests skip
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html> +4 other tests skip
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-17/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html> ([i915#6095]) +123 other tests skip
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html> ([i915#6095]) +49 other tests skip
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1.html> ([i915#6095]) +29 other tests skip
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-3/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html> ([i915#6095]) +14 other tests skip
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html> ([i915#12313]) +1 other test skip
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html> ([i915#10307] / [i915#10434] / [i915#6095]) +4 other tests skip
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3.html> ([i915#10307] / [i915#6095]) +145 other tests skip
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html> ([i915#6095]) +73 other tests skip
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html> ([i915#10307] / [i915#6095]) +34 other tests skip
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html> ([i915#12805])
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html> ([i915#12805])
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3.html> ([i915#6095]) +13 other tests skip
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
* shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-glk7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-glk1/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html> ([i915#12796])
* igt@kms_cdclk@mode-transition:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_cdclk@mode-transition.html> ([i915#3742])
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html> ([i915#7213]) +3 other tests skip
* igt@kms_cdclk@plane-scaling:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_cdclk@plane-scaling.html> ([i915#3742])
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2.html> ([i915#4087]) +4 other tests skip
* igt@kms_chamelium_edid@dp-mode-timings:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_chamelium_edid@dp-mode-timings.html> ([i915#11151] / [i915#7828]) +3 other tests skip
* igt@kms_chamelium_edid@vga-edid-read:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-3/igt@kms_chamelium_edid@vga-edid-read.html> ([i915#11151] / [i915#7828]) +2 other tests skip
* igt@kms_chamelium_frames@dp-crc-fast:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-fast.html> ([i915#11151] / [i915#7828]) +5 other tests skip
* igt@kms_chamelium_frames@hdmi-crc-fast:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@kms_chamelium_frames@hdmi-crc-fast.html> ([i915#11151] / [i915#7828]) +5 other tests skip
* igt@kms_chamelium_frames@hdmi-crc-single:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_chamelium_frames@hdmi-crc-single.html> ([i915#11151] / [i915#7828]) +1 other test skip
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html> ([i915#11151] / [i915#7828]) +4 other tests skip
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html> ([i915#11151] / [i915#7828]) +1 other test skip
* igt@kms_color@deep-color:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg2-11/igt@kms_color@deep-color.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-7/igt@kms_color@deep-color.html> ([i915#3555])
* igt@kms_content_protection@dp-mst-lic-type-0:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_content_protection@dp-mst-lic-type-0.html> ([i915#3299])
* igt@kms_content_protection@dp-mst-type-0:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@kms_content_protection@dp-mst-type-0.html> ([i915#3116] / [i915#3299])
* igt@kms_content_protection@lic-type-0:
* shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@kms_content_protection@lic-type-0.html> ([i915#7173]) +1 other test fail
* igt@kms_content_protection@lic-type-1:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_content_protection@lic-type-1.html> ([i915#9424])
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_content_protection@lic-type-1.html> ([i915#9424])
* igt@kms_content_protection@uevent:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-3/igt@kms_content_protection@uevent.html> ([i915#6944] / [i915#9424])
* igt@kms_cursor_crc@cursor-offscreen-32x10:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@kms_cursor_crc@cursor-offscreen-32x10.html> ([i915#3555]) +3 other tests skip
* igt@kms_cursor_crc@cursor-onscreen-512x512:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html> ([i915#13049]) +2 other tests skip
* igt@kms_cursor_crc@cursor-random-512x170:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x170.html> ([i915#13049])
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_cursor_crc@cursor-random-512x170.html> ([i915#13049])
* igt@kms_cursor_crc@cursor-sliding-512x512:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-512x512.html> ([i915#13049]) +1 other test skip
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html> ([i915#9809])
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html> ([i915#13046] / [i915#5354]) +6 other tests skip
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html> ([i915#13046] / [i915#5354]) +2 other tests skip
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html> ([i915#4103])
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html> ([i915#9723])
* igt@kms_display_modes@mst-extended-mode-negative:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@kms_display_modes@mst-extended-mode-negative.html> ([i915#8588])
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html> ([i915#3804])
* igt@kms_draw_crc@draw-method-mmap-wc:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_draw_crc@draw-method-mmap-wc.html> ([i915#8812])
* igt@kms_dsc@dsc-fractional-bpp:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp.html> ([i915#3840])
* igt@kms_dsc@dsc-with-bpc:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_dsc@dsc-with-bpc.html> ([i915#3555] / [i915#3840])
* igt@kms_dsc@dsc-with-formats:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_dsc@dsc-with-formats.html> ([i915#3555] / [i915#3840])
* igt@kms_feature_discovery@psr2:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_feature_discovery@psr2.html> ([i915#658])
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_feature_discovery@psr2.html> ([i915#658])
* igt@kms_flip@2x-blocking-wf_vblank:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_flip@2x-blocking-wf_vblank.html> ([i915#9934])
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_flip@2x-blocking-wf_vblank.html> ([i915#9934])
* igt@kms_flip@2x-dpms-vs-vblank-race:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-3/igt@kms_flip@2x-dpms-vs-vblank-race.html> ([i915#3637]) +2 other tests skip
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html> ([i915#9934]) +6 other tests skip
* igt@kms_flip@2x-flip-vs-fences-interruptible:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_flip@2x-flip-vs-fences-interruptible.html> ([i915#8381])
* igt@kms_flip@2x-modeset-vs-vblank-race:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_flip@2x-modeset-vs-vblank-race.html> ([i915#3637]) +4 other tests skip
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html> ([i915#9934])
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html> ([i915#3637]) +2 other tests skip
* igt@kms_flip@flip-vs-absolute-wf_vblank:
* shard-snb: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-snb5/igt@kms_flip@flip-vs-absolute-wf_vblank.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-snb6/igt@kms_flip@flip-vs-absolute-wf_vblank.html> ([i915#11989]) +1 other test fail
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-rkl-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html> ([i915#11989])
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2:
* shard-rkl: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2.html> ([i915#11989])
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1:
* shard-tglu: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-tglu-7/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-7/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a1.html> ([i915#11989]) +2 other tests fail
* igt@kms_flip@flip-vs-modeset-vs-hang@b-hdmi-a1:
* shard-rkl: NOTRUN -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_flip@flip-vs-modeset-vs-hang@b-hdmi-a1.html> ([i915#12964]) +6 other tests dmesg-warn
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html> ([i915#2672] / [i915#3555]) +2 other tests skip
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html> ([i915#2587] / [i915#2672]) +1 other test skip
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html> ([i915#2587] / [i915#2672]) +2 other tests skip
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html> ([i915#2672]) +2 other tests skip
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html> ([i915#2672] / [i915#3555] / [i915#5190])
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html> ([i915#2672])
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html> ([i915#2672] / [i915#3555])
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html> ([i915#2587] / [i915#2672])
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html> ([i915#3555])
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html> ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-cpu.html> ([i915#4342]) +2 other tests skip
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html> ([i915#12917] / [i915#12964])
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html> ([i915#1825]) +9 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html> +57 other tests skip
* igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html> -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html> ([i915#6880])
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html> ([i915#4342]) +6 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html> ([i915#10433] / [i915#3458]) +3 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html> ([i915#8708]) +7 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html> ([i915#5354]) +24 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html> ([i915#8708])
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html> +42 other tests skip
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html> ([i915#1825]) +7 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html> ([i915#8708]) +17 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html> ([i915#10055]) +1 other test skip
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> ([i915#9766])
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html> ([i915#3023]) +5 other tests skip
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html> ([i915#3458]) +9 other tests skip
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html> ([i915#5354]) +11 other tests skip
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html> ([i915#3458]) +7 other tests skip
* igt@kms_hdmi_inject@inject-audio:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_hdmi_inject@inject-audio.html> ([i915#13030])
* igt@kms_hdr@bpc-switch:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_hdr@bpc-switch.html> ([i915#3555] / [i915#8228])
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_hdr@bpc-switch.html> ([i915#3555] / [i915#8228])
* igt@kms_hdr@bpc-switch-suspend:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg2-11/igt@kms_hdr@bpc-switch-suspend.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-7/igt@kms_hdr@bpc-switch-suspend.html> ([i915#3555] / [i915#8228])
* igt@kms_invalid_mode@zero-clock:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_invalid_mode@zero-clock.html> ([i915#3555])
* igt@kms_joiner@invalid-modeset-big-joiner:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_joiner@invalid-modeset-big-joiner.html> ([i915#10656])
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_joiner@invalid-modeset-big-joiner.html> ([i915#10656])
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html> ([i915#12394])
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html> ([i915#13522])
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> ([i915#4816])
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
* shard-glk: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-glk4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-glk6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html> ([i915#12756])
* igt@kms_plane@pixel-format:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-13/igt@kms_plane@pixel-format.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_plane@pixel-format.html> ([i915#8825])
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d.html> ([i915#8152]) +1 other test skip
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html> ([i915#12247]) +8 other tests skip
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html> ([i915#3555])
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html> ([i915#12247]) +3 other tests skip
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25.html> ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_plane_scaling@planes-downscale-factor-0-25.html> ([i915#12247] / [i915#6953])
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html> ([i915#12247] / [i915#9423])
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html> ([i915#12247]) +11 other tests skip
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html> ([i915#12247] / [i915#6953])
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html> ([i915#12247]) +7 other tests skip
* igt@kms_plane_scaling@planes-scaler-unity-scaling:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_plane_scaling@planes-scaler-unity-scaling.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_plane_scaling@planes-scaler-unity-scaling.html> ([i915#3555] / [i915#8152])
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-c:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-c.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-c.html> ([i915#12247]) +8 other tests skip
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-d.html> ([i915#12247] / [i915#8152]) +1 other test skip
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-13/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html> ([i915#6953] / [i915#8152])
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html> ([i915#12247] / [i915#3555])
* igt@kms_pm_backlight@brightness-with-dpms:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html> ([i915#12343])
* igt@kms_pm_backlight@fade:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_pm_backlight@fade.html> ([i915#9812])
* igt@kms_pm_dc@dc5-psr:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_pm_dc@dc5-psr.html> ([i915#9685])
* igt@kms_pm_dc@dc5-retention-flops:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-10/igt@kms_pm_dc@dc5-retention-flops.html> ([i915#3828])
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_pm_dc@dc5-retention-flops.html> ([i915#3828])
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@kms_pm_dc@dc5-retention-flops.html> ([i915#3828])
* igt@kms_pm_dc@dc6-dpms:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@kms_pm_dc@dc6-dpms.html> ([i915#5978])
* igt@kms_pm_lpsp@kms-lpsp:
* shard-dg2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-5/igt@kms_pm_lpsp@kms-lpsp.html> ([i915#9340])
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html> ([i915#9519])
* igt@kms_pm_rpm@modeset-lpsp-stress:
* shard-rkl: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress.html> ([i915#9519])
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> ([i915#9519])
* igt@kms_prime@basic-crc-vgem:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_prime@basic-crc-vgem.html> ([i915#6524] / [i915#6805])
* igt@kms_prime@basic-modeset-hybrid:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_prime@basic-modeset-hybrid.html> ([i915#6524])
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html> ([i915#11520])
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html> ([i915#11520]) +4 other tests skip
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html> ([i915#12316])
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html> ([i915#11520]) +2 other tests skip
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html> ([i915#11520]) +6 other tests skip
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html> ([i915#11520]) +3 other tests skip
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html> ([i915#11520]) +6 other tests skip
* igt@kms_psr@fbc-psr-primary-render:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_psr@fbc-psr-primary-render.html> ([i915#9732]) +15 other tests skip
* igt@kms_psr@fbc-psr2-sprite-blt:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_psr@fbc-psr2-sprite-blt.html> ([i915#1072] / [i915#9732]) +10 other tests skip
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-6/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html> ([i915#9688]) +1 other test skip
* igt@kms_psr@pr-primary-mmap-gtt:
* shard-dg1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_psr@pr-primary-mmap-gtt.html> ([i915#1072] / [i915#9732]) +1 other test skip
* igt@kms_psr@psr-sprite-plane-onoff:
* shard-rkl: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_psr@psr-sprite-plane-onoff.html> ([i915#1072] / [i915#9732]) +4 other tests skip
* igt@kms_psr@psr2-cursor-plane-onoff:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@kms_psr@psr2-cursor-plane-onoff.html> ([i915#9732]) +8 other tests skip
* igt@kms_psr@psr2-primary-mmap-gtt:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@kms_psr@psr2-primary-mmap-gtt.html> ([i915#1072] / [i915#9732]) +16 other tests skip
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html> ([i915#5289])
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html> ([i915#12755] / [i915#5190])
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html> ([i915#12755] / [i915#5190])
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html> ([i915#5289])
* igt@kms_scaling_modes@scaling-mode-center:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-center.html> ([i915#3555]) +1 other test skip
* igt@kms_vrr@flip-dpms:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@kms_vrr@flip-dpms.html> ([i915#3555]) +2 other tests skip
* igt@kms_vrr@max-min:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-5/igt@kms_vrr@max-min.html> ([i915#9906])
* igt@kms_vrr@negative-basic:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@kms_vrr@negative-basic.html> ([i915#3555] / [i915#9906])
* igt@kms_vrr@seamless-rr-switch-vrr:
* shard-tglu-1: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html> ([i915#9906])
* igt@kms_writeback@writeback-pixel-formats:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_writeback@writeback-pixel-formats.html> ([i915#2437] / [i915#9412])
* igt@perf_pmu@busy-double-start@vecs1:
* shard-dg2: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@perf_pmu@busy-double-start@vecs1.html> ([i915#4349]) +4 other tests fail
* igt@perf_pmu@invalid-init:
* shard-tglu-1: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-1/igt@perf_pmu@invalid-init.html> ([i915#13663])
* igt@perf_pmu@rc6-all-gts:
* shard-tglu: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@perf_pmu@rc6-all-gts.html> ([i915#8516])
* igt@perf_pmu@rc6@other-idle-gt0:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@perf_pmu@rc6@other-idle-gt0.html> ([i915#8516]) +1 other test skip
* igt@prime_mmap@test_aperture_limit:
* shard-dg2: NOTRUN -> WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@prime_mmap@test_aperture_limit.html> ([i915#9351])
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
* shard-dg2: NOTRUN -> CRASH<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html> ([i915#9351])
* igt@prime_vgem@basic-write:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@prime_vgem@basic-write.html> ([i915#3291] / [i915#3708])
* igt@prime_vgem@coherency-gtt:
* shard-dg2-9: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-9/igt@prime_vgem@coherency-gtt.html> ([i915#3708] / [i915#4077])
* igt@prime_vgem@fence-write-hang:
* shard-mtlp: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-3/igt@prime_vgem@fence-write-hang.html> ([i915#3708])
* igt@sriov_basic@enable-vfs-autoprobe-off:
* shard-dg2: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-4/igt@sriov_basic@enable-vfs-autoprobe-off.html> ([i915#9917])
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
* shard-tglu: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html> ([i915#12910])
* igt@syncobj_wait@single-wait-all-submitted:
* shard-dg1: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-12/igt@syncobj_wait@single-wait-all-submitted.html> -> DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-14/igt@syncobj_wait@single-wait-all-submitted.html> ([i915#4423]) +1 other test dmesg-warn
Possible fixes
* igt@gem_ccs@suspend-resume:
* shard-dg2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg2-4/igt@gem_ccs@suspend-resume.html> ([i915#13356]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@gem_ccs@suspend-resume.html>
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
* shard-dg2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg2-4/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html> ([i915#12392] / [i915#13356]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-8/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html>
* igt@gem_eio@reset-stress:
* shard-dg1: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@gem_eio@reset-stress.html> ([i915#12543] / [i915#5784]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@gem_eio@reset-stress.html>
* igt@gem_eio@wait-1us:
* shard-mtlp: ABORT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-mtlp-7/igt@gem_eio@wait-1us.html> ([i915#13193]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-6/igt@gem_eio@wait-1us.html>
* igt@gem_exec_suspend@basic-s0@smem:
* shard-dg2: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg2-10/igt@gem_exec_suspend@basic-s0@smem.html> ([i915#11441] / [i915#13304]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@gem_exec_suspend@basic-s0@smem.html> +1 other test pass
* igt@gem_pxp@create-regular-context-2:
* shard-rkl: TIMEOUT<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-rkl-4/igt@gem_pxp@create-regular-context-2.html> ([i915#12917] / [i915#12964]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-8/igt@gem_pxp@create-regular-context-2.html>
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
* shard-dg1: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html> ([i915#12739] / [i915#3591]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html>
* igt@i915_pm_rps@waitboost:
* shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-rkl-5/igt@i915_pm_rps@waitboost.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-8/igt@i915_pm_rps@waitboost.html>
* igt@kms_cursor_crc@cursor-onscreen-128x42:
* shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html> ([i915#13566]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html> +1 other test pass
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1:
* shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html> ([i915#13566]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html> +1 other test pass
* igt@kms_cursor_crc@cursor-onscreen-256x256:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_cursor_crc@cursor-onscreen-256x256.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-17/igt@kms_cursor_crc@cursor-onscreen-256x256.html> +69 other tests pass
* igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
* shard-dg1: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-13/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html> ([i915#4423]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-12/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html> +1 other test pass
* igt@kms_fbcon_fbt@fbc:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_fbcon_fbt@fbc.html> ([i915#1849]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-18/igt@kms_fbcon_fbt@fbc.html>
* igt@kms_flip@basic-flip-vs-wf_vblank:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_flip@basic-flip-vs-wf_vblank.html> ([i915#3637]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-18/igt@kms_flip@basic-flip-vs-wf_vblank.html> +1 other test pass
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a3:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg2-6/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a3.html> ([i915#11989]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-6/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a3.html>
* igt@kms_flip@wf_vblank-ts-check-interruptible:
* shard-rkl: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-rkl-8/igt@kms_flip@wf_vblank-ts-check-interruptible.html> ([i915#11989]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-2/igt@kms_flip@wf_vblank-ts-check-interruptible.html>
* shard-dg1: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_flip@wf_vblank-ts-check-interruptible.html> ([i915#11989]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-13/igt@kms_flip@wf_vblank-ts-check-interruptible.html>
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html> ([i915#3555]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html> +8 other tests pass
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html> ([i915#4342]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html> +5 other tests pass
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html> ([i915#6880]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu.html>
* igt@kms_hdr@invalid-metadata-sizes:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg2-1/igt@kms_hdr@invalid-metadata-sizes.html> ([i915#3555] / [i915#8228]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html>
* igt@kms_plane@plane-position-covered:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_plane@plane-position-covered.html> ([i915#8825]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-13/igt@kms_plane@plane-position-covered.html> +1 other test pass
* igt@kms_plane_alpha_blend@alpha-7efc:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_plane_alpha_blend@alpha-7efc.html> ([i915#7294]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-12/igt@kms_plane_alpha_blend@alpha-7efc.html> +1 other test pass
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a.html> ([i915#12247]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-17/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a.html> +8 other tests pass
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html> ([i915#8152]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-12/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html> +2 other tests pass
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html> ([i915#6953] / [i915#8152]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25.html>
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html> ([i915#12247] / [i915#8152]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-d.html> +2 other tests pass
* igt@kms_pm_dc@dc6-dpms:
* shard-tglu: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html> ([i915#9295]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html>
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html> ([i915#9519]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-18/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html>
* igt@kms_pm_rpm@drm-resources-equal:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_pm_rpm@drm-resources-equal.html> ([i915#3547] / [i915#9519]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-12/igt@kms_pm_rpm@drm-resources-equal.html>
* igt@kms_pm_rpm@modeset-non-lpsp:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html> ([i915#9519]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp.html>
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
* shard-rkl: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> ([i915#9519]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html> +2 other tests pass
* igt@kms_properties@invalid-properties-atomic:
* shard-rkl: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-rkl-1/igt@kms_properties@invalid-properties-atomic.html> ([i915#12964]) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-rkl-5/igt@kms_properties@invalid-properties-atomic.html> +1 other test pass
* igt@perf_pmu@module-unload:
* shard-mtlp: INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-mtlp-7/igt@perf_pmu@module-unload.html> -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-mtlp-3/igt@perf_pmu@module-unload.html>
Warnings
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-18/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> ([i915#1769] / [i915#3555])
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html> ([i915#4538] / [i915#5286]) +3 other tests skip
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-13/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html> ([i915#3638]) +2 other tests skip
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html> ([i915#4538]) +3 other tests skip
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-13/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html> ([i915#6095]) +10 other tests skip
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-13/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html> ([i915#12805])
* igt@kms_content_protection@atomic-dpms:
* shard-dg2: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg2-11/igt@kms_content_protection@atomic-dpms.html> ([i915#7173]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-7/igt@kms_content_protection@atomic-dpms.html> ([i915#7118] / [i915#9424])
* igt@kms_content_protection@lic-type-1:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_content_protection@lic-type-1.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-18/igt@kms_content_protection@lic-type-1.html> ([i915#9424])
* igt@kms_cursor_crc@cursor-sliding-512x512:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_cursor_crc@cursor-sliding-512x512.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-13/igt@kms_cursor_crc@cursor-sliding-512x512.html> ([i915#13049]) +2 other tests skip
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-17/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html> ([i915#9723])
* igt@kms_draw_crc@draw-method-mmap-wc:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_draw_crc@draw-method-mmap-wc.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-18/igt@kms_draw_crc@draw-method-mmap-wc.html> ([i915#8812])
* igt@kms_dsc@dsc-with-formats:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_dsc@dsc-with-formats.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-12/igt@kms_dsc@dsc-with-formats.html> ([i915#3555] / [i915#3840]) +1 other test skip
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html> ([i915#3555]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html> ([i915#2672] / [i915#3555]) +1 other test skip
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html> ([i915#2672] / [i915#3555]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html> ([i915#3555]) +1 other test skip
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html> ([i915#4423]) +2 other tests skip
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html> ([i915#4342]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html> +26 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
* shard-dg2: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html> ([i915#10433] / [i915#3458]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html> ([i915#3458]) +1 other test skip
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html> -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html> ([i915#4342]) +10 other tests skip
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html> ([i915#4342]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html> ([i915#3458]) +15 other tests skip
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-13/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> ([i915#9766]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html> ([i915#4342])
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt:
* shard-dg1: SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16113/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html> ([i915#8708]) -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_142520v9/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html> ([i915#4342]) +6 other tests skip
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
* shard-dg1: [SKIP][431] ([i915#4342]) -> [SKIP][432] ([i915#8708]) +
[-- Attachment #2: Type: text/html, Size: 110334 bytes --]
^ permalink raw reply [flat|nested] 24+ messages in thread