* [PATCH i-g-t v2 0/1] Sync PCI ids with kernel: split BMG to BMG-G21 and add NVL-S
@ 2025-10-28 10:42 Kamil Konieczny
2025-10-28 10:42 ` [PATCH i-g-t v2 1/1] lib/pciids: Add NVL-S and split out BMG-G21 Kamil Konieczny
` (4 more replies)
0 siblings, 5 replies; 17+ messages in thread
From: Kamil Konieczny @ 2025-10-28 10:42 UTC (permalink / raw)
To: igt-dev
Cc: Kamil Konieczny, Gustavo Sousa, Jani Nikula, Lucas De Marchi,
Matt Roper, Shekhar Chauhan
This syncs Intel GPU PCI ids with drm-next kernel commits
edb660ad79ff ("drm/intel/pciids: Add match on vendor/id only")
78de8f876683 ("drm/xe: Handle Wa_22010954014 and Wa_14022085890 as device workarounds")
c002b1764e7b ("drm/xe/nvl: Define NVL-S platform")
with NVL-S being the last one.
v2: squashed into one commit (Lucas)
Cc: Gustavo Sousa <gustavo.sousa@intel.com>
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Lucas De Marchi <lucas.demarchi@intel.com>
Cc: Matt Roper <matthew.d.roper@intel.com>
Cc: Shekhar Chauhan <shekhar.chauhan@intel.com>
Kamil Konieczny (1):
lib/pciids: Add NVL-S and split out BMG-G21
lib/pciids.h | 21 +++++++++++++++++++--
1 file changed, 19 insertions(+), 2 deletions(-)
--
2.51.1
^ permalink raw reply [flat|nested] 17+ messages in thread* [PATCH i-g-t v2 1/1] lib/pciids: Add NVL-S and split out BMG-G21 2025-10-28 10:42 [PATCH i-g-t v2 0/1] Sync PCI ids with kernel: split BMG to BMG-G21 and add NVL-S Kamil Konieczny @ 2025-10-28 10:42 ` Kamil Konieczny 2025-10-28 12:04 ` Shekhar Chauhan 2025-10-28 13:53 ` Lucas De Marchi 2025-10-28 11:56 ` ✓ Xe.CI.BAT: success for Sync PCI ids with kernel: split BMG to BMG-G21 and add NVL-S (rev2) Patchwork ` (3 subsequent siblings) 4 siblings, 2 replies; 17+ messages in thread From: Kamil Konieczny @ 2025-10-28 10:42 UTC (permalink / raw) To: igt-dev Cc: Kamil Konieczny, Matt Roper, Gustavo Sousa, Jani Nikula, Shekhar Chauhan, Lucas De Marchi Sync with drm-next kernel commit c002b1764e7b ("drm/xe/nvl: Define NVL-S platform") Link: https://lore.kernel.org/r/20251016-xe3p-v3-11-3dd173a3097a@intel.com This adds NovaLake-S PCI ids, and with it there are two more PCI ids commits, one for splitting BMG-G21 out of BMG for workarounds and the other adds a kernel macro. 78de8f876683 ("drm/xe: Handle Wa_22010954014 and Wa_14022085890 as device workarounds") Link: https://lore.kernel.org/r/20251013200944.2499947-40-matthew.d.roper@intel.com edb660ad79ff ("drm/intel/pciids: Add match on vendor/id only") Link: https://lore.kernel.org/r/20250808-intel-pci-device-v1-1-ce3545d86502@intel.com v2: squashed into one commit (Lucas) Cc: Matt Roper <matthew.d.roper@intel.com> Cc: Gustavo Sousa <gustavo.sousa@intel.com> Cc: Jani Nikula <jani.nikula@intel.com> Cc: Shekhar Chauhan <shekhar.chauhan@intel.com> Cc: Lucas De Marchi <lucas.demarchi@intel.com> Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> --- lib/pciids.h | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/lib/pciids.h b/lib/pciids.h index 76f8d26f9..9f095a99d 100644 --- a/lib/pciids.h +++ b/lib/pciids.h @@ -26,6 +26,11 @@ #define __PCIIDS_H__ #ifdef __KERNEL__ +#define INTEL_PCI_DEVICE(_id, _info) { \ + PCI_DEVICE(PCI_VENDOR_ID_INTEL, (_id)), \ + .driver_data = (kernel_ulong_t)(_info), \ +} + #define INTEL_VGA_DEVICE(_id, _info) { \ PCI_DEVICE(PCI_VENDOR_ID_INTEL, (_id)), \ .class = PCI_BASE_CLASS_DISPLAY << 16, .class_mask = 0xff << 16, \ @@ -844,7 +849,7 @@ MACRO__(0x64B0, ## __VA_ARGS__) /* BMG */ -#define INTEL_BMG_IDS(MACRO__, ...) \ +#define INTEL_BMG_G21_IDS(MACRO__, ...) \ MACRO__(0xE202, ## __VA_ARGS__), \ MACRO__(0xE209, ## __VA_ARGS__), \ MACRO__(0xE20B, ## __VA_ARGS__), \ @@ -853,7 +858,10 @@ MACRO__(0xE210, ## __VA_ARGS__), \ MACRO__(0xE211, ## __VA_ARGS__), \ MACRO__(0xE212, ## __VA_ARGS__), \ - MACRO__(0xE216, ## __VA_ARGS__), \ + MACRO__(0xE216, ## __VA_ARGS__) + +#define INTEL_BMG_IDS(MACRO__, ...) \ + INTEL_BMG_G21_IDS(MACRO__, __VA_ARGS__), \ MACRO__(0xE220, ## __VA_ARGS__), \ MACRO__(0xE221, ## __VA_ARGS__), \ MACRO__(0xE222, ## __VA_ARGS__), \ @@ -876,4 +884,13 @@ MACRO__(0xFD80, ## __VA_ARGS__), \ MACRO__(0xFD81, ## __VA_ARGS__) +/* NVL-S */ +#define INTEL_NVLS_IDS(MACRO__, ...) \ + MACRO__(0xD740, ## __VA_ARGS__), \ + MACRO__(0xD741, ## __VA_ARGS__), \ + MACRO__(0xD742, ## __VA_ARGS__), \ + MACRO__(0xD743, ## __VA_ARGS__), \ + MACRO__(0xD744, ## __VA_ARGS__), \ + MACRO__(0xD745, ## __VA_ARGS__) + #endif /* __PCIIDS_H__ */ -- 2.51.1 ^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t v2 1/1] lib/pciids: Add NVL-S and split out BMG-G21 2025-10-28 10:42 ` [PATCH i-g-t v2 1/1] lib/pciids: Add NVL-S and split out BMG-G21 Kamil Konieczny @ 2025-10-28 12:04 ` Shekhar Chauhan 2025-10-28 13:26 ` Lucas De Marchi 2025-10-28 13:53 ` Lucas De Marchi 1 sibling, 1 reply; 17+ messages in thread From: Shekhar Chauhan @ 2025-10-28 12:04 UTC (permalink / raw) To: Kamil Konieczny, igt-dev Cc: Matt Roper, Gustavo Sousa, Jani Nikula, Lucas De Marchi On 10/28/2025 16:12, Kamil Konieczny wrote: > Sync with drm-next kernel commit c002b1764e7b ("drm/xe/nvl: Define NVL-S platform") > Link: https://lore.kernel.org/r/20251016-xe3p-v3-11-3dd173a3097a@intel.com > > This adds NovaLake-S PCI ids, and with it there are two more PCI > ids commits, one for splitting BMG-G21 out of BMG for workarounds > and the other adds a kernel macro. > > 78de8f876683 ("drm/xe: Handle Wa_22010954014 and Wa_14022085890 as device workarounds") > Link: https://lore.kernel.org/r/20251013200944.2499947-40-matthew.d.roper@intel.com > > edb660ad79ff ("drm/intel/pciids: Add match on vendor/id only") > Link: https://lore.kernel.org/r/20250808-intel-pci-device-v1-1-ce3545d86502@intel.com > > v2: squashed into one commit (Lucas) > > Cc: Matt Roper <matthew.d.roper@intel.com> > Cc: Gustavo Sousa <gustavo.sousa@intel.com> > Cc: Jani Nikula <jani.nikula@intel.com> > Cc: Shekhar Chauhan <shekhar.chauhan@intel.com> > Cc: Lucas De Marchi <lucas.demarchi@intel.com> > Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > lib/pciids.h | 21 +++++++++++++++++++-- > 1 file changed, 19 insertions(+), 2 deletions(-) > > diff --git a/lib/pciids.h b/lib/pciids.h > index 76f8d26f9..9f095a99d 100644 > --- a/lib/pciids.h > +++ b/lib/pciids.h > @@ -26,6 +26,11 @@ > #define __PCIIDS_H__ > > #ifdef __KERNEL__ > +#define INTEL_PCI_DEVICE(_id, _info) { \ > + PCI_DEVICE(PCI_VENDOR_ID_INTEL, (_id)), \ > + .driver_data = (kernel_ulong_t)(_info), \ > +} > + > #define INTEL_VGA_DEVICE(_id, _info) { \ > PCI_DEVICE(PCI_VENDOR_ID_INTEL, (_id)), \ > .class = PCI_BASE_CLASS_DISPLAY << 16, .class_mask = 0xff << 16, \ > @@ -844,7 +849,7 @@ > MACRO__(0x64B0, ## __VA_ARGS__) > > /* BMG */ > -#define INTEL_BMG_IDS(MACRO__, ...) \ > +#define INTEL_BMG_G21_IDS(MACRO__, ...) \ > MACRO__(0xE202, ## __VA_ARGS__), \ > MACRO__(0xE209, ## __VA_ARGS__), \ > MACRO__(0xE20B, ## __VA_ARGS__), \ > @@ -853,7 +858,10 @@ > MACRO__(0xE210, ## __VA_ARGS__), \ > MACRO__(0xE211, ## __VA_ARGS__), \ > MACRO__(0xE212, ## __VA_ARGS__), \ > - MACRO__(0xE216, ## __VA_ARGS__), \ > + MACRO__(0xE216, ## __VA_ARGS__) > + > +#define INTEL_BMG_IDS(MACRO__, ...) \ Um, I'm not sure. I think what Lucas meant was to ask why separate out BMG_IDS and BMG_G21_IDS. Regarding NVL-S, I think they can be in a different commit. Comments, Lucas? -shekhar > + INTEL_BMG_G21_IDS(MACRO__, __VA_ARGS__), \ > MACRO__(0xE220, ## __VA_ARGS__), \ > MACRO__(0xE221, ## __VA_ARGS__), \ > MACRO__(0xE222, ## __VA_ARGS__), \ > @@ -876,4 +884,13 @@ > MACRO__(0xFD80, ## __VA_ARGS__), \ > MACRO__(0xFD81, ## __VA_ARGS__) > > +/* NVL-S */ > +#define INTEL_NVLS_IDS(MACRO__, ...) \ > + MACRO__(0xD740, ## __VA_ARGS__), \ > + MACRO__(0xD741, ## __VA_ARGS__), \ > + MACRO__(0xD742, ## __VA_ARGS__), \ > + MACRO__(0xD743, ## __VA_ARGS__), \ > + MACRO__(0xD744, ## __VA_ARGS__), \ > + MACRO__(0xD745, ## __VA_ARGS__) > + > #endif /* __PCIIDS_H__ */ ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t v2 1/1] lib/pciids: Add NVL-S and split out BMG-G21 2025-10-28 12:04 ` Shekhar Chauhan @ 2025-10-28 13:26 ` Lucas De Marchi 0 siblings, 0 replies; 17+ messages in thread From: Lucas De Marchi @ 2025-10-28 13:26 UTC (permalink / raw) To: Shekhar Chauhan Cc: Kamil Konieczny, igt-dev, Matt Roper, Gustavo Sousa, Jani Nikula On Tue, Oct 28, 2025 at 05:34:03PM +0530, Shekhar Chauhan wrote: > >On 10/28/2025 16:12, Kamil Konieczny wrote: >>Sync with drm-next kernel commit c002b1764e7b ("drm/xe/nvl: Define NVL-S platform") >>Link: https://lore.kernel.org/r/20251016-xe3p-v3-11-3dd173a3097a@intel.com >> >>This adds NovaLake-S PCI ids, and with it there are two more PCI >>ids commits, one for splitting BMG-G21 out of BMG for workarounds >>and the other adds a kernel macro. >> >>78de8f876683 ("drm/xe: Handle Wa_22010954014 and Wa_14022085890 as device workarounds") >>Link: https://lore.kernel.org/r/20251013200944.2499947-40-matthew.d.roper@intel.com >> >>edb660ad79ff ("drm/intel/pciids: Add match on vendor/id only") >>Link: https://lore.kernel.org/r/20250808-intel-pci-device-v1-1-ce3545d86502@intel.com >> >>v2: squashed into one commit (Lucas) >> >>Cc: Matt Roper <matthew.d.roper@intel.com> >>Cc: Gustavo Sousa <gustavo.sousa@intel.com> >>Cc: Jani Nikula <jani.nikula@intel.com> >>Cc: Shekhar Chauhan <shekhar.chauhan@intel.com> >>Cc: Lucas De Marchi <lucas.demarchi@intel.com> >>Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> >>--- >> lib/pciids.h | 21 +++++++++++++++++++-- >> 1 file changed, 19 insertions(+), 2 deletions(-) >> >>diff --git a/lib/pciids.h b/lib/pciids.h >>index 76f8d26f9..9f095a99d 100644 >>--- a/lib/pciids.h >>+++ b/lib/pciids.h >>@@ -26,6 +26,11 @@ >> #define __PCIIDS_H__ >> #ifdef __KERNEL__ >>+#define INTEL_PCI_DEVICE(_id, _info) { \ >>+ PCI_DEVICE(PCI_VENDOR_ID_INTEL, (_id)), \ >>+ .driver_data = (kernel_ulong_t)(_info), \ >>+} >>+ >> #define INTEL_VGA_DEVICE(_id, _info) { \ >> PCI_DEVICE(PCI_VENDOR_ID_INTEL, (_id)), \ >> .class = PCI_BASE_CLASS_DISPLAY << 16, .class_mask = 0xff << 16, \ >>@@ -844,7 +849,7 @@ >> MACRO__(0x64B0, ## __VA_ARGS__) >> /* BMG */ >>-#define INTEL_BMG_IDS(MACRO__, ...) \ >>+#define INTEL_BMG_G21_IDS(MACRO__, ...) \ >> MACRO__(0xE202, ## __VA_ARGS__), \ >> MACRO__(0xE209, ## __VA_ARGS__), \ >> MACRO__(0xE20B, ## __VA_ARGS__), \ >>@@ -853,7 +858,10 @@ >> MACRO__(0xE210, ## __VA_ARGS__), \ >> MACRO__(0xE211, ## __VA_ARGS__), \ >> MACRO__(0xE212, ## __VA_ARGS__), \ >>- MACRO__(0xE216, ## __VA_ARGS__), \ >>+ MACRO__(0xE216, ## __VA_ARGS__) >>+ >>+#define INTEL_BMG_IDS(MACRO__, ...) \ > >Um, I'm not sure. I think what Lucas meant was to ask why separate out >BMG_IDS and BMG_G21_IDS. Regarding NVL-S, I think they can be in a >different commit. Comments, Lucas? No. the header in igt should follow whatever got merged in the kernel. A commit with "Sync with kernel commit XXXXXX" is just copying the header over without changing anything. That's also why I think it doesn't make sense to keep splitting the commits. Lucas De Marchi > >-shekhar > >>+ INTEL_BMG_G21_IDS(MACRO__, __VA_ARGS__), \ >> MACRO__(0xE220, ## __VA_ARGS__), \ >> MACRO__(0xE221, ## __VA_ARGS__), \ >> MACRO__(0xE222, ## __VA_ARGS__), \ >>@@ -876,4 +884,13 @@ >> MACRO__(0xFD80, ## __VA_ARGS__), \ >> MACRO__(0xFD81, ## __VA_ARGS__) >>+/* NVL-S */ >>+#define INTEL_NVLS_IDS(MACRO__, ...) \ >>+ MACRO__(0xD740, ## __VA_ARGS__), \ >>+ MACRO__(0xD741, ## __VA_ARGS__), \ >>+ MACRO__(0xD742, ## __VA_ARGS__), \ >>+ MACRO__(0xD743, ## __VA_ARGS__), \ >>+ MACRO__(0xD744, ## __VA_ARGS__), \ >>+ MACRO__(0xD745, ## __VA_ARGS__) >>+ >> #endif /* __PCIIDS_H__ */ ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t v2 1/1] lib/pciids: Add NVL-S and split out BMG-G21 2025-10-28 10:42 ` [PATCH i-g-t v2 1/1] lib/pciids: Add NVL-S and split out BMG-G21 Kamil Konieczny 2025-10-28 12:04 ` Shekhar Chauhan @ 2025-10-28 13:53 ` Lucas De Marchi 2025-10-28 14:35 ` Jani Nikula 2025-10-28 16:35 ` Kamil Konieczny 1 sibling, 2 replies; 17+ messages in thread From: Lucas De Marchi @ 2025-10-28 13:53 UTC (permalink / raw) To: Kamil Konieczny Cc: igt-dev, Matt Roper, Gustavo Sousa, Jani Nikula, Shekhar Chauhan On Tue, Oct 28, 2025 at 11:42:34AM +0100, Kamil Konieczny wrote: >Sync with drm-next kernel commit c002b1764e7b ("drm/xe/nvl: Define NVL-S platform") >Link: https://lore.kernel.org/r/20251016-xe3p-v3-11-3dd173a3097a@intel.com > >This adds NovaLake-S PCI ids, and with it there are two more PCI >ids commits, one for splitting BMG-G21 out of BMG for workarounds >and the other adds a kernel macro. > >78de8f876683 ("drm/xe: Handle Wa_22010954014 and Wa_14022085890 as device workarounds") >Link: https://lore.kernel.org/r/20251013200944.2499947-40-matthew.d.roper@intel.com > >edb660ad79ff ("drm/intel/pciids: Add match on vendor/id only") >Link: https://lore.kernel.org/r/20250808-intel-pci-device-v1-1-ce3545d86502@intel.com Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com> I don't like the commit message, but I don't care enough about it right now neither. I think it would be much better if going forward we'd adopt a template and maybe even automate it. Something like this: Subject: lib/pciids: sync with kernel commit {kernel_head} Synchronize PCI IDs with kernel up to {kernel_head}, which includes the following changes: {kernel_log} Which could basically be generated by a (to be added) script: tools/sync-intel-pciids [--head <commit>] [--base <commit>][--no-commit] <kernel-checkout> What it does: a) inspect the last commit in igt that touched the header and find the kernel_base. --base can override that. b) git -C /path/to/kernel/checkout show $KERNEL_HEAD:include/drm/intel/pciids.h > lib/pciids.h which basically copies the heade from whatever state of the kernel checkout we want - some times we may want it from a kernel release, some times from a particular branch, as long as it keeps moving forward. --head can force a specific commit from kernel, otherwise it uses a default (drm/drm-next may be a good default). c) Commit the results with the template above. This would avoid having commits to fix things up like because it went astray. was done in commit 3896691534ef ("lib/pciids: lib/pciids: Add Wildcat Lake"). Same script can be easily adapted to help updating the include/uapi headers. This should get us back to having the updates like we had in the past: 2042426168cf lib: sync i915_pciids.h with kernel commit cfa7772880f8 440669b77f16 lib: sync i915_pciids.h with kernel commit d2c4b1db1c4f 9702d87169f7 lib: sync i915_pciids.h with kernel commit 7858cc0b55e3 ea767a50aa93 lib: sync i915_pciids.h with kernel commit bfbda4722767 940399b2f807 lib: sync i915_pciids.h with kernel commit aa3d586e1624 1dda137aea8b lib: sync i915_pciids.h with kernel commit 5c8c22adc802 167ffe4acb08 lib: sync i915_pciids.h with kernel commit 7b43a37348b7 2763d0874328 lib: sync i915_pciids.h with kernel commit 41c0f8a36f15 00dcfce5cb2b lib: sync i915_pciids.h with kernel commit 432ed92bfb55 Thoughts? Lucas De Marchi > >v2: squashed into one commit (Lucas) > >Cc: Matt Roper <matthew.d.roper@intel.com> >Cc: Gustavo Sousa <gustavo.sousa@intel.com> >Cc: Jani Nikula <jani.nikula@intel.com> >Cc: Shekhar Chauhan <shekhar.chauhan@intel.com> >Cc: Lucas De Marchi <lucas.demarchi@intel.com> >Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> >--- > lib/pciids.h | 21 +++++++++++++++++++-- > 1 file changed, 19 insertions(+), 2 deletions(-) > >diff --git a/lib/pciids.h b/lib/pciids.h >index 76f8d26f9..9f095a99d 100644 >--- a/lib/pciids.h >+++ b/lib/pciids.h >@@ -26,6 +26,11 @@ > #define __PCIIDS_H__ > > #ifdef __KERNEL__ >+#define INTEL_PCI_DEVICE(_id, _info) { \ >+ PCI_DEVICE(PCI_VENDOR_ID_INTEL, (_id)), \ >+ .driver_data = (kernel_ulong_t)(_info), \ >+} >+ > #define INTEL_VGA_DEVICE(_id, _info) { \ > PCI_DEVICE(PCI_VENDOR_ID_INTEL, (_id)), \ > .class = PCI_BASE_CLASS_DISPLAY << 16, .class_mask = 0xff << 16, \ >@@ -844,7 +849,7 @@ > MACRO__(0x64B0, ## __VA_ARGS__) > > /* BMG */ >-#define INTEL_BMG_IDS(MACRO__, ...) \ >+#define INTEL_BMG_G21_IDS(MACRO__, ...) \ > MACRO__(0xE202, ## __VA_ARGS__), \ > MACRO__(0xE209, ## __VA_ARGS__), \ > MACRO__(0xE20B, ## __VA_ARGS__), \ >@@ -853,7 +858,10 @@ > MACRO__(0xE210, ## __VA_ARGS__), \ > MACRO__(0xE211, ## __VA_ARGS__), \ > MACRO__(0xE212, ## __VA_ARGS__), \ >- MACRO__(0xE216, ## __VA_ARGS__), \ >+ MACRO__(0xE216, ## __VA_ARGS__) >+ >+#define INTEL_BMG_IDS(MACRO__, ...) \ >+ INTEL_BMG_G21_IDS(MACRO__, __VA_ARGS__), \ > MACRO__(0xE220, ## __VA_ARGS__), \ > MACRO__(0xE221, ## __VA_ARGS__), \ > MACRO__(0xE222, ## __VA_ARGS__), \ >@@ -876,4 +884,13 @@ > MACRO__(0xFD80, ## __VA_ARGS__), \ > MACRO__(0xFD81, ## __VA_ARGS__) > >+/* NVL-S */ >+#define INTEL_NVLS_IDS(MACRO__, ...) \ >+ MACRO__(0xD740, ## __VA_ARGS__), \ >+ MACRO__(0xD741, ## __VA_ARGS__), \ >+ MACRO__(0xD742, ## __VA_ARGS__), \ >+ MACRO__(0xD743, ## __VA_ARGS__), \ >+ MACRO__(0xD744, ## __VA_ARGS__), \ >+ MACRO__(0xD745, ## __VA_ARGS__) >+ > #endif /* __PCIIDS_H__ */ >-- >2.51.1 > ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t v2 1/1] lib/pciids: Add NVL-S and split out BMG-G21 2025-10-28 13:53 ` Lucas De Marchi @ 2025-10-28 14:35 ` Jani Nikula 2025-10-28 14:36 ` Jani Nikula 2025-10-28 14:41 ` Jani Nikula 2025-10-28 16:35 ` Kamil Konieczny 1 sibling, 2 replies; 17+ messages in thread From: Jani Nikula @ 2025-10-28 14:35 UTC (permalink / raw) To: Lucas De Marchi, Kamil Konieczny Cc: igt-dev, Matt Roper, Gustavo Sousa, Shekhar Chauhan On Tue, 28 Oct 2025, Lucas De Marchi <lucas.demarchi@intel.com> wrote: > I don't like the commit message, but I don't care enough about it right > now neither. > > I think it would be much better if going forward we'd adopt a template > and maybe even automate it. Something like this: > > > Subject: lib/pciids: sync with kernel commit {kernel_head} > > Synchronize PCI IDs with kernel up to {kernel_head}, which > includes the following changes: > > {kernel_log} > > Which could basically be generated by a (to be added) script: > > tools/sync-intel-pciids [--head <commit>] [--base <commit>][--no-commit] <kernel-checkout> > > What it does: > a) inspect the last commit in igt that touched the header and > find the kernel_base. --base can override that. > b) git -C /path/to/kernel/checkout show $KERNEL_HEAD:include/drm/intel/pciids.h > > lib/pciids.h > > which basically copies the heade from whatever state of the > kernel checkout we want - some times we may want it from a > kernel release, some times from a particular branch, as long > as it keeps moving forward. > > --head can force a specific commit from kernel, otherwise it > uses a default (drm/drm-next may be a good default). > > c) Commit the results with the template above. > > > This would avoid having commits to fix things up like because it went > astray. was done in commit > 3896691534ef ("lib/pciids: lib/pciids: Add Wildcat Lake"). Same script > can be easily adapted to help updating the include/uapi > headers. > > This should get us back to having the updates like we had in the past: > > 2042426168cf lib: sync i915_pciids.h with kernel commit cfa7772880f8 > 440669b77f16 lib: sync i915_pciids.h with kernel commit d2c4b1db1c4f > 9702d87169f7 lib: sync i915_pciids.h with kernel commit 7858cc0b55e3 > ea767a50aa93 lib: sync i915_pciids.h with kernel commit bfbda4722767 > 940399b2f807 lib: sync i915_pciids.h with kernel commit aa3d586e1624 > 1dda137aea8b lib: sync i915_pciids.h with kernel commit 5c8c22adc802 > 167ffe4acb08 lib: sync i915_pciids.h with kernel commit 7b43a37348b7 > 2763d0874328 lib: sync i915_pciids.h with kernel commit 41c0f8a36f15 > 00dcfce5cb2b lib: sync i915_pciids.h with kernel commit 432ed92bfb55 > > Thoughts? This is the script I've used, but never bothered to upstream to igt. It does create separate commits for each kernel change, which was useful in catching up with a lot of kernel changes while remaining bisectable in igt. BR, Jani. #!/bin/bash TIP=drm-tip/drm-tip SINCE=f719c2a2d1e7fb891d45998f241ff4273d7ae7e6 INFILE=include/drm/intel/pciids.h OUTFILE=lib/pciids.h KERNEL=$HOME/src/linux IGT=$HOME/src/intel-gpu-tools LAST= cd $KERNEL for commit in $(git log --reverse --pretty=%h $SINCE..$TIP -- $INFILE); do echo $commit if git show $commit:$INFILE | diff -q $IGT/$OUTFILE - >/dev/null; then LAST=$commit break fi done if [[ -z "$LAST" ]]; then echo "last update not found" exit 1 fi for commit in $(git log --no-merges --reverse --pretty=%h $LAST..$TIP -- $INFILE); do ref=$(git cite $commit) git show $commit:$INFILE > $IGT/$OUTFILE cd $IGT git commit -as \ -m "lib: sync i915_pciids.h with kernel commit $commit" \ -m "Synchronize i915_pciids.h with kernel commit:" \ -m "$ref" cd - done -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t v2 1/1] lib/pciids: Add NVL-S and split out BMG-G21 2025-10-28 14:35 ` Jani Nikula @ 2025-10-28 14:36 ` Jani Nikula 2025-10-28 14:41 ` Jani Nikula 1 sibling, 0 replies; 17+ messages in thread From: Jani Nikula @ 2025-10-28 14:36 UTC (permalink / raw) To: Lucas De Marchi, Kamil Konieczny Cc: igt-dev, Matt Roper, Gustavo Sousa, Shekhar Chauhan On Tue, 28 Oct 2025, Jani Nikula <jani.nikula@intel.com> wrote: > This is the script I've used, but never bothered to upstream to igt. PS. I've got a similar script for intel_vbt_defs.h. -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t v2 1/1] lib/pciids: Add NVL-S and split out BMG-G21 2025-10-28 14:35 ` Jani Nikula 2025-10-28 14:36 ` Jani Nikula @ 2025-10-28 14:41 ` Jani Nikula 2025-10-28 16:59 ` Kamil Konieczny 1 sibling, 1 reply; 17+ messages in thread From: Jani Nikula @ 2025-10-28 14:41 UTC (permalink / raw) To: Lucas De Marchi, Kamil Konieczny Cc: igt-dev, Matt Roper, Gustavo Sousa, Shekhar Chauhan On Tue, 28 Oct 2025, Jani Nikula <jani.nikula@intel.com> wrote: > This is the script I've used, but never bothered to upstream to igt. It > does create separate commits for each kernel change, which was useful in > catching up with a lot of kernel changes while remaining bisectable in > igt. Seems to work still. Running it now generates this log: commit 3ce2a3f06b01cad80923740135bc33fe0967e237 (HEAD -> master) Author: Jani Nikula <jani.nikula@intel.com> Date: Tue Oct 28 16:39:30 2025 +0200 lib: sync i915_pciids.h with kernel commit 5e0de2dfbc1b Synchronize i915_pciids.h with kernel commit: 5e0de2dfbc1b ("drm/xe/cri: Add CRI platform definition") Signed-off-by: Jani Nikula <jani.nikula@intel.com> commit 27720193af75e531f505921e13a17d7dd36a6482 Author: Jani Nikula <jani.nikula@intel.com> Date: Tue Oct 28 16:39:30 2025 +0200 lib: sync i915_pciids.h with kernel commit c002b1764e7b Synchronize i915_pciids.h with kernel commit: c002b1764e7b ("drm/xe/nvl: Define NVL-S platform") Signed-off-by: Jani Nikula <jani.nikula@intel.com> commit 8dd7f13b8ee6f4dd10427481c9a5e28f6baeed2e Author: Jani Nikula <jani.nikula@intel.com> Date: Tue Oct 28 16:39:30 2025 +0200 lib: sync i915_pciids.h with kernel commit 78de8f876683 Synchronize i915_pciids.h with kernel commit: 78de8f876683 ("drm/xe: Handle Wa_22010954014 and Wa_14022085890 as device workarounds") Signed-off-by: Jani Nikula <jani.nikula@intel.com> commit 62e36b49a7441a7422e0b594c14dbdd2aca00968 Author: Jani Nikula <jani.nikula@intel.com> Date: Tue Oct 28 16:39:30 2025 +0200 lib: sync i915_pciids.h with kernel commit 32620e176443 Synchronize i915_pciids.h with kernel commit: 32620e176443 ("drm/pcids: Split PTL pciids group to make wcl subplatform") Signed-off-by: Jani Nikula <jani.nikula@intel.com> commit faa31026a59875bc636619e69f7296a1d69fe289 Author: Jani Nikula <jani.nikula@intel.com> Date: Tue Oct 28 16:39:30 2025 +0200 lib: sync i915_pciids.h with kernel commit edb660ad79ff Synchronize i915_pciids.h with kernel commit: edb660ad79ff ("drm/intel/pciids: Add match on vendor/id only") Signed-off-by: Jani Nikula <jani.nikula@intel.com> -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t v2 1/1] lib/pciids: Add NVL-S and split out BMG-G21 2025-10-28 14:41 ` Jani Nikula @ 2025-10-28 16:59 ` Kamil Konieczny 2025-10-28 20:19 ` Jani Nikula 0 siblings, 1 reply; 17+ messages in thread From: Kamil Konieczny @ 2025-10-28 16:59 UTC (permalink / raw) To: Jani Nikula Cc: Lucas De Marchi, igt-dev, Matt Roper, Gustavo Sousa, Shekhar Chauhan Hi Jani, On 2025-10-28 at 16:41:45 +0200, Jani Nikula wrote: > On Tue, 28 Oct 2025, Jani Nikula <jani.nikula@intel.com> wrote: > > This is the script I've used, but never bothered to upstream to igt. It > > does create separate commits for each kernel change, which was useful in > > catching up with a lot of kernel changes while remaining bisectable in > > igt. > > Seems to work still. Running it now generates this log: > > commit 3ce2a3f06b01cad80923740135bc33fe0967e237 (HEAD -> master) > Author: Jani Nikula <jani.nikula@intel.com> > Date: Tue Oct 28 16:39:30 2025 +0200 > > lib: sync i915_pciids.h with kernel commit 5e0de2dfbc1b > > Synchronize i915_pciids.h with kernel commit: Every code rots, here there are no longer i915_pciids.h nor xe_pciids.h, it is now one pciids.h. Up to you, if you want to upstream it and maintain it later. > > 5e0de2dfbc1b ("drm/xe/cri: Add CRI platform definition") > > Signed-off-by: Jani Nikula <jani.nikula@intel.com> > > commit 27720193af75e531f505921e13a17d7dd36a6482 > Author: Jani Nikula <jani.nikula@intel.com> > Date: Tue Oct 28 16:39:30 2025 +0200 > > lib: sync i915_pciids.h with kernel commit c002b1764e7b > > Synchronize i915_pciids.h with kernel commit: > > c002b1764e7b ("drm/xe/nvl: Define NVL-S platform") > > Signed-off-by: Jani Nikula <jani.nikula@intel.com> > > commit 8dd7f13b8ee6f4dd10427481c9a5e28f6baeed2e > Author: Jani Nikula <jani.nikula@intel.com> > Date: Tue Oct 28 16:39:30 2025 +0200 > > lib: sync i915_pciids.h with kernel commit 78de8f876683 > > Synchronize i915_pciids.h with kernel commit: > > 78de8f876683 ("drm/xe: Handle Wa_22010954014 and Wa_14022085890 as device workarounds") > > Signed-off-by: Jani Nikula <jani.nikula@intel.com> > > commit 62e36b49a7441a7422e0b594c14dbdd2aca00968 > Author: Jani Nikula <jani.nikula@intel.com> > Date: Tue Oct 28 16:39:30 2025 +0200 > > lib: sync i915_pciids.h with kernel commit 32620e176443 > > Synchronize i915_pciids.h with kernel commit: > > 32620e176443 ("drm/pcids: Split PTL pciids group to make wcl subplatform") Hmm, I didn't see it in drm-next between vendor/id and 'Handle Wa_...' Regards, Kamil > > Signed-off-by: Jani Nikula <jani.nikula@intel.com> > > commit faa31026a59875bc636619e69f7296a1d69fe289 > Author: Jani Nikula <jani.nikula@intel.com> > Date: Tue Oct 28 16:39:30 2025 +0200 > > lib: sync i915_pciids.h with kernel commit edb660ad79ff > > Synchronize i915_pciids.h with kernel commit: > > edb660ad79ff ("drm/intel/pciids: Add match on vendor/id only") > > Signed-off-by: Jani Nikula <jani.nikula@intel.com> > > > > -- > Jani Nikula, Intel ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t v2 1/1] lib/pciids: Add NVL-S and split out BMG-G21 2025-10-28 16:59 ` Kamil Konieczny @ 2025-10-28 20:19 ` Jani Nikula 0 siblings, 0 replies; 17+ messages in thread From: Jani Nikula @ 2025-10-28 20:19 UTC (permalink / raw) To: Kamil Konieczny Cc: Lucas De Marchi, igt-dev, Matt Roper, Gustavo Sousa, Shekhar Chauhan On Tue, 28 Oct 2025, Kamil Konieczny <kamil.konieczny@linux.intel.com> wrote: > Hi Jani, > On 2025-10-28 at 16:41:45 +0200, Jani Nikula wrote: >> On Tue, 28 Oct 2025, Jani Nikula <jani.nikula@intel.com> wrote: >> > This is the script I've used, but never bothered to upstream to igt. It >> > does create separate commits for each kernel change, which was useful in >> > catching up with a lot of kernel changes while remaining bisectable in >> > igt. >> >> Seems to work still. Running it now generates this log: >> >> commit 3ce2a3f06b01cad80923740135bc33fe0967e237 (HEAD -> master) >> Author: Jani Nikula <jani.nikula@intel.com> >> Date: Tue Oct 28 16:39:30 2025 +0200 >> >> lib: sync i915_pciids.h with kernel commit 5e0de2dfbc1b >> >> Synchronize i915_pciids.h with kernel commit: > > Every code rots, here there are no longer i915_pciids.h nor > xe_pciids.h, it is now one pciids.h. Having done that change, I'm aware. ;D The script does look at the right file, it's just the commit message that is stale. > Up to you, if you want to upstream it and maintain it later. Nah. If anyone's interested, they can pick it up from the list. SPDX-License-Identifier: MIT Copyright © 2025 Intel Corporation Signed-off-by: Jani Nikula <jani.nikula@intel.com> -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t v2 1/1] lib/pciids: Add NVL-S and split out BMG-G21 2025-10-28 13:53 ` Lucas De Marchi 2025-10-28 14:35 ` Jani Nikula @ 2025-10-28 16:35 ` Kamil Konieczny 1 sibling, 0 replies; 17+ messages in thread From: Kamil Konieczny @ 2025-10-28 16:35 UTC (permalink / raw) To: Lucas De Marchi Cc: igt-dev, Matt Roper, Gustavo Sousa, Jani Nikula, Shekhar Chauhan Hi Lucas, On 2025-10-28 at 08:53:39 -0500, Lucas De Marchi wrote: > On Tue, Oct 28, 2025 at 11:42:34AM +0100, Kamil Konieczny wrote: > > Sync with drm-next kernel commit c002b1764e7b ("drm/xe/nvl: Define NVL-S platform") > > Link: https://lore.kernel.org/r/20251016-xe3p-v3-11-3dd173a3097a@intel.com > > > > This adds NovaLake-S PCI ids, and with it there are two more PCI > > ids commits, one for splitting BMG-G21 out of BMG for workarounds > > and the other adds a kernel macro. > > > > 78de8f876683 ("drm/xe: Handle Wa_22010954014 and Wa_14022085890 as device workarounds") > > Link: https://lore.kernel.org/r/20251013200944.2499947-40-matthew.d.roper@intel.com > > > > edb660ad79ff ("drm/intel/pciids: Add match on vendor/id only") > > Link: https://lore.kernel.org/r/20250808-intel-pci-device-v1-1-ce3545d86502@intel.com > > Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com> > > I don't like the commit message, but I don't care enough about it right > now neither. > > I think it would be much better if going forward we'd adopt a template > and maybe even automate it. Something like this: > > > Subject: lib/pciids: sync with kernel commit {kernel_head} > > Synchronize PCI IDs with kernel up to {kernel_head}, which > includes the following changes: > > {kernel_log} > Looks ok, I will change subject and description according to it and will send v3 with your r-b. Imho there should be a mension from which repo it was taken, drm-next or other, so anyone could verify it. Regards, Kamil > Which could basically be generated by a (to be added) script: > > tools/sync-intel-pciids [--head <commit>] [--base <commit>][--no-commit] <kernel-checkout> > > What it does: > a) inspect the last commit in igt that touched the header and > find the kernel_base. --base can override that. > b) git -C /path/to/kernel/checkout show $KERNEL_HEAD:include/drm/intel/pciids.h > > lib/pciids.h > > which basically copies the heade from whatever state of the > kernel checkout we want - some times we may want it from a > kernel release, some times from a particular branch, as long > as it keeps moving forward. > > --head can force a specific commit from kernel, otherwise it > uses a default (drm/drm-next may be a good default). > > c) Commit the results with the template above. > > > This would avoid having commits to fix things up like because it went > astray. was done in commit > 3896691534ef ("lib/pciids: lib/pciids: Add Wildcat Lake"). Same script > can be easily adapted to help updating the include/uapi > headers. > > This should get us back to having the updates like we had in the past: > > 2042426168cf lib: sync i915_pciids.h with kernel commit cfa7772880f8 > 440669b77f16 lib: sync i915_pciids.h with kernel commit d2c4b1db1c4f > 9702d87169f7 lib: sync i915_pciids.h with kernel commit 7858cc0b55e3 > ea767a50aa93 lib: sync i915_pciids.h with kernel commit bfbda4722767 > 940399b2f807 lib: sync i915_pciids.h with kernel commit aa3d586e1624 > 1dda137aea8b lib: sync i915_pciids.h with kernel commit 5c8c22adc802 > 167ffe4acb08 lib: sync i915_pciids.h with kernel commit 7b43a37348b7 > 2763d0874328 lib: sync i915_pciids.h with kernel commit 41c0f8a36f15 > 00dcfce5cb2b lib: sync i915_pciids.h with kernel commit 432ed92bfb55 > > Thoughts? > > Lucas De Marchi > > > > > > v2: squashed into one commit (Lucas) > > > > Cc: Matt Roper <matthew.d.roper@intel.com> > > Cc: Gustavo Sousa <gustavo.sousa@intel.com> > > Cc: Jani Nikula <jani.nikula@intel.com> > > Cc: Shekhar Chauhan <shekhar.chauhan@intel.com> > > Cc: Lucas De Marchi <lucas.demarchi@intel.com> > > Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > --- > > lib/pciids.h | 21 +++++++++++++++++++-- > > 1 file changed, 19 insertions(+), 2 deletions(-) > > > > diff --git a/lib/pciids.h b/lib/pciids.h > > index 76f8d26f9..9f095a99d 100644 > > --- a/lib/pciids.h > > +++ b/lib/pciids.h > > @@ -26,6 +26,11 @@ > > #define __PCIIDS_H__ > > > > #ifdef __KERNEL__ > > +#define INTEL_PCI_DEVICE(_id, _info) { \ > > + PCI_DEVICE(PCI_VENDOR_ID_INTEL, (_id)), \ > > + .driver_data = (kernel_ulong_t)(_info), \ > > +} > > + > > #define INTEL_VGA_DEVICE(_id, _info) { \ > > PCI_DEVICE(PCI_VENDOR_ID_INTEL, (_id)), \ > > .class = PCI_BASE_CLASS_DISPLAY << 16, .class_mask = 0xff << 16, \ > > @@ -844,7 +849,7 @@ > > MACRO__(0x64B0, ## __VA_ARGS__) > > > > /* BMG */ > > -#define INTEL_BMG_IDS(MACRO__, ...) \ > > +#define INTEL_BMG_G21_IDS(MACRO__, ...) \ > > MACRO__(0xE202, ## __VA_ARGS__), \ > > MACRO__(0xE209, ## __VA_ARGS__), \ > > MACRO__(0xE20B, ## __VA_ARGS__), \ > > @@ -853,7 +858,10 @@ > > MACRO__(0xE210, ## __VA_ARGS__), \ > > MACRO__(0xE211, ## __VA_ARGS__), \ > > MACRO__(0xE212, ## __VA_ARGS__), \ > > - MACRO__(0xE216, ## __VA_ARGS__), \ > > + MACRO__(0xE216, ## __VA_ARGS__) > > + > > +#define INTEL_BMG_IDS(MACRO__, ...) \ > > + INTEL_BMG_G21_IDS(MACRO__, __VA_ARGS__), \ > > MACRO__(0xE220, ## __VA_ARGS__), \ > > MACRO__(0xE221, ## __VA_ARGS__), \ > > MACRO__(0xE222, ## __VA_ARGS__), \ > > @@ -876,4 +884,13 @@ > > MACRO__(0xFD80, ## __VA_ARGS__), \ > > MACRO__(0xFD81, ## __VA_ARGS__) > > > > +/* NVL-S */ > > +#define INTEL_NVLS_IDS(MACRO__, ...) \ > > + MACRO__(0xD740, ## __VA_ARGS__), \ > > + MACRO__(0xD741, ## __VA_ARGS__), \ > > + MACRO__(0xD742, ## __VA_ARGS__), \ > > + MACRO__(0xD743, ## __VA_ARGS__), \ > > + MACRO__(0xD744, ## __VA_ARGS__), \ > > + MACRO__(0xD745, ## __VA_ARGS__) > > + > > #endif /* __PCIIDS_H__ */ > > -- > > 2.51.1 > > ^ permalink raw reply [flat|nested] 17+ messages in thread
* ✓ Xe.CI.BAT: success for Sync PCI ids with kernel: split BMG to BMG-G21 and add NVL-S (rev2) 2025-10-28 10:42 [PATCH i-g-t v2 0/1] Sync PCI ids with kernel: split BMG to BMG-G21 and add NVL-S Kamil Konieczny 2025-10-28 10:42 ` [PATCH i-g-t v2 1/1] lib/pciids: Add NVL-S and split out BMG-G21 Kamil Konieczny @ 2025-10-28 11:56 ` Patchwork 2025-10-28 12:14 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2025-10-28 11:56 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1002 bytes --] == Series Details == Series: Sync PCI ids with kernel: split BMG to BMG-G21 and add NVL-S (rev2) URL : https://patchwork.freedesktop.org/series/156479/ State : success == Summary == CI Bug Log - changes from XEIGT_8598_BAT -> XEIGTPW_13955_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (13 -> 13) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8598 -> IGTPW_13955 * Linux: xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e -> xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc IGTPW_13955: 13955 IGT_8598: 8598 xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e: de43fe70c436c359e7478a5532d873f87357cb4e xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc: 894bc3ad572262b3c29e8cf0352adaa07275dbfc == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/index.html [-- Attachment #2: Type: text/html, Size: 1561 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* ✓ i915.CI.BAT: success for Sync PCI ids with kernel: split BMG to BMG-G21 and add NVL-S (rev2) 2025-10-28 10:42 [PATCH i-g-t v2 0/1] Sync PCI ids with kernel: split BMG to BMG-G21 and add NVL-S Kamil Konieczny 2025-10-28 10:42 ` [PATCH i-g-t v2 1/1] lib/pciids: Add NVL-S and split out BMG-G21 Kamil Konieczny 2025-10-28 11:56 ` ✓ Xe.CI.BAT: success for Sync PCI ids with kernel: split BMG to BMG-G21 and add NVL-S (rev2) Patchwork @ 2025-10-28 12:14 ` Patchwork 2025-10-28 16:42 ` ✗ Xe.CI.Full: failure " Patchwork 2025-10-28 20:27 ` ✗ i915.CI.Full: " Patchwork 4 siblings, 0 replies; 17+ messages in thread From: Patchwork @ 2025-10-28 12:14 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1983 bytes --] == Series Details == Series: Sync PCI ids with kernel: split BMG to BMG-G21 and add NVL-S (rev2) URL : https://patchwork.freedesktop.org/series/156479/ State : success == Summary == CI Bug Log - changes from IGT_8598 -> IGTPW_13955 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/index.html Participating hosts (45 -> 44) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_13955 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@workarounds: - bat-arls-6: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8598/bat-arls-6/igt@i915_selftest@live@workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/bat-arls-6/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-dg2-9: [DMESG-FAIL][3] ([i915#12061]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8598/bat-dg2-9/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/bat-dg2-9/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8598 -> IGTPW_13955 * Linux: CI_DRM_17435 -> CI_DRM_17436 CI-20190529: 20190529 CI_DRM_17435: de43fe70c436c359e7478a5532d873f87357cb4e @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_17436: 894bc3ad572262b3c29e8cf0352adaa07275dbfc @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13955: 13955 IGT_8598: 8598 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/index.html [-- Attachment #2: Type: text/html, Size: 2686 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* ✗ Xe.CI.Full: failure for Sync PCI ids with kernel: split BMG to BMG-G21 and add NVL-S (rev2) 2025-10-28 10:42 [PATCH i-g-t v2 0/1] Sync PCI ids with kernel: split BMG to BMG-G21 and add NVL-S Kamil Konieczny ` (2 preceding siblings ...) 2025-10-28 12:14 ` ✓ i915.CI.BAT: " Patchwork @ 2025-10-28 16:42 ` Patchwork 2025-10-28 17:55 ` Kamil Konieczny 2025-10-28 20:27 ` ✗ i915.CI.Full: " Patchwork 4 siblings, 1 reply; 17+ messages in thread From: Patchwork @ 2025-10-28 16:42 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 50482 bytes --] == Series Details == Series: Sync PCI ids with kernel: split BMG to BMG-G21 and add NVL-S (rev2) URL : https://patchwork.freedesktop.org/series/156479/ State : failure == Summary == CI Bug Log - changes from XEIGT_8598_FULL -> XEIGTPW_13955_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_13955_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_13955_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 (4 -> 3) ------------------------------ Missing (1): shard-adlp Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_13955_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_pipe_stress@stress-xrgb8888-xtiled: - shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-dg2-463/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-435/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html Known issues ------------ Here are the changes found in XEIGTPW_13955_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2-set2: NOTRUN -> [SKIP][3] ([Intel XE#623]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-463/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1: - shard-lnl: [PASS][4] -> [FAIL][5] ([Intel XE#6054]) +3 other tests fail [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#1407]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-3/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#316]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-434/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +6 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#1124]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_bw@linear-tiling-4-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#367]) +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html * igt@kms_bw@linear-tiling-4-displays-3840x2160p: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1512]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-3/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2887]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-2/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#787]) +27 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-436/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: [PASS][16] -> [INCOMPLETE][17] ([Intel XE#3862]) +1 other test incomplete [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#2887]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#4418]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-466/igt@kms_cdclk@mode-transition-all-outputs.html - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#4418]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-8/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#4417]) +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-432/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_chamelium_color@gamma: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#306]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-434/igt@kms_chamelium_color@gamma.html - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#306]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-2/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@vga-edid-read: - shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#373]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-434/igt@kms_chamelium_edid@vga-edid-read.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2252]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-6/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@lic-type-0: - shard-dg2-set2: NOTRUN -> [FAIL][26] ([Intel XE#1178]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-463/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][27] ([Intel XE#3304]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-463/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#308]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2321]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2321]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2291]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#309]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-bmg: [PASS][33] -> [SKIP][34] ([Intel XE#2291]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-bmg: [PASS][35] -> [FAIL][36] ([Intel XE#1475]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [PASS][37] -> [SKIP][38] ([Intel XE#1340]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#4331]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-435/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_feature_discovery@dp-mst: - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#1137]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-432/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#1135]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-466/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-busy-flip: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1421]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-5/igt@kms_flip@2x-busy-flip.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-bmg: [PASS][43] -> [SKIP][44] ([Intel XE#2316]) +8 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@flip-vs-suspend@c-dp4: - shard-dg2-set2: [PASS][45] -> [INCOMPLETE][46] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-dg2-434/igt@kms_flip@flip-vs-suspend@c-dp4.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-433/igt@kms_flip@flip-vs-suspend@c-dp4.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling: - shard-lnl: NOTRUN -> [FAIL][47] ([Intel XE#4683]) +1 other test fail [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#6312]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2311]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#5390]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#658]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-tiling-y.html - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1469]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#651]) +16 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#651]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-rte.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2312]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2313]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#6312]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#656]) +6 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#653]) +12 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [PASS][60] -> [SKIP][61] ([Intel XE#3012]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#2925]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-466/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_plane_multiple@2x-tiling-4: - shard-bmg: [PASS][63] -> [SKIP][64] ([Intel XE#4596]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-4.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#2763]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-c.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#1406] / [Intel XE#1489]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-pr-cursor-plane-move: - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +6 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-463/igt@kms_psr@fbc-pr-cursor-plane-move.html - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1406]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-5/igt@kms_psr@fbc-pr-cursor-plane-move.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#1406] / [Intel XE#2939]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-435/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#3414]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-464/igt@kms_rotation_crc@sprite-rotation-270.html - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-2/igt@kms_rotation_crc@sprite-rotation-270.html - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#3414] / [Intel XE#3904]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-1/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_scaling_modes@scaling-mode-full: - shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#455]) +5 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-432/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#362]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@negative-basic: - shard-bmg: [PASS][75] -> [SKIP][76] ([Intel XE#1499]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-3/igt@kms_vrr@negative-basic.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-6/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1499]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@xe_create@create-big-vram: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1062]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-3/igt@xe_create@create-big-vram.html * igt@xe_eudebug@basic-vm-bind-ufence: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#4837]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-ufence.html - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#4837]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-2/igt@xe_eudebug@basic-vm-bind-ufence.html * igt@xe_eudebug_sriov@deny-eudebug: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#4518]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-435/igt@xe_eudebug_sriov@deny-eudebug.html - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#4518]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-4/igt@xe_eudebug_sriov@deny-eudebug.html * igt@xe_evict@evict-beng-small-multi-vm-cm: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#688]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-2/igt@xe_evict@evict-beng-small-multi-vm-cm.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1392]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html * igt@xe_exec_fault_mode@many-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#288]) +13 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-435/igt@xe_exec_fault_mode@many-userptr.html * igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][86] ([Intel XE#6299]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-464/igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads.html * igt@xe_exec_sip_eudebug@breakpoint-writesip: - shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#4837]) +6 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-433/igt@xe_exec_sip_eudebug@breakpoint-writesip.html * igt@xe_exec_system_allocator@many-64k-mmap-mlock-nomemset: - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#4915]) +159 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-463/igt@xe_exec_system_allocator@many-64k-mmap-mlock-nomemset.html * igt@xe_exec_system_allocator@many-large-mmap-huge-nomemset: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#4943]) +4 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-2/igt@xe_exec_system_allocator@many-large-mmap-huge-nomemset.html * igt@xe_exec_system_allocator@many-stride-mmap-free-huge: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#4943]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-1/igt@xe_exec_system_allocator@many-stride-mmap-free-huge.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#6196]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma.html * igt@xe_oa@mmio-triggered-reports-read: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#6032]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-435/igt@xe_oa@mmio-triggered-reports-read.html * igt@xe_oa@non-system-wide-paranoid: - shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#3573]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-464/igt@xe_oa@non-system-wide-paranoid.html * igt@xe_pm@d3cold-mmap-system: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2284] / [Intel XE#366]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-463/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@s4-basic: - shard-lnl: [PASS][95] -> [FAIL][96] ([Intel XE#6406]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-lnl-5/igt@xe_pm@s4-basic.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-8/igt@xe_pm@s4-basic.html * igt@xe_pm@s4-vm-bind-unbind-all: - shard-bmg: [PASS][97] -> [FAIL][98] ([Intel XE#6406]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-8/igt@xe_pm@s4-vm-bind-unbind-all.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-8/igt@xe_pm@s4-vm-bind-unbind-all.html - shard-dg2-set2: [PASS][99] -> [FAIL][100] ([Intel XE#6406]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-dg2-435/igt@xe_pm@s4-vm-bind-unbind-all.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-436/igt@xe_pm@s4-vm-bind-unbind-all.html * igt@xe_pmu@all-fn-engine-activity-load: - shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#4650]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-435/igt@xe_pmu@all-fn-engine-activity-load.html * igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1: - shard-bmg: [PASS][102] -> [DMESG-WARN][103] ([Intel XE#3876] / [Intel XE#3970]) +1 other test dmesg-warn [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-6/igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-6/igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1.html * igt@xe_query@multigpu-query-gt-list: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#944]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-5/igt@xe_query@multigpu-query-gt-list.html * igt@xe_query@multigpu-query-invalid-extension: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#944]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-433/igt@xe_query@multigpu-query-invalid-extension.html * igt@xe_render_copy@render-stress-2-copies: - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#4814]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-466/igt@xe_render_copy@render-stress-2-copies.html * igt@xe_sriov_flr@flr-each-isolation: - shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#3342]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-434/igt@xe_sriov_flr@flr-each-isolation.html #### Possible fixes #### * igt@device_reset@unbind-reset-rebind: - shard-bmg: [DMESG-WARN][108] -> [PASS][109] [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-6/igt@device_reset@unbind-reset-rebind.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-8/igt@device_reset@unbind-reset-rebind.html - shard-lnl: [DMESG-WARN][110] -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-lnl-5/igt@device_reset@unbind-reset-rebind.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-1/igt@device_reset@unbind-reset-rebind.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][112] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4: - shard-dg2-set2: [INCOMPLETE][114] ([Intel XE#6168] / [i915#14968]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: [DMESG-WARN][116] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][117] [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-bmg: [DMESG-WARN][118] ([Intel XE#5354]) -> [PASS][119] [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-bmg: [SKIP][120] ([Intel XE#2291]) -> [PASS][121] +4 other tests pass [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-bmg: [SKIP][122] ([Intel XE#2316]) -> [PASS][123] +2 other tests pass [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [FAIL][124] ([Intel XE#301]) -> [PASS][125] +1 other test pass [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_hdr@static-toggle-dpms: - shard-bmg: [SKIP][126] ([Intel XE#1503]) -> [PASS][127] [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-6/igt@kms_hdr@static-toggle-dpms.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-5/igt@kms_hdr@static-toggle-dpms.html * igt@kms_plane_multiple@2x-tiling-x: - shard-bmg: [SKIP][128] ([Intel XE#4596]) -> [PASS][129] [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-x.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [SKIP][130] ([Intel XE#2571]) -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-3/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@xe_exec_system_allocator@threads-many-stride-mmap-prefetch: - shard-bmg: [WARN][132] ([Intel XE#5786]) -> [PASS][133] [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-1/igt@xe_exec_system_allocator@threads-many-stride-mmap-prefetch.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-4/igt@xe_exec_system_allocator@threads-many-stride-mmap-prefetch.html * igt@xe_pm@s2idle-vm-bind-unbind-all: - shard-dg2-set2: [TIMEOUT][134] ([Intel XE#6227]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-dg2-463/igt@xe_pm@s2idle-vm-bind-unbind-all.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-463/igt@xe_pm@s2idle-vm-bind-unbind-all.html * igt@xe_pm@s4-mocs: - shard-bmg: [FAIL][136] ([Intel XE#6406]) -> [PASS][137] [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-4/igt@xe_pm@s4-mocs.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-3/igt@xe_pm@s4-mocs.html * igt@xe_pm@s4-vm-bind-userptr: - shard-lnl: [FAIL][138] ([Intel XE#6406]) -> [PASS][139] +1 other test pass [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html * igt@xe_pmu@gt-frequency: - shard-dg2-set2: [FAIL][140] ([Intel XE#4819]) -> [PASS][141] +1 other test pass [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-dg2-434/igt@xe_pmu@gt-frequency.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-436/igt@xe_pmu@gt-frequency.html #### Warnings #### * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][142] ([Intel XE#2312]) -> [SKIP][143] ([Intel XE#2311]) +10 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][144] ([Intel XE#2311]) -> [SKIP][145] ([Intel XE#2312]) +7 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@drrs-slowdraw: - shard-dg2-set2: [SKIP][146] ([Intel XE#651]) -> [INCOMPLETE][147] ([Intel XE#2594]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-slowdraw.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-slowdraw.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][148] ([Intel XE#2312]) -> [SKIP][149] ([Intel XE#5390]) +5 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-bmg: [SKIP][150] ([Intel XE#5390]) -> [SKIP][151] ([Intel XE#2312]) +4 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][152] ([Intel XE#2312]) -> [SKIP][153] ([Intel XE#2313]) +8 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt: - shard-bmg: [SKIP][154] ([Intel XE#2313]) -> [SKIP][155] ([Intel XE#2312]) +9 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][156] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][157] ([Intel XE#3544]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv: - shard-bmg: [ABORT][158] ([Intel XE#5466] / [Intel XE#5530]) -> [ABORT][159] ([Intel XE#4917] / [Intel XE#5466] / [Intel XE#5530]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-7/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-7/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html * igt@xe_module_load@load: - shard-bmg: ([PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [SKIP][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185]) ([Intel XE#2457]) -> ([PASS][186], [PASS][187], [PASS][188], [DMESG-WARN][189], [PASS][190], [PASS][191], [PASS][192], [SKIP][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207], [PASS][208], [PASS][209], [PASS][210], [PASS][211]) ([Intel XE#2457] / [Intel XE#3428]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-7/igt@xe_module_load@load.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-6/igt@xe_module_load@load.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-6/igt@xe_module_load@load.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-1/igt@xe_module_load@load.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-1/igt@xe_module_load@load.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-1/igt@xe_module_load@load.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-2/igt@xe_module_load@load.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-2/igt@xe_module_load@load.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-2/igt@xe_module_load@load.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-5/igt@xe_module_load@load.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-5/igt@xe_module_load@load.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-8/igt@xe_module_load@load.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-4/igt@xe_module_load@load.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-8/igt@xe_module_load@load.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-8/igt@xe_module_load@load.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-7/igt@xe_module_load@load.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-2/igt@xe_module_load@load.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-3/igt@xe_module_load@load.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-6/igt@xe_module_load@load.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-6/igt@xe_module_load@load.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-7/igt@xe_module_load@load.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-7/igt@xe_module_load@load.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-4/igt@xe_module_load@load.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-4/igt@xe_module_load@load.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-3/igt@xe_module_load@load.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-bmg-3/igt@xe_module_load@load.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-1/igt@xe_module_load@load.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-5/igt@xe_module_load@load.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-5/igt@xe_module_load@load.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-6/igt@xe_module_load@load.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-6/igt@xe_module_load@load.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-6/igt@xe_module_load@load.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-6/igt@xe_module_load@load.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-8/igt@xe_module_load@load.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-5/igt@xe_module_load@load.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-1/igt@xe_module_load@load.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-7/igt@xe_module_load@load.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-3/igt@xe_module_load@load.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-3/igt@xe_module_load@load.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-4/igt@xe_module_load@load.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-2/igt@xe_module_load@load.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-8/igt@xe_module_load@load.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-8/igt@xe_module_load@load.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-3/igt@xe_module_load@load.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-2/igt@xe_module_load@load.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-1/igt@xe_module_load@load.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-6/igt@xe_module_load@load.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-4/igt@xe_module_load@load.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-3/igt@xe_module_load@load.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-7/igt@xe_module_load@load.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-7/igt@xe_module_load@load.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-bmg-2/igt@xe_module_load@load.html [Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331 [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345 [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417 [Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418 [Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650 [Intel XE#4683]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4683 [Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814 [Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915 [Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354 [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390 [Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466 [Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530 [Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786 [Intel XE#6032]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6032 [Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054 [Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168 [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196 [Intel XE#6227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6227 [Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623 [Intel XE#6299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6299 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6406 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [i915#14968]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14968 Build changes ------------- * IGT: IGT_8598 -> IGTPW_13955 * Linux: xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e -> xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc IGTPW_13955: 13955 IGT_8598: 8598 xe-3994-de43fe70c436c359e7478a5532d873f87357cb4e: de43fe70c436c359e7478a5532d873f87357cb4e xe-3995-894bc3ad572262b3c29e8cf0352adaa07275dbfc: 894bc3ad572262b3c29e8cf0352adaa07275dbfc == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/index.html [-- Attachment #2: Type: text/html, Size: 57381 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: ✗ Xe.CI.Full: failure for Sync PCI ids with kernel: split BMG to BMG-G21 and add NVL-S (rev2) 2025-10-28 16:42 ` ✗ Xe.CI.Full: failure " Patchwork @ 2025-10-28 17:55 ` Kamil Konieczny 0 siblings, 0 replies; 17+ messages in thread From: Kamil Konieczny @ 2025-10-28 17:55 UTC (permalink / raw) To: igt-dev; +Cc: I915-ci-infra Hi igt-dev, On 2025-10-28 at 16:42:15 -0000, Patchwork wrote: > == Series Details == > > Series: Sync PCI ids with kernel: split BMG to BMG-G21 and add NVL-S (rev2) > URL : https://patchwork.freedesktop.org/series/156479/ > State : failure > > == Summary == > > CI Bug Log - changes from XEIGT_8598_FULL -> XEIGTPW_13955_FULL > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with XEIGTPW_13955_FULL absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in XEIGTPW_13955_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 (4 -> 3) > ------------------------------ > > Missing (1): shard-adlp > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in XEIGTPW_13955_FULL: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@kms_pipe_stress@stress-xrgb8888-xtiled: > - shard-dg2-set2: [PASS][1] -> [INCOMPLETE][2] > [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8598/shard-dg2-463/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html > [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-435/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html > Unrelated. Regards, Kamil > > Known issues > ------------ > > Here are the changes found in XEIGTPW_13955_FULL that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: > - shard-dg2-set2: NOTRUN -> [SKIP][3] ([Intel XE#623]) > [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_13955/shard-dg2-463/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html > ...cut... ^ permalink raw reply [flat|nested] 17+ messages in thread
* ✗ i915.CI.Full: failure for Sync PCI ids with kernel: split BMG to BMG-G21 and add NVL-S (rev2) 2025-10-28 10:42 [PATCH i-g-t v2 0/1] Sync PCI ids with kernel: split BMG to BMG-G21 and add NVL-S Kamil Konieczny ` (3 preceding siblings ...) 2025-10-28 16:42 ` ✗ Xe.CI.Full: failure " Patchwork @ 2025-10-28 20:27 ` Patchwork 2025-10-29 17:17 ` Kamil Konieczny 4 siblings, 1 reply; 17+ messages in thread From: Patchwork @ 2025-10-28 20:27 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 181425 bytes --] == Series Details == Series: Sync PCI ids with kernel: split BMG to BMG-G21 and add NVL-S (rev2) URL : https://patchwork.freedesktop.org/series/156479/ State : failure == Summary == CI Bug Log - changes from CI_DRM_17436_full -> IGTPW_13955_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_13955_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_13955_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. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/index.html Participating hosts (11 -> 12) ------------------------------ Additional (1): shard-dg2-set2 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_13955_full: ### IGT changes ### #### Possible regressions #### * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-128: - shard-rkl: [PASS][1] -> [FAIL][2] +3 other tests fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-4/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-128.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-128.html New tests --------- New tests have been introduced between CI_DRM_17436_full and IGTPW_13955_full: ### New IGT tests (11) ### * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [2.29] s * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-3: - Statuses : 1 pass(s) - Exec time: [2.13] s * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-dp-3: - Statuses : 1 pass(s) - Exec time: [2.14] s * igt@kms_async_flips@alternate-sync-async-flip@pipe-d-dp-3: - Statuses : 1 pass(s) - Exec time: [2.13] s * igt@kms_cursor_crc@cursor-alpha-transparent@pipe-d-dp-3: - Statuses : 1 pass(s) - Exec time: [0.55] s * igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-d-dp-3: - Statuses : 1 pass(s) - Exec time: [2.73] s * igt@kms_cursor_crc@cursor-rapid-movement-256x256@pipe-d-dp-3: - Statuses : 1 pass(s) - Exec time: [0.41] s * igt@kms_invalid_mode@bad-hsync-start@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [0.08] s * igt@kms_invalid_mode@bad-hsync-start@pipe-b-dp-3: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_invalid_mode@bad-hsync-start@pipe-c-dp-3: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_invalid_mode@bad-hsync-start@pipe-d-dp-3: - Statuses : 1 pass(s) - Exec time: [0.00] s Known issues ------------ Here are the changes found in IGTPW_13955_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-8/igt@api_intel_bb@blit-reloc-keep-cache.html - shard-rkl: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#14544] / [i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2-9: NOTRUN -> [SKIP][6] ([i915#11078]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@device_reset@unbind-cold-reset-rebind.html * igt@gem_ccs@block-multicopy-compressed: - shard-tglu: NOTRUN -> [SKIP][7] ([i915#9323]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-9/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@suspend-resume: - shard-dg2: NOTRUN -> [INCOMPLETE][8] ([i915#13356]) +1 other test incomplete [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-6/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2-9: NOTRUN -> [SKIP][9] ([i915#7697]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu-1: NOTRUN -> [SKIP][10] ([i915#6335]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8562]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-7/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg2-9: NOTRUN -> [SKIP][12] ([i915#8555]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#5882]) +7 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-10/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2-9: NOTRUN -> [SKIP][14] ([i915#280]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu: NOTRUN -> [SKIP][15] ([i915#280]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-8/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@hibernate: - shard-tglu: NOTRUN -> [FAIL][16] ([i915#15136]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-5/igt@gem_eio@hibernate.html - shard-rkl: NOTRUN -> [FAIL][17] ([i915#15136]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@gem_eio@hibernate.html * igt@gem_eio@in-flight-suspend: - shard-rkl: NOTRUN -> [DMESG-WARN][18] ([i915#12964]) +10 other tests dmesg-warn [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@gem_eio@in-flight-suspend.html - shard-glk: NOTRUN -> [INCOMPLETE][19] ([i915#13390]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-glk5/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2-9: NOTRUN -> [SKIP][20] ([i915#4771]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-tglu: NOTRUN -> [SKIP][21] ([i915#4525]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-3/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-tglu-1: NOTRUN -> [SKIP][22] ([i915#4525]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#4525]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_big@single: - shard-tglu: [PASS][24] -> [ABORT][25] ([i915#11713]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-tglu-6/igt@gem_exec_big@single.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-6/igt@gem_exec_big@single.html * igt@gem_exec_fence@submit3: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#4812]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-3/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2-9: NOTRUN -> [SKIP][27] ([i915#3539]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-3/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg2-9: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3281]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-4/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-cpu-read: - shard-dg2-9: NOTRUN -> [SKIP][31] ([i915#3281]) +3 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@gem_exec_reloc@basic-cpu-read.html * igt@gem_exec_reloc@basic-cpu-read-noreloc: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#3281]) +4 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-5/igt@gem_exec_reloc@basic-cpu-read-noreloc.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#3281]) +7 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html - shard-dg1: NOTRUN -> [SKIP][34] ([i915#3281]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-19/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#14544] / [i915#3281]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@gem_exec_reloc@basic-wc-read-noreloc.html * igt@gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4537] / [i915#4812]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-8/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4537] / [i915#4812]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#7276]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-4/igt@gem_exec_schedule@semaphore-power.html - shard-dg2-9: NOTRUN -> [SKIP][39] ([i915#4537] / [i915#4812]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s3: - shard-rkl: [PASS][40] -> [INCOMPLETE][41] ([i915#13356]) +1 other test incomplete [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-5/igt@gem_exec_suspend@basic-s3.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-3/igt@gem_exec_suspend@basic-s3.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2-9: NOTRUN -> [SKIP][42] ([i915#4860]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4860]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-10/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_lmem_swapping@heavy-random: - shard-glk: NOTRUN -> [SKIP][44] ([i915#4613]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-glk6/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#14544] / [i915#4613]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@parallel-random: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-4/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@random: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4613]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-7/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@random-engines: - shard-tglu-1: NOTRUN -> [SKIP][48] ([i915#4613]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][49] ([i915#5493]) +1 other test timeout [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html - shard-dg1: [PASS][50] -> [TIMEOUT][51] ([i915#5493]) +1 other test timeout [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-random: - shard-tglu: NOTRUN -> [SKIP][52] ([i915#4613]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-9/igt@gem_lmem_swapping@verify-random.html * igt@gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][53] ([i915#284]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-3/igt@gem_media_vme.html * igt@gem_mmap@bad-object: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4083]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-3/igt@gem_mmap@bad-object.html * igt@gem_mmap@basic-small-bo: - shard-dg2-9: NOTRUN -> [SKIP][55] ([i915#4083]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@gem_mmap@basic-small-bo.html * igt@gem_mmap@big-bo: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4083]) +4 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-8/igt@gem_mmap@big-bo.html * igt@gem_mmap_gtt@basic-write-read-distinct: - shard-dg2-9: NOTRUN -> [SKIP][57] ([i915#4077]) +4 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@gem_mmap_gtt@basic-write-read-distinct.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4077]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt@gem_mmap_gtt@cpuset-big-copy-xy: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4077]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-16/igt@gem_mmap_gtt@cpuset-big-copy-xy.html * igt@gem_mmap_gtt@ptrace: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4077]) +9 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-3/igt@gem_mmap_gtt@ptrace.html * igt@gem_mmap_wc@set-cache-level: - shard-rkl: [PASS][61] -> [SKIP][62] ([i915#14544] / [i915#1850]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-7/igt@gem_mmap_wc@set-cache-level.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@gem_mmap_wc@set-cache-level.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3282]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-5/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_partial_pwrite_pread@write: - shard-dg2-9: NOTRUN -> [SKIP][64] ([i915#3282]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@gem_partial_pwrite_pread@write.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3282]) +4 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-4/igt@gem_partial_pwrite_pread@writes-after-reads-display.html - shard-rkl: NOTRUN -> [SKIP][66] ([i915#3282]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#3282]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-16/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pwrite@basic-exhaustion: - shard-glk: NOTRUN -> [WARN][68] ([i915#14702] / [i915#2658]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-glk5/igt@gem_pwrite@basic-exhaustion.html - shard-tglu-1: NOTRUN -> [WARN][69] ([i915#2658]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4270]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-3/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2-9: NOTRUN -> [SKIP][71] ([i915#4270]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-rkl: [PASS][72] -> [TIMEOUT][73] ([i915#12964]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@gem_pxp@regular-baseline-src-copy-readible.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-rkl: NOTRUN -> [TIMEOUT][74] ([i915#12917] / [i915#12964]) +1 other test timeout [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-rkl: [PASS][75] -> [TIMEOUT][76] ([i915#12917] / [i915#12964]) +2 other tests timeout [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-5/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_readwrite@read-bad-handle: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#14544] / [i915#3282]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@linear-to-vebox-yf-tiled: - shard-dg2-9: NOTRUN -> [SKIP][78] ([i915#5190] / [i915#8428]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@gem_render_copy@linear-to-vebox-yf-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#5190] / [i915#8428]) +4 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-5/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#8428]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-6/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2-9: NOTRUN -> [SKIP][81] ([i915#4079]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_pwrite: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4079]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-18/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop: - shard-dg2-9: NOTRUN -> [SKIP][83] ([i915#4885]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@dmabuf-sync: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#3297]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-17/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#3297]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@gem_userptr_blits@dmabuf-unsync.html - shard-tglu: NOTRUN -> [SKIP][86] ([i915#3297]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-3/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@unsync-unmap: - shard-dg2-9: NOTRUN -> [SKIP][87] ([i915#3297]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_workarounds@suspend-resume-context: - shard-glk10: NOTRUN -> [INCOMPLETE][88] ([i915#13356]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-glk10/igt@gem_workarounds@suspend-resume-context.html * igt@gen7_exec_parse@bitmasks: - shard-dg2-9: NOTRUN -> [SKIP][89] +4 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@allowed-single: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#14544] / [i915#2527]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@batch-zero-length: - shard-dg2-9: NOTRUN -> [SKIP][91] ([i915#2856]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-start-cmd: - shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#2527] / [i915#2856]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-out: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#2856]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-10/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#2527]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@valid-registers: - shard-tglu: NOTRUN -> [SKIP][95] ([i915#2527] / [i915#2856]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-4/igt@gen9_exec_parse@valid-registers.html * igt@i915_drm_fdinfo@all-busy-idle-check-all: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#14123]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-8/igt@i915_drm_fdinfo@all-busy-idle-check-all.html * igt@i915_drm_fdinfo@busy-hang@vecs0: - shard-dg2-9: NOTRUN -> [SKIP][97] ([i915#14073]) +7 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@i915_drm_fdinfo@busy-hang@vecs0.html * igt@i915_drm_fdinfo@virtual-busy: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#14118]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-8/igt@i915_drm_fdinfo@virtual-busy.html * igt@i915_module_load@resize-bar: - shard-dg2-9: NOTRUN -> [DMESG-WARN][99] ([i915#14545]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: NOTRUN -> [INCOMPLETE][100] ([i915#13356] / [i915#13820]) +1 other test incomplete [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#14498]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rpm@gem-execbuf: - shard-rkl: [PASS][102] -> [SKIP][103] ([i915#13328]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@i915_pm_rpm@gem-execbuf.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@i915_pm_rpm@gem-execbuf.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-dg2: NOTRUN -> [SKIP][104] +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-3/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html - shard-rkl: NOTRUN -> [SKIP][105] ([i915#13328]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-5/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@system-suspend-devices: - shard-snb: NOTRUN -> [SKIP][106] +22 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-snb7/igt@i915_pm_rpm@system-suspend-devices.html * igt@i915_pm_rps@thresholds-park: - shard-dg2-9: NOTRUN -> [SKIP][107] ([i915#11681]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@i915_pm_rps@thresholds-park.html * igt@i915_pm_sseu@full-enable: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#4387]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-5/igt@i915_pm_sseu@full-enable.html - shard-tglu: NOTRUN -> [SKIP][109] ([i915#4387]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-7/igt@i915_pm_sseu@full-enable.html * igt@i915_power@sanity: - shard-mtlp: [PASS][110] -> [SKIP][111] ([i915#7984]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-mtlp-2/igt@i915_power@sanity.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-5/igt@i915_power@sanity.html * igt@i915_query@test-query-geometry-subslices: - shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#5723]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-dg2: [PASS][113] -> [DMESG-WARN][114] ([i915#14545]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-dg2-3/igt@i915_suspend@basic-s2idle-without-i915.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-1/igt@i915_suspend@basic-s2idle-without-i915.html - shard-dg1: NOTRUN -> [DMESG-WARN][115] ([i915#14545]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-13/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg2-9: NOTRUN -> [SKIP][116] ([i915#4212]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#12454] / [i915#12712]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-glk10: NOTRUN -> [INCOMPLETE][118] ([i915#12761]) +1 other test incomplete [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-glk10/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2-9: NOTRUN -> [SKIP][119] ([i915#9531]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-rkl: NOTRUN -> [SKIP][120] ([i915#9531]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu: NOTRUN -> [SKIP][121] ([i915#1769] / [i915#3555]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#1769] / [i915#3555]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#5286]) +5 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-tglu-1: NOTRUN -> [SKIP][124] ([i915#5286]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][125] ([i915#5286]) +4 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-10/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [FAIL][126] ([i915#5138]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-0: - shard-mtlp: [PASS][127] -> [FAIL][128] ([i915#5138]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-mtlp-6/igt@kms_big_fb@linear-64bpp-rotate-0.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-5/igt@kms_big_fb@linear-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#3638]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][130] +6 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-270: - shard-dg2-9: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5190]) +6 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#6187]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-5/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-tglu-1: NOTRUN -> [SKIP][133] +32 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2-9: NOTRUN -> [SKIP][134] ([i915#5190]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][135] +12 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#4538] / [i915#5190]) +8 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#6095]) +161 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-17/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-b-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][138] ([i915#10307] / [i915#6095]) +44 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#12313]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#12313]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-2/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#6095]) +44 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#6095]) +39 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#6095]) +14 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-dg2-9: NOTRUN -> [SKIP][145] ([i915#6095]) +9 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#6095]) +19 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#14098] / [i915#6095]) +50 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][148] ([i915#12313]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#6095]) +64 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#10307] / [i915#6095]) +88 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-8/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-3.html * igt@kms_cdclk@mode-transition: - shard-glk: NOTRUN -> [SKIP][151] +158 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-glk6/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#3742]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-16/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#13781]) +4 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-6/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#13781]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-4/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][155] ([i915#13783]) +4 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-6/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#7828]) +5 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-8/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode: - shard-dg2-9: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +3 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-tglu-1: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +2 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-6/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +5 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@content-type-change: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#6944] / [i915#9424]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-9/igt@kms_content_protection@content-type-change.html - shard-dg2-9: NOTRUN -> [SKIP][163] ([i915#9424]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2-9: NOTRUN -> [SKIP][164] ([i915#3299]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#3116] / [i915#3299]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-0: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#9424]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-4/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#6944] / [i915#9424]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@srm: - shard-dg2-9: NOTRUN -> [SKIP][168] ([i915#7118]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#3555]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-2/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#13049]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-14/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-256x256: - shard-rkl: [PASS][172] -> [SKIP][173] ([i915#14544]) +43 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-256x256.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-256x256.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#3555]) +3 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#13049]) +2 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [DMESG-WARN][176] ([i915#12917] / [i915#12964]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#3555]) +2 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#13049]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-10/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2-9: NOTRUN -> [SKIP][179] ([i915#3555]) +2 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-rkl: NOTRUN -> [FAIL][180] ([i915#13566]) +1 other test fail [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html - shard-tglu: NOTRUN -> [FAIL][181] ([i915#13566]) +1 other test fail [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#3555]) +3 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-3/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#13049]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-dg2-9: NOTRUN -> [SKIP][184] ([i915#13046] / [i915#5354]) +2 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#4103] / [i915#4213]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions: - shard-rkl: [PASS][186] -> [FAIL][187] ([i915#15077]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-5/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-4/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#13046] / [i915#5354]) +4 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-8/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-rkl: NOTRUN -> [FAIL][189] ([i915#14001] / [i915#2346]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#9067]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-9: NOTRUN -> [SKIP][191] ([i915#4103] / [i915#4213]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#4103]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#9833]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-rkl: NOTRUN -> [SKIP][194] ([i915#9723]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#13691]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#3804]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html - shard-tglu: NOTRUN -> [SKIP][197] ([i915#1769] / [i915#3555] / [i915#3804]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][198] ([i915#3804]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#3804]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#13749]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-6/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_link_training@uhbr-mst: - shard-tglu: NOTRUN -> [SKIP][201] ([i915#13748]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-6/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#13748]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-5/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#13707]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html - shard-dg2-9: NOTRUN -> [SKIP][204] ([i915#13707]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#8812]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-10/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2-9: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#3840]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][207] ([i915#9878]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-glk9/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#3469]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-13/igt@kms_fbcon_fbt@psr-suspend.html - shard-dg2-9: NOTRUN -> [SKIP][209] ([i915#3469]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-2x: - shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#1839]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-3x: - shard-dg2-9: NOTRUN -> [SKIP][211] ([i915#1839]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#1839]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-13/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr2: - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#658]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][214] ([i915#14544] / [i915#658]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#9934]) +2 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-8/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible: - shard-dg2-9: NOTRUN -> [SKIP][216] ([i915#9934]) +4 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][217] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-glk5/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][218] ([i915#12745] / [i915#4839]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][219] ([i915#4839]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-glk1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][220] ([i915#12314] / [i915#4839] / [i915#6113]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-glk5/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-wf_vblank: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#9934]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-18/igt@kms_flip@2x-flip-vs-wf_vblank.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#14544] / [i915#9934]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu: NOTRUN -> [SKIP][223] ([i915#3637] / [i915#9934]) +3 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#3637] / [i915#9934]) +3 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#3637] / [i915#9934]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-8/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#9934]) +3 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#14544] / [i915#3637]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2-9: NOTRUN -> [SKIP][228] ([i915#8381]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@flip-vs-wf_vblank-interruptible: - shard-rkl: [PASS][229] -> [SKIP][230] ([i915#14544] / [i915#3637]) +2 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@kms_flip@flip-vs-wf_vblank-interruptible.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_flip@flip-vs-wf_vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#2672] / [i915#3555]) +4 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-dg2-9: NOTRUN -> [SKIP][232] ([i915#2672] / [i915#3555]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#2672] / [i915#3555]) +2 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#2587] / [i915#2672] / [i915#3555]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-tglu: NOTRUN -> [SKIP][235] ([i915#2587] / [i915#2672] / [i915#3555]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#2672] / [i915#3555] / [i915#8813]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-dg2-9: NOTRUN -> [SKIP][237] ([i915#2672] / [i915#3555] / [i915#5190]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/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-default-mode: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#2672] / [i915#8813]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][239] ([i915#2587] / [i915#2672]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][240] ([i915#2587] / [i915#2672]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html - shard-dg2-9: NOTRUN -> [SKIP][241] ([i915#2672]) +2 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#2587] / [i915#2672] / [i915#3555]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#2672] / [i915#3555] / [i915#5190]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#2672]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#14544] / [i915#3555]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#2672] / [i915#3555]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][247] ([i915#2587] / [i915#2672]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling: - shard-rkl: [PASS][248] -> [SKIP][249] ([i915#14544] / [i915#3555]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#2672] / [i915#3555]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#2672]) +7 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#15104]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#14544] / [i915#1849] / [i915#5354]) +14 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-dg2-9: NOTRUN -> [SKIP][254] ([i915#8708]) +10 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][255] +6 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#5354]) +14 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt: - shard-tglu: NOTRUN -> [SKIP][257] +34 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary: - shard-rkl: [PASS][258] -> [SKIP][259] ([i915#14544] / [i915#1849] / [i915#5354]) +7 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - shard-dg2: [PASS][260] -> [FAIL][261] ([i915#6880]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt: - shard-dg2-9: NOTRUN -> [SKIP][262] ([i915#15102]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][263] ([i915#15102]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#10433] / [i915#15102] / [i915#3458]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#8708]) +4 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-glk10: NOTRUN -> [SKIP][266] +102 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#8708]) +8 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen: - shard-dg2-9: NOTRUN -> [SKIP][268] ([i915#5354]) +16 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#8708]) +2 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#15102]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2-9: NOTRUN -> [SKIP][271] ([i915#15102] / [i915#3458]) +6 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][272] ([i915#15102]) +11 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#15102] / [i915#3023]) +7 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][274] ([i915#1825]) +18 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#1825]) +7 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#15102] / [i915#3458]) +9 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][277] ([i915#15102]) +12 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html * igt@kms_hdr@bpc-switch: - shard-dg2-9: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#8228]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#12713]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-6/igt@kms_hdr@brightness-with-hdr.html - shard-rkl: NOTRUN -> [SKIP][280] ([i915#12713]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-5/igt@kms_hdr@brightness-with-hdr.html * igt@kms_invalid_mode@uint-max-clock: - shard-rkl: [PASS][281] -> [SKIP][282] ([i915#14544] / [i915#3555] / [i915#8826]) +2 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-7/igt@kms_invalid_mode@uint-max-clock.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_invalid_mode@uint-max-clock.html * igt@kms_joiner@basic-max-non-joiner: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#13688]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-10/igt@kms_joiner@basic-max-non-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#13688]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][285] ([i915#12339]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-7/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2-9: NOTRUN -> [SKIP][286] ([i915#12388]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#12394]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][288] ([i915#12339]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-dg2-9: NOTRUN -> [SKIP][289] ([i915#13522]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_pipe_stress@stress-xrgb8888-xtiled: - shard-rkl: [PASS][290] -> [DMESG-WARN][291] ([i915#12964]) +39 other tests dmesg-warn [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-7/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-3/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-dg2-9: NOTRUN -> [SKIP][292] ([i915#14712]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-dg1: NOTRUN -> [SKIP][293] ([i915#14712]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-14/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-source-clamping: - shard-rkl: [PASS][294] -> [SKIP][295] ([i915#14544] / [i915#8825]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-2/igt@kms_plane@pixel-format-source-clamping.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_plane@pixel-format-source-clamping.html * igt@kms_plane_cursor@viewport@pipe-b-hdmi-a-2-size-64: - shard-rkl: [PASS][296] -> [DMESG-WARN][297] ([i915#12917] / [i915#12964]) +3 other tests dmesg-warn [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@kms_plane_cursor@viewport@pipe-b-hdmi-a-2-size-64.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-3/igt@kms_plane_cursor@viewport@pipe-b-hdmi-a-2-size-64.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][298] ([i915#10226] / [i915#11614] / [i915#3582]) +2 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-4/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-none@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][299] ([i915#11614] / [i915#3582]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-4/igt@kms_plane_lowres@tiling-none@pipe-d-edp-1.html * igt@kms_plane_multiple@2x-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][300] ([i915#13958]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-none: - shard-dg1: NOTRUN -> [SKIP][301] ([i915#13958]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-19/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@2x-tiling-x: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#13958]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-5/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][303] ([i915#14259]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-4/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#13046] / [i915#5354] / [i915#9423]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][305] ([i915#6953] / [i915#9423]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-5/igt@kms_plane_scaling@intel-max-src-size.html - shard-rkl: NOTRUN -> [SKIP][306] ([i915#14544] / [i915#6953] / [i915#8152]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-tglu: NOTRUN -> [SKIP][307] ([i915#12247]) +4 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#12247]) +2 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format: - shard-rkl: [PASS][309] -> [SKIP][310] ([i915#14544] / [i915#8152]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b: - shard-rkl: [PASS][311] -> [SKIP][312] ([i915#12247] / [i915#14544] / [i915#8152]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25: - shard-mtlp: NOTRUN -> [SKIP][313] ([i915#6953]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b: - shard-mtlp: NOTRUN -> [SKIP][314] ([i915#12247]) +7 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#12247] / [i915#14544]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b: - shard-rkl: NOTRUN -> [SKIP][316] ([i915#12247] / [i915#14544] / [i915#8152]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75: - shard-rkl: [PASS][317] -> [SKIP][318] ([i915#12247] / [i915#14544] / [i915#3555] / [i915#6953] / [i915#8152]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a: - shard-rkl: [PASS][319] -> [SKIP][320] ([i915#12247] / [i915#14544]) +2 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a.html * igt@kms_pm_backlight@bad-brightness: - shard-tglu-1: NOTRUN -> [SKIP][321] ([i915#9812]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade-with-suspend: - shard-tglu: NOTRUN -> [SKIP][322] ([i915#9812]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-6/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-rkl: [PASS][323] -> [SKIP][324] ([i915#13441] / [i915#14544]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-7/igt@kms_pm_dc@dc5-dpms-negative.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_dc@dc5-retention-flops: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#3828]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-4/igt@kms_pm_dc@dc5-retention-flops.html - shard-tglu: NOTRUN -> [SKIP][326] ([i915#3828]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-9/igt@kms_pm_dc@dc5-retention-flops.html - shard-dg2-9: NOTRUN -> [SKIP][327] ([i915#3828]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: NOTRUN -> [FAIL][328] ([i915#9295]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg1: NOTRUN -> [SKIP][329] ([i915#9340]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-15/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][330] ([i915#15073]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#15073]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][332] ([i915#15073]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu-1: NOTRUN -> [SKIP][333] ([i915#15073]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@system-suspend-idle: - shard-dg2: [PASS][334] -> [INCOMPLETE][335] ([i915#14419]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-dg2-5/igt@kms_pm_rpm@system-suspend-idle.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-4/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_prime@basic-crc-hybrid: - shard-mtlp: NOTRUN -> [SKIP][336] ([i915#6524]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-2/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#6524] / [i915#6805]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-3/igt@kms_prime@basic-crc-vgem.html - shard-rkl: [PASS][338] -> [SKIP][339] ([i915#14544] / [i915#6524]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-2/igt@kms_prime@basic-crc-vgem.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_prime@basic-crc-vgem.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][340] ([i915#6524]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-14/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-tglu: NOTRUN -> [SKIP][341] ([i915#6524]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-8/igt@kms_prime@d3hot.html * igt@kms_properties@crtc-properties-legacy: - shard-rkl: [PASS][342] -> [SKIP][343] ([i915#11521] / [i915#14544]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-2/igt@kms_properties@crtc-properties-legacy.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_properties@crtc-properties-legacy.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-dg1: NOTRUN -> [SKIP][344] ([i915#11520]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-13/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-snb: NOTRUN -> [SKIP][345] ([i915#11520]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-snb6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-glk: NOTRUN -> [SKIP][346] ([i915#11520]) +6 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-glk6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][347] ([i915#11520]) +5 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-8/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-9: NOTRUN -> [SKIP][348] ([i915#11520]) +5 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-mtlp: NOTRUN -> [SKIP][349] ([i915#12316]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][350] ([i915#11520]) +4 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html - shard-tglu-1: NOTRUN -> [SKIP][351] ([i915#11520]) +4 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][352] ([i915#11520]) +2 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-10/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area: - shard-glk10: NOTRUN -> [SKIP][353] ([i915#11520]) +1 other test skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-glk10/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-rkl: NOTRUN -> [SKIP][354] ([i915#11520] / [i915#14544]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][355] ([i915#9683]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-10/igt@kms_psr2_su@page_flip-p010.html - shard-rkl: NOTRUN -> [SKIP][356] ([i915#14544] / [i915#9683]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][357] ([i915#9683]) +1 other test skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-primary-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][358] ([i915#1072] / [i915#9732]) +15 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_psr@fbc-pr-primary-mmap-gtt.html * igt@kms_psr@fbc-psr-cursor-plane-move: - shard-rkl: NOTRUN -> [SKIP][359] ([i915#1072] / [i915#9732]) +11 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@kms_psr@fbc-psr-cursor-plane-move.html * igt@kms_psr@fbc-psr2-primary-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][360] ([i915#9688]) +8 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-8/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html * igt@kms_psr@pr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][361] ([i915#1072] / [i915#9732]) +15 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-3/igt@kms_psr@pr-primary-mmap-gtt.html * igt@kms_psr@psr-cursor-plane-onoff: - shard-tglu-1: NOTRUN -> [SKIP][362] ([i915#9732]) +8 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_psr@psr-cursor-plane-onoff.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][363] ([i915#9732]) +12 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-2/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][364] ([i915#1072] / [i915#9732]) +4 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-19/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu-1: NOTRUN -> [SKIP][365] ([i915#9685]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-rkl: NOTRUN -> [SKIP][366] ([i915#14544] / [i915#9685]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][367] ([i915#5289]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][368] ([i915#5289]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][369] ([i915#5289]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg2: NOTRUN -> [SKIP][370] ([i915#5190]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2-9: NOTRUN -> [SKIP][371] ([i915#12755] / [i915#5190]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: NOTRUN -> [SKIP][372] ([i915#12755]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-4/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_rgb888: - shard-glk: NOTRUN -> [FAIL][373] ([i915#15119]) +17 other tests fail [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-glk6/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_rgb888.html * igt@kms_selftest@drm_framebuffer: - shard-tglu-1: NOTRUN -> [ABORT][374] ([i915#13179]) +1 other test abort [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_check_src_coords: - shard-tglu-1: NOTRUN -> [FAIL][375] ([i915#15119]) +1 other test fail [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_check_src_coords.html * igt@kms_selftest@drm_plane_helper@drm_test_check_invalid_plane_state: - shard-dg2: NOTRUN -> [FAIL][376] ([i915#15119]) +2 other tests fail [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-3/igt@kms_selftest@drm_plane_helper@drm_test_check_invalid_plane_state.html * igt@kms_tiled_display@basic-test-pattern: - shard-rkl: NOTRUN -> [SKIP][377] ([i915#8623]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][378] ([i915#14544]) +18 other tests skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-tglu-1: NOTRUN -> [SKIP][379] ([i915#8623]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@query-busy: - shard-dg1: [PASS][380] -> [DMESG-WARN][381] ([i915#4423]) +1 other test dmesg-warn [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-dg1-15/igt@kms_vblank@query-busy.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-18/igt@kms_vblank@query-busy.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][382] ([i915#9906]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][383] ([i915#9906]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2-9: NOTRUN -> [SKIP][384] ([i915#9906]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-9/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-invalid-parameters: - shard-glk: NOTRUN -> [SKIP][385] ([i915#2437]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-glk6/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][386] ([i915#2434]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-4/igt@perf@mi-rpc.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][387] ([i915#9100]) +1 other test fail [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-4/igt@perf@non-zero-reason@0-rcs0.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][388] ([i915#2433]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-idle: - shard-mtlp: NOTRUN -> [FAIL][389] ([i915#4349]) +1 other test fail [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-2/igt@perf_pmu@busy-idle.html * igt@perf_pmu@module-unload: - shard-glk: NOTRUN -> [FAIL][390] ([i915#14433]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-glk5/igt@perf_pmu@module-unload.html - shard-rkl: NOTRUN -> [FAIL][391] ([i915#14433]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-rkl: NOTRUN -> [SKIP][392] ([i915#8516]) +1 other test skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][393] ([i915#13356] / [i915#14242]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-glk1/igt@perf_pmu@rc6-suspend.html * igt@perf_pmu@render-node-busy-idle: - shard-mtlp: [PASS][394] -> [FAIL][395] ([i915#4349]) +7 other tests fail [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-mtlp-2/igt@perf_pmu@render-node-busy-idle.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-5/igt@perf_pmu@render-node-busy-idle.html * igt@perf_pmu@render-node-busy-idle@vcs1: - shard-dg2: [PASS][396] -> [FAIL][397] ([i915#4349]) +5 other tests fail [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-dg2-6/igt@perf_pmu@render-node-busy-idle@vcs1.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-3/igt@perf_pmu@render-node-busy-idle@vcs1.html - shard-dg1: [PASS][398] -> [FAIL][399] ([i915#4349]) +3 other tests fail [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-dg1-18/igt@perf_pmu@render-node-busy-idle@vcs1.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-14/igt@perf_pmu@render-node-busy-idle@vcs1.html * igt@prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][400] ([i915#3708] / [i915#4077]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-8/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][401] ([i915#3291] / [i915#3708]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@prime_vgem@basic-fence-read.html * igt@sriov_basic@bind-unbind-vf@vf-1: - shard-tglu-1: NOTRUN -> [FAIL][402] ([i915#12910]) +9 other tests fail [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-1/igt@sriov_basic@bind-unbind-vf@vf-1.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-tglu: NOTRUN -> [FAIL][403] ([i915#12910]) +9 other tests fail [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-3/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg2: NOTRUN -> [SKIP][404] ([i915#9917]) +1 other test skip [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-7/igt@sriov_basic@enable-vfs-bind-unbind-each.html #### Possible fixes #### * igt@fbdev@unaligned-read: - shard-rkl: [SKIP][405] ([i915#14544] / [i915#2582]) -> [PASS][406] +1 other test pass [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@fbdev@unaligned-read.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@fbdev@unaligned-read.html * igt@gem_eio@kms: - shard-tglu: [DMESG-WARN][407] ([i915#13363]) -> [PASS][408] [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-tglu-8/igt@gem_eio@kms.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-9/igt@gem_eio@kms.html * igt@gem_exec_suspend@basic-s4-devices: - shard-rkl: [FAIL][409] ([i915#15136]) -> [PASS][410] +1 other test pass [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@gem_exec_suspend@basic-s4-devices.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@gem_exec_suspend@basic-s4-devices.html - shard-tglu: [FAIL][411] ([i915#15136]) -> [PASS][412] +1 other test pass [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-tglu-8/igt@gem_exec_suspend@basic-s4-devices.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-2/igt@gem_exec_suspend@basic-s4-devices.html - shard-mtlp: [FAIL][413] ([i915#15136]) -> [PASS][414] +1 other test pass [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-mtlp-5/igt@gem_exec_suspend@basic-s4-devices.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-6/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_workarounds@suspend-resume-fd: - shard-rkl: [ABORT][415] ([i915#15152]) -> [PASS][416] [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-4/igt@gem_workarounds@suspend-resume-fd.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@gem_workarounds@suspend-resume-fd.html * igt@i915_hangman@gt-error-state-capture@rcs0: - shard-rkl: [DMESG-WARN][417] ([i915#12964]) -> [PASS][418] +15 other tests pass [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-7/igt@i915_hangman@gt-error-state-capture@rcs0.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@i915_hangman@gt-error-state-capture@rcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [DMESG-WARN][419] ([i915#13447]) -> [PASS][420] [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_selftest@live: - shard-dg1: [DMESG-WARN][421] ([i915#14545]) -> [PASS][422] [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-dg1-12/igt@i915_selftest@live.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-17/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [DMESG-FAIL][423] ([i915#12061]) -> [PASS][424] +1 other test pass [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-mtlp-3/igt@i915_selftest@live@workarounds.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-8/igt@i915_selftest@live@workarounds.html * igt@i915_suspend@forcewake: - shard-rkl: [INCOMPLETE][425] ([i915#4817]) -> [PASS][426] +1 other test pass [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-3/igt@i915_suspend@forcewake.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@i915_suspend@forcewake.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][427] ([i915#5138]) -> [PASS][428] [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs: - shard-dg1: [DMESG-WARN][429] ([i915#4423]) -> [PASS][430] +2 other tests pass [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-dg1-17/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-19/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html * igt@kms_color@degamma: - shard-rkl: [SKIP][431] ([i915#12655] / [i915#14544]) -> [PASS][432] +2 other tests pass [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_color@degamma.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@kms_color@degamma.html * igt@kms_cursor_crc@cursor-offscreen-256x256: - shard-rkl: [DMESG-WARN][433] ([i915#12917] / [i915#12964]) -> [PASS][434] [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-256x256.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@kms_cursor_crc@cursor-offscreen-256x256.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [FAIL][435] ([i915#13566]) -> [PASS][436] +3 other tests pass [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [FAIL][437] ([i915#13566]) -> [PASS][438] +5 other tests pass [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-256x85.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - shard-rkl: [SKIP][439] ([i915#11190] / [i915#14544]) -> [PASS][440] +3 other tests pass [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-rkl: [INCOMPLETE][441] ([i915#9878]) -> [PASS][442] [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-4/igt@kms_fbcon_fbt@fbc-suspend.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-snb: [TIMEOUT][443] ([i915#14033] / [i915#14350]) -> [PASS][444] [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-snb6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-snb1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1: - shard-snb: [TIMEOUT][445] ([i915#14033]) -> [PASS][446] [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-snb6/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-snb1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@basic-flip-vs-wf_vblank: - shard-rkl: [SKIP][447] ([i915#14544] / [i915#3637]) -> [PASS][448] +4 other tests pass [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_flip@basic-flip-vs-wf_vblank.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-3/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-rkl: [SKIP][449] ([i915#14544] / [i915#3555]) -> [PASS][450] +3 other tests pass [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt: - shard-dg2: [FAIL][451] -> [PASS][452] [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: - shard-rkl: [SKIP][453] ([i915#14544] / [i915#1849] / [i915#5354]) -> [PASS][454] +12 other tests pass [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html * igt@kms_invalid_mode@bad-hsync-end: - shard-rkl: [SKIP][455] ([i915#14544] / [i915#3555] / [i915#8826]) -> [PASS][456] [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_invalid_mode@bad-hsync-end.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@kms_invalid_mode@bad-hsync-end.html * igt@kms_lease@lease-invalid-plane: - shard-rkl: [SKIP][457] ([i915#14544]) -> [PASS][458] +52 other tests pass [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_lease@lease-invalid-plane.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@kms_lease@lease-invalid-plane.html * igt@kms_plane@plane-position-hole-dpms: - shard-rkl: [SKIP][459] ([i915#14544] / [i915#8825]) -> [PASS][460] +1 other test pass [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_plane@plane-position-hole-dpms.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-3/igt@kms_plane@plane-position-hole-dpms.html * igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant: - shard-rkl: [SKIP][461] ([i915#14544] / [i915#7294]) -> [PASS][462] [461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@kms_plane_alpha_blend@coverage-vs-premult-vs-constant.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25: - shard-rkl: [SKIP][463] ([i915#14544] / [i915#6953] / [i915#8152]) -> [PASS][464] [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-scaler-unity-scaling: - shard-rkl: [SKIP][465] ([i915#14544] / [i915#3555] / [i915#8152]) -> [PASS][466] [465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_plane_scaling@planes-scaler-unity-scaling.html [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-4/igt@kms_plane_scaling@planes-scaler-unity-scaling.html * igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a: - shard-rkl: [SKIP][467] ([i915#12247] / [i915#14544]) -> [PASS][468] +2 other tests pass [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a.html [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-4/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a.html * igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-b: - shard-rkl: [SKIP][469] ([i915#12247] / [i915#14544] / [i915#8152]) -> [PASS][470] +3 other tests pass [469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-b.html [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-4/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-b.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5: - shard-rkl: [SKIP][471] ([i915#12247] / [i915#14544] / [i915#3555] / [i915#6953] / [i915#8152]) -> [PASS][472] [471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: [SKIP][473] ([i915#12916]) -> [PASS][474] [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][475] ([i915#14544] / [i915#15073]) -> [PASS][476] [475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-rkl: [SKIP][477] ([i915#15073]) -> [PASS][478] [477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-2/igt@kms_pm_rpm@dpms-non-lpsp.html [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-5/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [SKIP][479] ([i915#15073]) -> [PASS][480] [479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-rkl: [INCOMPLETE][481] ([i915#14419]) -> [PASS][482] [481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-3/igt@kms_pm_rpm@system-suspend-modeset.html [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_vrr@negative-basic: - shard-mtlp: [FAIL][483] ([i915#10393]) -> [PASS][484] +1 other test pass [483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-mtlp-8/igt@kms_vrr@negative-basic.html [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-mtlp-4/igt@kms_vrr@negative-basic.html * igt@perf@polling-small-buf: - shard-rkl: [FAIL][485] ([i915#14550]) -> [PASS][486] [485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@perf@polling-small-buf.html [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@perf@polling-small-buf.html * igt@prime_vgem@basic-fence-flip: - shard-rkl: [SKIP][487] ([i915#14544] / [i915#3708]) -> [PASS][488] [487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@prime_vgem@basic-fence-flip.html [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@prime_vgem@basic-fence-flip.html #### Warnings #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: [SKIP][489] ([i915#14544] / [i915#8411]) -> [SKIP][490] ([i915#8411]) [489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@api_intel_bb@blit-reloc-purge-cache.html [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-3/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-rkl: [SKIP][491] ([i915#8411]) -> [SKIP][492] ([i915#14544] / [i915#8411]) [491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@api_intel_bb@object-reloc-purge-cache.html [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: [SKIP][493] ([i915#14544] / [i915#3281]) -> [SKIP][494] ([i915#3281]) +12 other tests skip [493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@gem_bad_reloc@negative-reloc-lut.html [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_basic@multigpu-create-close: - shard-rkl: [SKIP][495] ([i915#7697]) -> [SKIP][496] ([i915#14544] / [i915#7697]) [495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-2/igt@gem_basic@multigpu-create-close.html [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: [SKIP][497] ([i915#3555] / [i915#9323]) -> [SKIP][498] ([i915#14544] / [i915#3555] / [i915#9323]) [497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-5/igt@gem_ccs@block-copy-compressed.html [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html * igt@gem_ctx_sseu@invalid-sseu: - shard-rkl: [SKIP][499] ([i915#14544] / [i915#280]) -> [SKIP][500] ([i915#280]) [499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@gem_ctx_sseu@invalid-sseu.html [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-4/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@kms: - shard-rkl: [DMESG-WARN][501] ([i915#13363]) -> [SKIP][502] ([i915#14544]) [501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@gem_eio@kms.html [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@gem_eio@kms.html * igt@gem_exec_balancer@parallel: - shard-rkl: [SKIP][503] ([i915#14544] / [i915#4525]) -> [SKIP][504] ([i915#4525]) +3 other tests skip [503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@gem_exec_balancer@parallel.html [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-3/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: [SKIP][505] ([i915#4525]) -> [SKIP][506] ([i915#14544] / [i915#4525]) [505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-5/igt@gem_exec_balancer@parallel-keep-submit-fence.html [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-rkl: [SKIP][507] ([i915#3281]) -> [SKIP][508] ([i915#14544] / [i915#3281]) +6 other tests skip [507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: [SKIP][509] ([i915#4613] / [i915#7582]) -> [SKIP][510] ([i915#14544] / [i915#4613] / [i915#7582]) [509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: [SKIP][511] ([i915#14544] / [i915#4613]) -> [SKIP][512] ([i915#4613]) +2 other tests skip [511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@verify-ccs: - shard-rkl: [SKIP][513] ([i915#4613]) -> [SKIP][514] ([i915#14544] / [i915#4613]) +1 other test skip [513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-5/igt@gem_lmem_swapping@verify-ccs.html [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_media_vme: - shard-rkl: [SKIP][515] ([i915#14544] / [i915#284]) -> [SKIP][516] ([i915#284]) [515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@gem_media_vme.html [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@gem_media_vme.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-rkl: [SKIP][517] ([i915#14544] / [i915#3282]) -> [SKIP][518] ([i915#3282]) +3 other tests skip [517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-uncached.html [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads-snoop: - shard-rkl: [SKIP][519] ([i915#3282]) -> [SKIP][520] ([i915#14544] / [i915#3282]) +3 other tests skip [519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html * igt@gem_pxp@create-regular-context-2: - shard-rkl: [TIMEOUT][521] ([i915#12917] / [i915#12964]) -> [SKIP][522] ([i915#4270]) [521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@gem_pxp@create-regular-context-2.html [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@gem_pxp@create-regular-context-2.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: [DMESG-FAIL][523] ([i915#12964]) -> [FAIL][524] ([i915#15138]) [523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-7/igt@gem_pxp@hw-rejects-pxp-buffer.html [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-rkl: [TIMEOUT][525] ([i915#12917] / [i915#12964]) -> [SKIP][526] ([i915#13717]) [525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-context.html [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: [SKIP][527] ([i915#3297]) -> [SKIP][528] ([i915#14544] / [i915#3297]) [527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-2/igt@gem_userptr_blits@coherency-sync.html [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: [SKIP][529] ([i915#3282] / [i915#3297]) -> [SKIP][530] ([i915#14544] / [i915#3282] / [i915#3297]) [529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@gem_userptr_blits@forbidden-operations.html [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: [SKIP][531] ([i915#14544] / [i915#2527]) -> [SKIP][532] ([i915#2527]) +1 other test skip [531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@gen9_exec_parse@bb-oversize.html [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-4/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@shadow-peek: - shard-rkl: [SKIP][533] ([i915#2527]) -> [SKIP][534] ([i915#14544] / [i915#2527]) +3 other tests skip [533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-5/igt@gen9_exec_parse@shadow-peek.html [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@gen9_exec_parse@shadow-peek.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: [SKIP][535] ([i915#14544] / [i915#8399]) -> [SKIP][536] ([i915#8399]) [535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-4/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: [SKIP][537] ([i915#8399]) -> [SKIP][538] ([i915#14544] / [i915#8399]) [537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-5/igt@i915_pm_freq_api@freq-reset-multiple.html [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@intel_hwmon@hwmon-read: - shard-rkl: [SKIP][539] ([i915#14544] / [i915#7707]) -> [SKIP][540] ([i915#7707]) [539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@intel_hwmon@hwmon-read.html [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-4/igt@intel_hwmon@hwmon-read.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: [SKIP][541] ([i915#5286]) -> [SKIP][542] ([i915#14544]) +2 other tests skip [541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@kms_big_fb@4-tiled-addfb.html [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: [SKIP][543] ([i915#14544]) -> [SKIP][544] ([i915#5286]) +6 other tests skip [543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: [SKIP][545] ([i915#14544]) -> [SKIP][546] ([i915#3638]) +1 other test skip [545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-3/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][547] ([i915#3638]) -> [SKIP][548] ([i915#14544]) +3 other tests skip [547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][549] ([i915#14098] / [i915#6095]) -> [SKIP][550] ([i915#6095]) +2 other tests skip [549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-3/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs: - shard-rkl: [SKIP][551] ([i915#14544]) -> [SKIP][552] ([i915#14098] / [i915#6095]) +11 other tests skip [551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-rkl: [SKIP][553] ([i915#14544]) -> [SKIP][554] ([i915#12313]) +3 other tests skip [553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-3/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][555] ([i915#6095]) -> [SKIP][556] ([i915#14098] / [i915#6095]) +3 other tests skip [555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-rkl: [SKIP][557] ([i915#14544]) -> [SKIP][558] ([i915#12805]) +1 other test skip [557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-rkl: [SKIP][559] ([i915#14098] / [i915#6095]) -> [SKIP][560] ([i915#14544]) +14 other tests skip [559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_cdclk@mode-transition: - shard-rkl: [SKIP][561] ([i915#14544] / [i915#3742]) -> [SKIP][562] ([i915#3742]) [561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_cdclk@mode-transition.html [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-rkl: [SKIP][563] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][564] ([i915#11151] / [i915#7828]) +6 other tests skip [563]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-read.html [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: [SKIP][565] ([i915#11151] / [i915#7828]) -> [SKIP][566] ([i915#11151] / [i915#14544] / [i915#7828]) +7 other tests skip [565]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: [SKIP][567] ([i915#14544]) -> [SKIP][568] ([i915#3116]) [567]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-1.html [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: [SKIP][569] ([i915#3116]) -> [SKIP][570] ([i915#14544]) [569]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-4/igt@kms_content_protection@dp-mst-type-1.html [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][571] ([i915#9424]) -> [SKIP][572] ([i915#9433]) [571]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-dg1-19/igt@kms_content_protection@mei-interface.html [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-12/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-rkl: [SKIP][573] ([i915#14544]) -> [SKIP][574] ([i915#7118]) [573]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_content_protection@srm.html [574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-4/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-rkl: [SKIP][575] ([i915#14544]) -> [SKIP][576] ([i915#7118] / [i915#9424]) [575]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_content_protection@uevent.html [576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-rkl: [FAIL][577] ([i915#13566]) -> [SKIP][578] ([i915#14544]) [577]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-256x85.html [578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: [SKIP][579] ([i915#13049]) -> [SKIP][580] ([i915#14544]) +1 other test skip [579]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html [580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-64x21: - shard-rkl: [FAIL][581] ([i915#13566]) -> [DMESG-WARN][582] ([i915#12917] / [i915#12964]) [581]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-64x21.html [582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-64x21.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: [SKIP][583] ([i915#14544]) -> [SKIP][584] ([i915#13049]) [583]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x512.html [584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: [SKIP][585] ([i915#3555]) -> [SKIP][586] ([i915#14544]) +3 other tests skip [585]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html [586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_edge_walk@128x128-top-bottom: - shard-rkl: [SKIP][587] ([i915#14544]) -> [DMESG-WARN][588] ([i915#12964]) +2 other tests dmesg-warn [587]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_cursor_edge_walk@128x128-top-bottom.html [588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@kms_cursor_edge_walk@128x128-top-bottom.html * igt@kms_cursor_edge_walk@64x64-top-bottom: - shard-rkl: [DMESG-WARN][589] ([i915#12964]) -> [SKIP][590] ([i915#14544]) [589]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-7/igt@kms_cursor_edge_walk@64x64-top-bottom.html [590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_cursor_edge_walk@64x64-top-bottom.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-dg1: [SKIP][591] -> [SKIP][592] ([i915#4423]) [591]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-dg1-19/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html [592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-19/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-rkl: [SKIP][593] ([i915#14544]) -> [SKIP][594] +20 other tests skip [593]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html [594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-5/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: [SKIP][595] -> [SKIP][596] ([i915#14544]) +13 other tests skip [595]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-2/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-rkl: [FAIL][597] ([i915#2346]) -> [SKIP][598] ([i915#14544]) [597]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-4/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: [SKIP][599] ([i915#14544]) -> [SKIP][600] ([i915#9067]) [599]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html [600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-rkl: [SKIP][601] ([i915#14544]) -> [SKIP][602] ([i915#4103]) [601]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-rkl: [SKIP][603] ([i915#14544]) -> [SKIP][604] ([i915#13749]) [603]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-sst.html [604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dsc@dsc-basic: - shard-rkl: [SKIP][605] ([i915#3555] / [i915#3840]) -> [SKIP][606] ([i915#11190] / [i915#14544]) [605]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-4/igt@kms_dsc@dsc-basic.html [606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_dsc@dsc-basic.html * igt@kms_feature_discovery@display-2x: - shard-rkl: [SKIP][607] ([i915#1839]) -> [SKIP][608] ([i915#14544] / [i915#1839]) [607]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-2/igt@kms_feature_discovery@display-2x.html [608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: [SKIP][609] ([i915#14544] / [i915#9337]) -> [SKIP][610] ([i915#9337]) [609]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html [610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-4/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-rkl: [SKIP][611] ([i915#14544] / [i915#658]) -> [SKIP][612] ([i915#658]) [611]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_feature_discovery@psr1.html [612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-3/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-panning: - shard-rkl: [SKIP][613] ([i915#9934]) -> [SKIP][614] ([i915#14544] / [i915#9934]) +4 other tests skip [613]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@kms_flip@2x-flip-vs-panning.html [614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-plain-flip: - shard-rkl: [SKIP][615] ([i915#14544] / [i915#9934]) -> [SKIP][616] ([i915#9934]) +8 other tests skip [615]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_flip@2x-plain-flip.html [616]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@plain-flip-fb-recreate: - shard-rkl: [DMESG-WARN][617] ([i915#12964]) -> [SKIP][618] ([i915#14544] / [i915#3637]) [617]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-7/igt@kms_flip@plain-flip-fb-recreate.html [618]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_flip@plain-flip-fb-recreate.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-rkl: [SKIP][619] ([i915#2672] / [i915#3555]) -> [SKIP][620] ([i915#14544] / [i915#3555]) +2 other tests skip [619]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [620]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: [SKIP][621] ([i915#14544] / [i915#3555]) -> [SKIP][622] ([i915#2672] / [i915#3555]) +2 other tests skip [621]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html [622]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-rkl: [SKIP][623] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][624] ([i915#1825]) +33 other tests skip [623]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html [624]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt: - shard-rkl: [SKIP][625] -> [SKIP][626] ([i915#14544] / [i915#1849] / [i915#5354]) [625]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html [626]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt: - shard-rkl: [SKIP][627] ([i915#14544]) -> [SKIP][628] ([i915#15102]) +3 other tests skip [627]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html [628]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-rkl: [SKIP][629] ([i915#15102]) -> [SKIP][630] ([i915#14544]) +1 other test skip [629]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html [630]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-rkl: [SKIP][631] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][632] ([i915#15102] / [i915#3023]) +17 other tests skip [631]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html [632]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][633] ([i915#1825]) -> [SKIP][634] ([i915#14544] / [i915#1849] / [i915#5354]) +26 other tests skip [633]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html [634]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-rkl: [SKIP][635] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][636] +1 other test skip [635]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html [636]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-dg2: [SKIP][637] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][638] ([i915#15102] / [i915#3458]) +1 other test skip [637]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html [638]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: [SKIP][639] ([i915#5439]) -> [SKIP][640] ([i915#14544] / [i915#1849] / [i915#5354]) [639]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html [640]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][641] ([i915#15102] / [i915#3458]) -> [SKIP][642] ([i915#10433] / [i915#15102] / [i915#3458]) [641]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [642]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-rkl: [SKIP][643] ([i915#15102] / [i915#3023]) -> [SKIP][644] ([i915#14544] / [i915#1849] / [i915#5354]) +12 other tests skip [643]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html [644]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render: - shard-dg1: [SKIP][645] ([i915#4423]) -> [SKIP][646] +1 other test skip [645]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html [646]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: [SKIP][647] ([i915#14544]) -> [SKIP][648] ([i915#3555] / [i915#8228]) +2 other tests skip [647]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_hdr@bpc-switch-dpms.html [648]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_joiner@basic-max-non-joiner: - shard-rkl: [SKIP][649] ([i915#13688]) -> [SKIP][650] ([i915#13688] / [i915#14544]) [649]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@kms_joiner@basic-max-non-joiner.html [650]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-rkl: [SKIP][651] ([i915#12339] / [i915#14544]) -> [SKIP][652] ([i915#12339]) [651]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html [652]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-5/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: [SKIP][653] ([i915#12394] / [i915#14544]) -> [SKIP][654] ([i915#12394]) [653]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html [654]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][655] ([i915#4816]) -> [SKIP][656] ([i915#14544] / [i915#4070] / [i915#4816]) [655]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [656]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@plane-position-covered: - shard-rkl: [DMESG-WARN][657] ([i915#12964]) -> [SKIP][658] ([i915#14544] / [i915#8825]) [657]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-7/igt@kms_plane@plane-position-covered.html [658]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_plane@plane-position-covered.html * igt@kms_plane_multiple@2x-tiling-4: - shard-rkl: [SKIP][659] ([i915#13958]) -> [SKIP][660] ([i915#14544]) [659]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-4.html [660]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@tiling-4: - shard-rkl: [SKIP][661] ([i915#14544]) -> [SKIP][662] ([i915#14259]) [661]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_plane_multiple@tiling-4.html [662]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-5/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-rkl: [SKIP][663] ([i915#12247] / [i915#14544]) -> [SKIP][664] ([i915#12247]) [663]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html [664]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b: - shard-rkl: [SKIP][665] ([i915#12247] / [i915#14544] / [i915#8152]) -> [SKIP][666] ([i915#12247]) +1 other test skip [665]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html [666]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - shard-rkl: [SKIP][667] ([i915#14544] / [i915#8152]) -> [DMESG-WARN][668] ([i915#12917] / [i915#12964]) [667]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html [668]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a: - shard-rkl: [SKIP][669] ([i915#12247] / [i915#14544]) -> [DMESG-WARN][670] ([i915#12964]) [669]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a.html [670]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format@pipe-a.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-rkl: [SKIP][671] ([i915#3555]) -> [SKIP][672] ([i915#14544] / [i915#3555] / [i915#8152]) [671]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html [672]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a: - shard-rkl: [SKIP][673] ([i915#12247]) -> [SKIP][674] ([i915#12247] / [i915#14544]) [673]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a.html [674]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-rkl: [SKIP][675] ([i915#12247]) -> [SKIP][676] ([i915#12247] / [i915#14544] / [i915#8152]) [675]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html [676]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20: - shard-rkl: [DMESG-WARN][677] ([i915#12964]) -> [SKIP][678] ([i915#12247] / [i915#14544] / [i915#8152]) +1 other test skip [677]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html [678]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html * igt@kms_pm_backlight@basic-brightness: - shard-rkl: [SKIP][679] ([i915#5354]) -> [SKIP][680] ([i915#14544] / [i915#5354]) [679]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-7/igt@kms_pm_backlight@basic-brightness.html [680]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-rkl: [SKIP][681] ([i915#12343] / [i915#14544]) -> [SKIP][682] ([i915#12343]) [681]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_pm_backlight@brightness-with-dpms.html [682]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: [SKIP][683] ([i915#14544] / [i915#5354]) -> [SKIP][684] ([i915#5354]) +1 other test skip [683]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html [684]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-5/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][685] ([i915#3828]) -> [SKIP][686] ([i915#9340]) [685]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html [686]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][687] ([i915#14544] / [i915#15073]) -> [SKIP][688] ([i915#15073]) [687]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html [688]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][689] ([i915#15073]) -> [SKIP][690] ([i915#14544] / [i915#15073]) [689]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [690]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: [SKIP][691] ([i915#14544] / [i915#6524]) -> [SKIP][692] ([i915#6524]) +1 other test skip [691]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html [692]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-rkl: [SKIP][693] ([i915#11520]) -> [SKIP][694] ([i915#11520] / [i915#14544]) +7 other tests skip [693]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html [694]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-dg1: [SKIP][695] ([i915#11520]) -> [SKIP][696] ([i915#11520] / [i915#4423]) [695]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-dg1-12/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html [696]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-dg1-13/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][697] ([i915#11520] / [i915#14544]) -> [SKIP][698] ([i915#11520]) +9 other tests skip [697]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html [698]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: [SKIP][699] ([i915#14544] / [i915#9683]) -> [SKIP][700] ([i915#9683]) [699]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html [700]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-rkl: [SKIP][701] ([i915#1072] / [i915#9732]) -> [SKIP][702] ([i915#1072] / [i915#14544] / [i915#9732]) +18 other tests skip [701]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-4/igt@kms_psr@pr-cursor-plane-onoff.html [702]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-rkl: [SKIP][703] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][704] ([i915#1072] / [i915#9732]) +19 other tests skip [703]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_psr@psr2-sprite-mmap-cpu.html [704]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@kms_psr@psr2-sprite-mmap-cpu.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: [SKIP][705] ([i915#14544] / [i915#9685]) -> [SKIP][706] ([i915#9685]) [705]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [706]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-rkl: [SKIP][707] ([i915#14544]) -> [SKIP][708] ([i915#5289]) +1 other test skip [707]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [708]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: [SKIP][709] ([i915#5289]) -> [SKIP][710] ([i915#14544]) [709]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [710]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create: - shard-rkl: [FAIL][711] ([i915#15119]) -> [ABORT][712] ([i915#13179]) [711]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-2/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create.html [712]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_create.html * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free: - shard-rkl: [ABORT][713] ([i915#13179]) -> [DMESG-FAIL][714] ([i915#13179]) [713]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-2/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html [714]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html * igt@kms_vrr@flip-basic-fastset: - shard-rkl: [SKIP][715] ([i915#9906]) -> [SKIP][716] ([i915#14544]) [715]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@kms_vrr@flip-basic-fastset.html [716]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-dpms: - shard-rkl: [SKIP][717] ([i915#14544]) -> [SKIP][718] ([i915#3555]) +3 other tests skip [717]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_vrr@flip-dpms.html [718]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@lobf: - shard-rkl: [SKIP][719] ([i915#11920]) -> [SKIP][720] ([i915#14544]) [719]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@kms_vrr@lobf.html [720]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@kms_vrr@lobf.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-rkl: [SKIP][721] ([i915#14544] / [i915#2437] / [i915#9412]) -> [SKIP][722] ([i915#2437] / [i915#9412]) [721]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html [722]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@perf@mi-rpc: - shard-rkl: [SKIP][723] ([i915#2434]) -> [SKIP][724] ([i915#14544] / [i915#2434]) [723]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@perf@mi-rpc.html [724]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@perf@mi-rpc.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: [SKIP][725] ([i915#2435]) -> [SKIP][726] ([i915#14544] / [i915#2435]) [725]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@perf@per-context-mode-unprivileged.html [726]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html * igt@prime_vgem@basic-write: - shard-rkl: [SKIP][727] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][728] ([i915#3291] / [i915#3708]) +1 other test skip [727]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@prime_vgem@basic-write.html [728]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-5/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-read-hang: - shard-rkl: [SKIP][729] ([i915#14544] / [i915#3708]) -> [SKIP][730] ([i915#3708]) [729]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@prime_vgem@fence-read-hang.html [730]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-rkl: [SKIP][731] ([i915#9917]) -> [SKIP][732] ([i915#14544] / [i915#9917]) [731]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-8/igt@sriov_basic@bind-unbind-vf.html [732]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-6/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: [SKIP][733] ([i915#14544] / [i915#9917]) -> [SKIP][734] ([i915#9917]) +1 other test skip [733]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-off.html [734]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-2/igt@sriov_basic@enable-vfs-autoprobe-off.html [i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10393 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11521]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521 [i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13328]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13328 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13441 [i915#13447]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13447 [i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781 [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14001]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14001 [i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123 [i915#14242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14242 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14550]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14550 [i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15077 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15119]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15119 [i915#15136]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15136 [i915#15138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15138 [i915#15152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15152 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#1850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1850 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825 [i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100 [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8598 -> IGTPW_13955 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_17436: 894bc3ad572262b3c29e8cf0352adaa07275dbfc @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_13955: 13955 IGT_8598: 8598 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/index.html [-- Attachment #2: Type: text/html, Size: 247627 bytes --] ^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: ✗ i915.CI.Full: failure for Sync PCI ids with kernel: split BMG to BMG-G21 and add NVL-S (rev2) 2025-10-28 20:27 ` ✗ i915.CI.Full: " Patchwork @ 2025-10-29 17:17 ` Kamil Konieczny 0 siblings, 0 replies; 17+ messages in thread From: Kamil Konieczny @ 2025-10-29 17:17 UTC (permalink / raw) To: igt-dev; +Cc: I915-ci-infra Hi igt-dev, On 2025-10-28 at 20:27:23 -0000, Patchwork wrote: > == Series Details == > > Series: Sync PCI ids with kernel: split BMG to BMG-G21 and add NVL-S (rev2) > URL : https://patchwork.freedesktop.org/series/156479/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_17436_full -> IGTPW_13955_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_13955_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_13955_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. > > External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/index.html > > Participating hosts (11 -> 12) > ------------------------------ > > Additional (1): shard-dg2-set2 > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_13955_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-128: > - shard-rkl: [PASS][1] -> [FAIL][2] +3 other tests fail > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17436/shard-rkl-4/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-128.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_13955/shard-rkl-7/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-128.html > Unrelated. Regards, Kamil > > New tests > --------- > > New tests have been introduced between CI_DRM_17436_full and IGTPW_13955_full: > > ### New IGT tests (11) ### > > * igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-3: > - Statuses : 1 pass(s) > - Exec time: [2.29] s > > * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-3: > - Statuses : 1 pass(s) > - Exec time: [2.13] s > > * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-dp-3: > - Statuses : 1 pass(s) > - Exec time: [2.14] s > > * igt@kms_async_flips@alternate-sync-async-flip@pipe-d-dp-3: > - Statuses : 1 pass(s) > - Exec time: [2.13] s > > * igt@kms_cursor_crc@cursor-alpha-transparent@pipe-d-dp-3: > - Statuses : 1 pass(s) > - Exec time: [0.55] s > > * igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-d-dp-3: > - Statuses : 1 pass(s) > - Exec time: [2.73] s > > * igt@kms_cursor_crc@cursor-rapid-movement-256x256@pipe-d-dp-3: > - Statuses : 1 pass(s) > - Exec time: [0.41] s > > * igt@kms_invalid_mode@bad-hsync-start@pipe-a-dp-3: > - Statuses : 1 pass(s) > - Exec time: [0.08] s > > * igt@kms_invalid_mode@bad-hsync-start@pipe-b-dp-3: > - Statuses : 1 pass(s) > - Exec time: [0.00] s > > * igt@kms_invalid_mode@bad-hsync-start@pipe-c-dp-3: > - Statuses : 1 pass(s) > - Exec time: [0.00] s > > * igt@kms_invalid_mode@bad-hsync-start@pipe-d-dp-3: > - Statuses : 1 pass(s) > - Exec time: [0.00] s > > > > Known issues > ------------ > > Here are the changes found in IGTPW_13955_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@api_intel_bb@blit-reloc-keep-cache: ...cut... ^ permalink raw reply [flat|nested] 17+ messages in thread
end of thread, other threads:[~2025-10-29 17:17 UTC | newest] Thread overview: 17+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-10-28 10:42 [PATCH i-g-t v2 0/1] Sync PCI ids with kernel: split BMG to BMG-G21 and add NVL-S Kamil Konieczny 2025-10-28 10:42 ` [PATCH i-g-t v2 1/1] lib/pciids: Add NVL-S and split out BMG-G21 Kamil Konieczny 2025-10-28 12:04 ` Shekhar Chauhan 2025-10-28 13:26 ` Lucas De Marchi 2025-10-28 13:53 ` Lucas De Marchi 2025-10-28 14:35 ` Jani Nikula 2025-10-28 14:36 ` Jani Nikula 2025-10-28 14:41 ` Jani Nikula 2025-10-28 16:59 ` Kamil Konieczny 2025-10-28 20:19 ` Jani Nikula 2025-10-28 16:35 ` Kamil Konieczny 2025-10-28 11:56 ` ✓ Xe.CI.BAT: success for Sync PCI ids with kernel: split BMG to BMG-G21 and add NVL-S (rev2) Patchwork 2025-10-28 12:14 ` ✓ i915.CI.BAT: " Patchwork 2025-10-28 16:42 ` ✗ Xe.CI.Full: failure " Patchwork 2025-10-28 17:55 ` Kamil Konieczny 2025-10-28 20:27 ` ✗ i915.CI.Full: " Patchwork 2025-10-29 17:17 ` Kamil Konieczny
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox