* [Intel-gfx] [PATCH] drm/i915: add new "soc" sub-directory and move PCH and DRAM code there
@ 2022-12-08 14:23 Jani Nikula
2022-12-08 14:45 ` Rodrigo Vivi
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Jani Nikula @ 2022-12-08 14:23 UTC (permalink / raw)
To: intel-gfx; +Cc: jani.nikula, Rodrigo Vivi
Add a new sub-directory for things that aren't specifically about the
GPU and don't really belong in the i915 driver top level, but also don't
belong under any of the existing sub-directories either.
Name it "soc", and move the PCH and DRAM code there.
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
Naming, always the naming! soc? ext? offcore? In the Makefile I'm adding
comment "core peripheral code", which is also silly. *facepalm*
---
drivers/gpu/drm/i915/Makefile | 7 +++++--
drivers/gpu/drm/i915/i915_driver.c | 3 ++-
drivers/gpu/drm/i915/i915_drv.h | 3 ++-
drivers/gpu/drm/i915/{ => soc}/intel_dram.c | 0
drivers/gpu/drm/i915/{ => soc}/intel_dram.h | 0
drivers/gpu/drm/i915/{ => soc}/intel_pch.c | 0
drivers/gpu/drm/i915/{ => soc}/intel_pch.h | 0
7 files changed, 9 insertions(+), 4 deletions(-)
rename drivers/gpu/drm/i915/{ => soc}/intel_dram.c (100%)
rename drivers/gpu/drm/i915/{ => soc}/intel_dram.h (100%)
rename drivers/gpu/drm/i915/{ => soc}/intel_pch.c (100%)
rename drivers/gpu/drm/i915/{ => soc}/intel_pch.h (100%)
diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile
index 01974b82d205..7046e435a155 100644
--- a/drivers/gpu/drm/i915/Makefile
+++ b/drivers/gpu/drm/i915/Makefile
@@ -48,9 +48,7 @@ i915-y += i915_driver.o \
i915_sysfs.o \
i915_utils.o \
intel_device_info.o \
- intel_dram.o \
intel_memory_region.o \
- intel_pch.o \
intel_pcode.o \
intel_pm.o \
intel_region_ttm.o \
@@ -62,6 +60,11 @@ i915-y += i915_driver.o \
vlv_sideband.o \
vlv_suspend.o
+# core peripheral code
+i915-y += \
+ soc/intel_dram.o \
+ soc/intel_pch.o
+
# core library code
i915-y += \
i915_memcpy.o \
diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
index 4cc3ced83959..6c87cfa0d7c8 100644
--- a/drivers/gpu/drm/i915/i915_driver.c
+++ b/drivers/gpu/drm/i915/i915_driver.c
@@ -75,6 +75,8 @@
#include "pxp/intel_pxp_pm.h"
+#include "soc/intel_dram.h"
+
#include "i915_file_private.h"
#include "i915_debugfs.h"
#include "i915_driver.h"
@@ -93,7 +95,6 @@
#include "i915_sysfs.h"
#include "i915_utils.h"
#include "i915_vgpu.h"
-#include "intel_dram.h"
#include "intel_gvt.h"
#include "intel_memory_region.h"
#include "intel_pci_config.h"
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
index a8a5bd426e78..b6d0c12ffeea 100644
--- a/drivers/gpu/drm/i915/i915_drv.h
+++ b/drivers/gpu/drm/i915/i915_drv.h
@@ -49,6 +49,8 @@
#include "gt/intel_workarounds.h"
#include "gt/uc/intel_uc.h"
+#include "soc/intel_pch.h"
+
#include "i915_drm_client.h"
#include "i915_gem.h"
#include "i915_gpu_error.h"
@@ -58,7 +60,6 @@
#include "i915_utils.h"
#include "intel_device_info.h"
#include "intel_memory_region.h"
-#include "intel_pch.h"
#include "intel_runtime_pm.h"
#include "intel_step.h"
#include "intel_uncore.h"
diff --git a/drivers/gpu/drm/i915/intel_dram.c b/drivers/gpu/drm/i915/soc/intel_dram.c
similarity index 100%
rename from drivers/gpu/drm/i915/intel_dram.c
rename to drivers/gpu/drm/i915/soc/intel_dram.c
diff --git a/drivers/gpu/drm/i915/intel_dram.h b/drivers/gpu/drm/i915/soc/intel_dram.h
similarity index 100%
rename from drivers/gpu/drm/i915/intel_dram.h
rename to drivers/gpu/drm/i915/soc/intel_dram.h
diff --git a/drivers/gpu/drm/i915/intel_pch.c b/drivers/gpu/drm/i915/soc/intel_pch.c
similarity index 100%
rename from drivers/gpu/drm/i915/intel_pch.c
rename to drivers/gpu/drm/i915/soc/intel_pch.c
diff --git a/drivers/gpu/drm/i915/intel_pch.h b/drivers/gpu/drm/i915/soc/intel_pch.h
similarity index 100%
rename from drivers/gpu/drm/i915/intel_pch.h
rename to drivers/gpu/drm/i915/soc/intel_pch.h
--
2.34.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [Intel-gfx] [PATCH] drm/i915: add new "soc" sub-directory and move PCH and DRAM code there 2022-12-08 14:23 [Intel-gfx] [PATCH] drm/i915: add new "soc" sub-directory and move PCH and DRAM code there Jani Nikula @ 2022-12-08 14:45 ` Rodrigo Vivi 2022-12-13 13:51 ` Jani Nikula 2022-12-08 17:32 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 7+ messages in thread From: Rodrigo Vivi @ 2022-12-08 14:45 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx On Thu, Dec 08, 2022 at 04:23:47PM +0200, Jani Nikula wrote: > Add a new sub-directory for things that aren't specifically about the > GPU and don't really belong in the i915 driver top level, but also don't > belong under any of the existing sub-directories either. > > Name it "soc", and move the PCH and DRAM code there. > > Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> > Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> > Signed-off-by: Jani Nikula <jani.nikula@intel.com> > > --- > > Naming, always the naming! soc? ext? offcore? In the Makefile I'm adding > comment "core peripheral code", which is also silly. *facepalm* > --- > drivers/gpu/drm/i915/Makefile | 7 +++++-- > drivers/gpu/drm/i915/i915_driver.c | 3 ++- > drivers/gpu/drm/i915/i915_drv.h | 3 ++- > drivers/gpu/drm/i915/{ => soc}/intel_dram.c | 0 > drivers/gpu/drm/i915/{ => soc}/intel_dram.h | 0 > drivers/gpu/drm/i915/{ => soc}/intel_pch.c | 0 > drivers/gpu/drm/i915/{ => soc}/intel_pch.h | 0 > 7 files changed, 9 insertions(+), 4 deletions(-) > rename drivers/gpu/drm/i915/{ => soc}/intel_dram.c (100%) > rename drivers/gpu/drm/i915/{ => soc}/intel_dram.h (100%) > rename drivers/gpu/drm/i915/{ => soc}/intel_pch.c (100%) > rename drivers/gpu/drm/i915/{ => soc}/intel_pch.h (100%) > > diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile > index 01974b82d205..7046e435a155 100644 > --- a/drivers/gpu/drm/i915/Makefile > +++ b/drivers/gpu/drm/i915/Makefile > @@ -48,9 +48,7 @@ i915-y += i915_driver.o \ > i915_sysfs.o \ > i915_utils.o \ > intel_device_info.o \ > - intel_dram.o \ > intel_memory_region.o \ > - intel_pch.o \ > intel_pcode.o \ should pcode be moved as well? > intel_pm.o \ > intel_region_ttm.o \ > @@ -62,6 +60,11 @@ i915-y += i915_driver.o \ > vlv_sideband.o \ and also maybe the sideband? anyway, Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > vlv_suspend.o > > +# core peripheral code > +i915-y += \ > + soc/intel_dram.o \ > + soc/intel_pch.o > + > # core library code > i915-y += \ > i915_memcpy.o \ > diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c > index 4cc3ced83959..6c87cfa0d7c8 100644 > --- a/drivers/gpu/drm/i915/i915_driver.c > +++ b/drivers/gpu/drm/i915/i915_driver.c > @@ -75,6 +75,8 @@ > > #include "pxp/intel_pxp_pm.h" > > +#include "soc/intel_dram.h" > + > #include "i915_file_private.h" > #include "i915_debugfs.h" > #include "i915_driver.h" > @@ -93,7 +95,6 @@ > #include "i915_sysfs.h" > #include "i915_utils.h" > #include "i915_vgpu.h" > -#include "intel_dram.h" > #include "intel_gvt.h" > #include "intel_memory_region.h" > #include "intel_pci_config.h" > diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h > index a8a5bd426e78..b6d0c12ffeea 100644 > --- a/drivers/gpu/drm/i915/i915_drv.h > +++ b/drivers/gpu/drm/i915/i915_drv.h > @@ -49,6 +49,8 @@ > #include "gt/intel_workarounds.h" > #include "gt/uc/intel_uc.h" > > +#include "soc/intel_pch.h" > + > #include "i915_drm_client.h" > #include "i915_gem.h" > #include "i915_gpu_error.h" > @@ -58,7 +60,6 @@ > #include "i915_utils.h" > #include "intel_device_info.h" > #include "intel_memory_region.h" > -#include "intel_pch.h" > #include "intel_runtime_pm.h" > #include "intel_step.h" > #include "intel_uncore.h" > diff --git a/drivers/gpu/drm/i915/intel_dram.c b/drivers/gpu/drm/i915/soc/intel_dram.c > similarity index 100% > rename from drivers/gpu/drm/i915/intel_dram.c > rename to drivers/gpu/drm/i915/soc/intel_dram.c > diff --git a/drivers/gpu/drm/i915/intel_dram.h b/drivers/gpu/drm/i915/soc/intel_dram.h > similarity index 100% > rename from drivers/gpu/drm/i915/intel_dram.h > rename to drivers/gpu/drm/i915/soc/intel_dram.h > diff --git a/drivers/gpu/drm/i915/intel_pch.c b/drivers/gpu/drm/i915/soc/intel_pch.c > similarity index 100% > rename from drivers/gpu/drm/i915/intel_pch.c > rename to drivers/gpu/drm/i915/soc/intel_pch.c > diff --git a/drivers/gpu/drm/i915/intel_pch.h b/drivers/gpu/drm/i915/soc/intel_pch.h > similarity index 100% > rename from drivers/gpu/drm/i915/intel_pch.h > rename to drivers/gpu/drm/i915/soc/intel_pch.h > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: add new "soc" sub-directory and move PCH and DRAM code there 2022-12-08 14:45 ` Rodrigo Vivi @ 2022-12-13 13:51 ` Jani Nikula 0 siblings, 0 replies; 7+ messages in thread From: Jani Nikula @ 2022-12-13 13:51 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: intel-gfx On Thu, 08 Dec 2022, Rodrigo Vivi <rodrigo.vivi@intel.com> wrote: > On Thu, Dec 08, 2022 at 04:23:47PM +0200, Jani Nikula wrote: >> Add a new sub-directory for things that aren't specifically about the >> GPU and don't really belong in the i915 driver top level, but also don't >> belong under any of the existing sub-directories either. >> >> Name it "soc", and move the PCH and DRAM code there. >> >> Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> >> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> >> Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> >> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> >> Signed-off-by: Jani Nikula <jani.nikula@intel.com> >> >> --- >> >> Naming, always the naming! soc? ext? offcore? In the Makefile I'm adding >> comment "core peripheral code", which is also silly. *facepalm* >> --- >> drivers/gpu/drm/i915/Makefile | 7 +++++-- >> drivers/gpu/drm/i915/i915_driver.c | 3 ++- >> drivers/gpu/drm/i915/i915_drv.h | 3 ++- >> drivers/gpu/drm/i915/{ => soc}/intel_dram.c | 0 >> drivers/gpu/drm/i915/{ => soc}/intel_dram.h | 0 >> drivers/gpu/drm/i915/{ => soc}/intel_pch.c | 0 >> drivers/gpu/drm/i915/{ => soc}/intel_pch.h | 0 >> 7 files changed, 9 insertions(+), 4 deletions(-) >> rename drivers/gpu/drm/i915/{ => soc}/intel_dram.c (100%) >> rename drivers/gpu/drm/i915/{ => soc}/intel_dram.h (100%) >> rename drivers/gpu/drm/i915/{ => soc}/intel_pch.c (100%) >> rename drivers/gpu/drm/i915/{ => soc}/intel_pch.h (100%) >> >> diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile >> index 01974b82d205..7046e435a155 100644 >> --- a/drivers/gpu/drm/i915/Makefile >> +++ b/drivers/gpu/drm/i915/Makefile >> @@ -48,9 +48,7 @@ i915-y += i915_driver.o \ >> i915_sysfs.o \ >> i915_utils.o \ >> intel_device_info.o \ >> - intel_dram.o \ >> intel_memory_region.o \ >> - intel_pch.o \ >> intel_pcode.o \ > > should pcode be moved as well? > >> intel_pm.o \ >> intel_region_ttm.o \ >> @@ -62,6 +60,11 @@ i915-y += i915_driver.o \ >> vlv_sideband.o \ > > and also maybe the sideband? Yeah, should be considered as a follow-up. > > anyway, > > Acked-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Thanks, pushed to drm-intel-next. BR, Jani. > >> vlv_suspend.o >> >> +# core peripheral code >> +i915-y += \ >> + soc/intel_dram.o \ >> + soc/intel_pch.o >> + >> # core library code >> i915-y += \ >> i915_memcpy.o \ >> diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c >> index 4cc3ced83959..6c87cfa0d7c8 100644 >> --- a/drivers/gpu/drm/i915/i915_driver.c >> +++ b/drivers/gpu/drm/i915/i915_driver.c >> @@ -75,6 +75,8 @@ >> >> #include "pxp/intel_pxp_pm.h" >> >> +#include "soc/intel_dram.h" >> + >> #include "i915_file_private.h" >> #include "i915_debugfs.h" >> #include "i915_driver.h" >> @@ -93,7 +95,6 @@ >> #include "i915_sysfs.h" >> #include "i915_utils.h" >> #include "i915_vgpu.h" >> -#include "intel_dram.h" >> #include "intel_gvt.h" >> #include "intel_memory_region.h" >> #include "intel_pci_config.h" >> diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h >> index a8a5bd426e78..b6d0c12ffeea 100644 >> --- a/drivers/gpu/drm/i915/i915_drv.h >> +++ b/drivers/gpu/drm/i915/i915_drv.h >> @@ -49,6 +49,8 @@ >> #include "gt/intel_workarounds.h" >> #include "gt/uc/intel_uc.h" >> >> +#include "soc/intel_pch.h" >> + >> #include "i915_drm_client.h" >> #include "i915_gem.h" >> #include "i915_gpu_error.h" >> @@ -58,7 +60,6 @@ >> #include "i915_utils.h" >> #include "intel_device_info.h" >> #include "intel_memory_region.h" >> -#include "intel_pch.h" >> #include "intel_runtime_pm.h" >> #include "intel_step.h" >> #include "intel_uncore.h" >> diff --git a/drivers/gpu/drm/i915/intel_dram.c b/drivers/gpu/drm/i915/soc/intel_dram.c >> similarity index 100% >> rename from drivers/gpu/drm/i915/intel_dram.c >> rename to drivers/gpu/drm/i915/soc/intel_dram.c >> diff --git a/drivers/gpu/drm/i915/intel_dram.h b/drivers/gpu/drm/i915/soc/intel_dram.h >> similarity index 100% >> rename from drivers/gpu/drm/i915/intel_dram.h >> rename to drivers/gpu/drm/i915/soc/intel_dram.h >> diff --git a/drivers/gpu/drm/i915/intel_pch.c b/drivers/gpu/drm/i915/soc/intel_pch.c >> similarity index 100% >> rename from drivers/gpu/drm/i915/intel_pch.c >> rename to drivers/gpu/drm/i915/soc/intel_pch.c >> diff --git a/drivers/gpu/drm/i915/intel_pch.h b/drivers/gpu/drm/i915/soc/intel_pch.h >> similarity index 100% >> rename from drivers/gpu/drm/i915/intel_pch.h >> rename to drivers/gpu/drm/i915/soc/intel_pch.h >> -- >> 2.34.1 >> -- Jani Nikula, Intel Open Source Graphics Center ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: add new "soc" sub-directory and move PCH and DRAM code there 2022-12-08 14:23 [Intel-gfx] [PATCH] drm/i915: add new "soc" sub-directory and move PCH and DRAM code there Jani Nikula 2022-12-08 14:45 ` Rodrigo Vivi @ 2022-12-08 17:32 ` Patchwork 2022-12-08 17:33 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2022-12-08 17:32 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx == Series Details == Series: drm/i915: add new "soc" sub-directory and move PCH and DRAM code there URL : https://patchwork.freedesktop.org/series/111780/ State : warning == Summary == Error: dim checkpatch failed 78cff63f4926 drm/i915: add new "soc" sub-directory and move PCH and DRAM code there -:92: WARNING:FILE_PATH_CHANGES: added, moved or deleted file(s), does MAINTAINERS need updating? #92: rename from drivers/gpu/drm/i915/intel_dram.c total: 0 errors, 1 warnings, 0 checks, 50 lines checked ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Intel-gfx] ✗ Fi.CI.SPARSE: warning for drm/i915: add new "soc" sub-directory and move PCH and DRAM code there 2022-12-08 14:23 [Intel-gfx] [PATCH] drm/i915: add new "soc" sub-directory and move PCH and DRAM code there Jani Nikula 2022-12-08 14:45 ` Rodrigo Vivi 2022-12-08 17:32 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork @ 2022-12-08 17:33 ` Patchwork 2022-12-08 17:55 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2022-12-09 7:26 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2022-12-08 17:33 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx == Series Details == Series: drm/i915: add new "soc" sub-directory and move PCH and DRAM code there URL : https://patchwork.freedesktop.org/series/111780/ State : warning == Summary == Error: dim sparse failed Sparse version: v0.6.2 Fast mode used, each commit won't be checked separately. ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: add new "soc" sub-directory and move PCH and DRAM code there 2022-12-08 14:23 [Intel-gfx] [PATCH] drm/i915: add new "soc" sub-directory and move PCH and DRAM code there Jani Nikula ` (2 preceding siblings ...) 2022-12-08 17:33 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork @ 2022-12-08 17:55 ` Patchwork 2022-12-09 7:26 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2022-12-08 17:55 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 3745 bytes --] == Series Details == Series: drm/i915: add new "soc" sub-directory and move PCH and DRAM code there URL : https://patchwork.freedesktop.org/series/111780/ State : success == Summary == CI Bug Log - changes from CI_DRM_12484 -> Patchwork_111780v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/index.html Participating hosts (26 -> 24) ------------------------------ Missing (2): fi-rkl-11600 bat-dg1-6 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_111780v1: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_suspend@basic-s2idle-without-i915: - {bat-rpls-2}: [FAIL][1] ([i915#6559]) -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/bat-rpls-2/igt@i915_suspend@basic-s2idle-without-i915.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/bat-rpls-2/igt@i915_suspend@basic-s2idle-without-i915.html Known issues ------------ Here are the changes found in Patchwork_111780v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size: - fi-bsw-kefka: [PASS][3] -> [FAIL][4] ([i915#6298]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size.html #### Possible fixes #### * igt@fbdev@read: - {bat-rpls-2}: [SKIP][5] ([i915#2582]) -> [PASS][6] +4 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/bat-rpls-2/igt@fbdev@read.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/bat-rpls-2/igt@fbdev@read.html * igt@gem_exec_gttfill@basic: - fi-pnv-d510: [FAIL][7] ([i915#7229]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/fi-pnv-d510/igt@gem_exec_gttfill@basic.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/fi-pnv-d510/igt@gem_exec_gttfill@basic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#6298]: https://gitlab.freedesktop.org/drm/intel/issues/6298 [i915#6559]: https://gitlab.freedesktop.org/drm/intel/issues/6559 [i915#6794]: https://gitlab.freedesktop.org/drm/intel/issues/6794 [i915#7229]: https://gitlab.freedesktop.org/drm/intel/issues/7229 Build changes ------------- * Linux: CI_DRM_12484 -> Patchwork_111780v1 CI-20190529: 20190529 CI_DRM_12484: 77e03ccd7fc350435bb8b82cb5d5126bea437113 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7085: 11af20de3877b23a244b816453bfc41d83591a15 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_111780v1: 77e03ccd7fc350435bb8b82cb5d5126bea437113 @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits e19f375030dc drm/i915: add new "soc" sub-directory and move PCH and DRAM code there == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/index.html [-- Attachment #2: Type: text/html, Size: 4248 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915: add new "soc" sub-directory and move PCH and DRAM code there 2022-12-08 14:23 [Intel-gfx] [PATCH] drm/i915: add new "soc" sub-directory and move PCH and DRAM code there Jani Nikula ` (3 preceding siblings ...) 2022-12-08 17:55 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork @ 2022-12-09 7:26 ` Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2022-12-09 7:26 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 41531 bytes --] == Series Details == Series: drm/i915: add new "soc" sub-directory and move PCH and DRAM code there URL : https://patchwork.freedesktop.org/series/111780/ State : failure == Summary == CI Bug Log - changes from CI_DRM_12484_full -> Patchwork_111780v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_111780v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_111780v1_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (14 -> 14) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_111780v1_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_balancer@smoke: - shard-skl: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-skl2/igt@gem_exec_balancer@smoke.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-skl3/igt@gem_exec_balancer@smoke.html * {igt@gem_softpin@evict-prime@all} (NEW): - shard-skl: NOTRUN -> [FAIL][3] +4 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-skl2/igt@gem_softpin@evict-prime@all.html New tests --------- New tests have been introduced between CI_DRM_12484_full and Patchwork_111780v1_full: ### New IGT tests (6) ### * igt@gem_softpin@evict-prime@all: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@gem_softpin@evict-prime@bcs0: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@gem_softpin@evict-prime@rcs0: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@gem_softpin@evict-prime@vcs0: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@gem_softpin@evict-prime@vecs0: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_ccs: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in Patchwork_111780v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-iclb: NOTRUN -> [SKIP][4] ([i915#6335]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-iclb3/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-iclb: [PASS][5] -> [SKIP][6] ([i915#4525]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-iclb1/igt@gem_exec_balancer@parallel-keep-in-fence.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-iclb6/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_fair@basic-flow@rcs0: - shard-tglb: [PASS][7] -> [FAIL][8] ([i915#2842]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-tglb3/igt@gem_exec_fair@basic-flow@rcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-tglb1/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][9] -> [FAIL][10] ([i915#2842]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-apl: [PASS][11] -> [FAIL][12] ([i915#2842]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-apl6/igt@gem_exec_fair@basic-pace-share@rcs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-apl7/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_huc_copy@huc-copy: - shard-tglb: [PASS][13] -> [SKIP][14] ([i915#2190]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-tglb5/igt@gem_huc_copy@huc-copy.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-tglb7/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-glk: NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#4613]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-glk3/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@random: - shard-iclb: NOTRUN -> [SKIP][16] ([i915#4613]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-iclb3/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@verify-ccs: - shard-skl: NOTRUN -> [SKIP][17] ([fdo#109271] / [i915#4613]) +2 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-skl4/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-iclb: NOTRUN -> [SKIP][18] ([i915#4270]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-iclb3/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_render_copy@linear-to-vebox-y-tiled: - shard-iclb: NOTRUN -> [SKIP][19] ([i915#768]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-iclb3/igt@gem_render_copy@linear-to-vebox-y-tiled.html * igt@gem_softpin@evict-single-offset: - shard-tglb: [PASS][20] -> [FAIL][21] ([i915#4171]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-tglb2/igt@gem_softpin@evict-single-offset.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-tglb5/igt@gem_softpin@evict-single-offset.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-iclb: NOTRUN -> [SKIP][22] ([i915#3297]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-iclb3/igt@gem_userptr_blits@dmabuf-unsync.html * igt@i915_pm_backlight@fade-with-suspend: - shard-skl: NOTRUN -> [INCOMPLETE][23] ([fdo#103375] / [i915#7256]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-skl3/igt@i915_pm_backlight@fade-with-suspend.html * igt@i915_pm_dc@dc6-dpms: - shard-iclb: [PASS][24] -> [FAIL][25] ([i915#3989] / [i915#454]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-iclb7/igt@i915_pm_dc@dc6-dpms.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_sseu@full-enable: - shard-iclb: NOTRUN -> [SKIP][26] ([i915#4387]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-iclb3/igt@i915_pm_sseu@full-enable.html * igt@i915_selftest@live@hangcheck: - shard-tglb: [PASS][27] -> [DMESG-WARN][28] ([i915#5591]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-tglb6/igt@i915_selftest@live@hangcheck.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-tglb2/igt@i915_selftest@live@hangcheck.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-iclb: NOTRUN -> [SKIP][29] ([i915#5286]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-iclb3/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-skl: NOTRUN -> [FAIL][30] ([i915#3763]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-skl4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-iclb: NOTRUN -> [SKIP][31] ([fdo#110723]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-iclb3/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-skl: NOTRUN -> [SKIP][32] ([fdo#109271] / [i915#3886]) +2 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-skl4/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][33] ([fdo#109271] / [i915#3886]) +2 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-glk3/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc: - shard-iclb: NOTRUN -> [SKIP][34] ([fdo#109278]) +3 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-iclb3/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc.html * igt@kms_cdclk@mode-transition: - shard-glk: NOTRUN -> [SKIP][35] ([fdo#109271]) +34 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-glk3/igt@kms_cdclk@mode-transition.html * igt@kms_chamelium@hdmi-hpd-after-suspend: - shard-skl: NOTRUN -> [SKIP][36] ([fdo#109271] / [fdo#111827]) +3 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-skl4/igt@kms_chamelium@hdmi-hpd-after-suspend.html * igt@kms_chamelium@hdmi-hpd-storm-disable: - shard-glk: NOTRUN -> [SKIP][37] ([fdo#109271] / [fdo#111827]) +2 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-glk3/igt@kms_chamelium@hdmi-hpd-storm-disable.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-iclb: NOTRUN -> [SKIP][38] ([i915#3555]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-iclb3/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-iclb: NOTRUN -> [SKIP][39] ([fdo#109274]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-iclb3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions: - shard-apl: [PASS][40] -> [FAIL][41] ([i915#2346]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size: - shard-skl: NOTRUN -> [FAIL][42] ([i915#2346]) +1 similar issue [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-skl1/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-skl: [PASS][43] -> [FAIL][44] ([i915#79]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-skl1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-skl2/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_flip@flip-vs-suspend-interruptible@d-edp1: - shard-tglb: [PASS][45] -> [TIMEOUT][46] ([i915#2411]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-tglb3/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-tglb1/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html * igt@kms_flip@plain-flip-ts-check@b-edp1: - shard-skl: [PASS][47] -> [FAIL][48] ([i915#2122]) +1 similar issue [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-skl2/igt@kms_flip@plain-flip-ts-check@b-edp1.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-skl4/igt@kms_flip@plain-flip-ts-check@b-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][49] ([i915#2587] / [i915#2672]) +1 similar issue [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-iclb7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][50] ([i915#2672]) +5 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite: - shard-skl: NOTRUN -> ([SKIP][51], [SKIP][52]) ([fdo#109271]) +3 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-skl2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-skl4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move: - shard-iclb: NOTRUN -> [SKIP][53] ([fdo#109280]) +4 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-skl: [PASS][54] -> [DMESG-WARN][55] ([i915#1982]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-skl3/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-skl1/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-b-edp-1: - shard-skl: NOTRUN -> [FAIL][56] ([i915#4573]) +2 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-skl4/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1: - shard-skl: NOTRUN -> [SKIP][57] ([fdo#109271]) +126 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-skl4/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][58] ([fdo#109271] / [i915#658]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-glk3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-skl: NOTRUN -> [SKIP][59] ([fdo#109271] / [i915#658]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-skl4/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr2_sprite_render: - shard-iclb: [PASS][60] -> [SKIP][61] ([fdo#109441]) +1 similar issue [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-iclb2/igt@kms_psr@psr2_sprite_render.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-iclb7/igt@kms_psr@psr2_sprite_render.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglb: [PASS][62] -> [SKIP][63] ([i915#5519]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-tglb2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-tglb5/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_vblank@pipe-a-query-forked-busy: - shard-skl: [PASS][64] -> [INCOMPLETE][65] ([i915#2295]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-skl3/igt@kms_vblank@pipe-a-query-forked-busy.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-skl3/igt@kms_vblank@pipe-a-query-forked-busy.html * igt@kms_vblank@pipe-d-wait-idle: - shard-skl: NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#533]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-skl4/igt@kms_vblank@pipe-d-wait-idle.html * igt@perf@polling-small-buf: - shard-skl: NOTRUN -> [FAIL][67] ([i915#1722]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-skl4/igt@perf@polling-small-buf.html * igt@sysfs_clients@sema-10: - shard-skl: NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#2994]) +1 similar issue [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-skl4/igt@sysfs_clients@sema-10.html #### Possible fixes #### * igt@fbdev@info: - {shard-rkl}: [SKIP][69] ([i915#2582]) -> [PASS][70] +1 similar issue [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-rkl-4/igt@fbdev@info.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-rkl-6/igt@fbdev@info.html * igt@gem_ctx_persistence@legacy-engines-hang@blt: - {shard-rkl}: [SKIP][71] ([i915#6252]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-rkl-5/igt@gem_ctx_persistence@legacy-engines-hang@blt.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-rkl-2/igt@gem_ctx_persistence@legacy-engines-hang@blt.html * igt@gem_eio@in-flight-suspend: - {shard-rkl}: [FAIL][73] ([fdo#103375]) -> [PASS][74] [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-rkl-4/igt@gem_eio@in-flight-suspend.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-rkl-2/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_balancer@parallel-contexts: - shard-iclb: [SKIP][75] ([i915#4525]) -> [PASS][76] [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-iclb7/igt@gem_exec_balancer@parallel-contexts.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-iclb2/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][77] ([i915#2842]) -> [PASS][78] [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-apl8/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-iclb: [FAIL][79] ([i915#2842]) -> [PASS][80] [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-iclb8/igt@gem_exec_fair@basic-pace@rcs0.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-iclb8/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_reloc@basic-write-gtt-noreloc: - {shard-rkl}: [SKIP][81] ([i915#3281]) -> [PASS][82] +4 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-rkl-3/igt@gem_exec_reloc@basic-write-gtt-noreloc.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-rkl-5/igt@gem_exec_reloc@basic-write-gtt-noreloc.html * igt@gem_exec_whisper@basic-queues-forked-all: - shard-iclb: [INCOMPLETE][83] ([i915#6453] / [i915#6755]) -> [PASS][84] [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-iclb7/igt@gem_exec_whisper@basic-queues-forked-all.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-iclb3/igt@gem_exec_whisper@basic-queues-forked-all.html * igt@gem_userptr_blits@forbidden-operations: - {shard-rkl}: [SKIP][85] ([i915#3282]) -> [PASS][86] +3 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-rkl-3/igt@gem_userptr_blits@forbidden-operations.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-rkl-5/igt@gem_userptr_blits@forbidden-operations.html * igt@i915_hangman@engine-engine-error@bcs0: - {shard-rkl}: [SKIP][87] ([i915#6258]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-rkl-5/igt@i915_hangman@engine-engine-error@bcs0.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-rkl-2/igt@i915_hangman@engine-engine-error@bcs0.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1: - shard-skl: [FAIL][89] ([i915#2521]) -> [PASS][90] +1 similar issue [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-skl2/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-skl3/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html * igt@kms_atomic@atomic_plane_damage: - {shard-rkl}: [SKIP][91] ([i915#4098]) -> [PASS][92] [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-rkl-4/igt@kms_atomic@atomic_plane_damage.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-rkl-6/igt@kms_atomic@atomic_plane_damage.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-glk: [DMESG-WARN][93] ([i915#2017]) -> [PASS][94] +1 similar issue [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-glk5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-glk3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1: - shard-iclb: [DMESG-WARN][95] ([i915#2867]) -> [PASS][96] [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-iclb8/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-iclb6/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions: - shard-glk: [FAIL][97] ([i915#2346]) -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html * igt@kms_fbcon_fbt@psr-suspend: - {shard-rkl}: [SKIP][99] ([fdo#110189] / [i915#3955]) -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2: - shard-glk: [FAIL][101] ([i915#79]) -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-glk1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-glk8/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html * igt@kms_flip@plain-flip-fb-recreate@c-edp1: - shard-skl: [FAIL][103] ([i915#2122]) -> [PASS][104] +1 similar issue [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-skl2/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-skl2/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-iclb: [SKIP][105] ([i915#3555]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - {shard-rkl}: [SKIP][107] ([i915#1849] / [i915#4098]) -> [PASS][108] +7 similar issues [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_plane_multiple@tiling-none@pipe-c-edp-1: - shard-skl: [INCOMPLETE][109] -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-skl4/igt@kms_plane_multiple@tiling-none@pipe-c-edp-1.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-skl1/igt@kms_plane_multiple@tiling-none@pipe-c-edp-1.html * igt@kms_properties@crtc-properties-atomic: - {shard-rkl}: [SKIP][111] ([i915#1849]) -> [PASS][112] +1 similar issue [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-rkl-4/igt@kms_properties@crtc-properties-atomic.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-rkl-6/igt@kms_properties@crtc-properties-atomic.html * igt@kms_psr@primary_render: - {shard-rkl}: [SKIP][113] ([i915#1072]) -> [PASS][114] +1 similar issue [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-rkl-4/igt@kms_psr@primary_render.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-rkl-6/igt@kms_psr@primary_render.html * igt@kms_psr@psr2_sprite_blt: - shard-iclb: [SKIP][115] ([fdo#109441]) -> [PASS][116] +1 similar issue [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-iclb7/igt@kms_psr@psr2_sprite_blt.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglb: [SKIP][117] ([i915#5519]) -> [PASS][118] [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-tglb6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-tglb2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_pwrite_crc: - {shard-rkl}: [SKIP][119] ([i915#1845] / [i915#4098]) -> [PASS][120] +14 similar issues [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-rkl-2/igt@kms_pwrite_crc.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-rkl-6/igt@kms_pwrite_crc.html * igt@perf@blocking: - shard-skl: [FAIL][121] ([i915#1542]) -> [PASS][122] [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-skl1/igt@perf@blocking.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-skl1/igt@perf@blocking.html * igt@perf@polling-small-buf: - {shard-rkl}: [FAIL][123] ([i915#1722]) -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-rkl-4/igt@perf@polling-small-buf.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-rkl-5/igt@perf@polling-small-buf.html * igt@prime_vgem@basic-read: - {shard-rkl}: [SKIP][125] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-rkl-4/igt@prime_vgem@basic-read.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-rkl-5/igt@prime_vgem@basic-read.html #### Warnings #### * igt@gem_ctx_param@invalid-param-get: - shard-skl: [SKIP][127] ([fdo#109271]) -> ([PASS][128], [SKIP][129]) ([fdo#109271]) +2 similar issues [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-skl3/igt@gem_ctx_param@invalid-param-get.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-skl2/igt@gem_ctx_param@invalid-param-get.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-skl3/igt@gem_ctx_param@invalid-param-get.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1: - shard-apl: [DMESG-FAIL][130] ([IGT#6]) -> [FAIL][131] ([i915#4573]) +1 similar issue [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-apl8/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-apl1/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-dp-1.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf: - shard-iclb: [SKIP][132] ([i915#658]) -> [SKIP][133] ([i915#2920]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-iclb7/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-iclb: [SKIP][134] ([i915#2920]) -> [SKIP][135] ([fdo#111068] / [i915#658]) +1 similar issue [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12484/shard-iclb2/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/shard-iclb3/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#6]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/6 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542 [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3763]: https://gitlab.freedesktop.org/drm/intel/issues/3763 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6453]: https://gitlab.freedesktop.org/drm/intel/issues/6453 [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7128]: https://gitlab.freedesktop.org/drm/intel/issues/7128 [i915#7256]: https://gitlab.freedesktop.org/drm/intel/issues/7256 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 [i915#7672]: https://gitlab.freedesktop.org/drm/intel/issues/7672 [i915#7673]: https://gitlab.freedesktop.org/drm/intel/issues/7673 [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * Linux: CI_DRM_12484 -> Patchwork_111780v1 CI-20190529: 20190529 CI_DRM_12484: 77e03ccd7fc350435bb8b82cb5d5126bea437113 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7085: 11af20de3877b23a244b816453bfc41d83591a15 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_111780v1: 77e03ccd7fc350435bb8b82cb5d5126bea437113 @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111780v1/index.html [-- Attachment #2: Type: text/html, Size: 40020 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2022-12-13 13:52 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-12-08 14:23 [Intel-gfx] [PATCH] drm/i915: add new "soc" sub-directory and move PCH and DRAM code there Jani Nikula 2022-12-08 14:45 ` Rodrigo Vivi 2022-12-13 13:51 ` Jani Nikula 2022-12-08 17:32 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork 2022-12-08 17:33 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork 2022-12-08 17:55 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2022-12-09 7:26 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox