* [PATCH] drm/i915: use IS_ENABLED() instead of defined() on config options
@ 2024-09-04 14:52 Jani Nikula
2024-09-04 15:57 ` Dixit, Ashutosh
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Jani Nikula @ 2024-09-04 14:52 UTC (permalink / raw)
To: intel-gfx; +Cc: jani.nikula
Prefer IS_ENABLED() instead of defined() for checking whether a kconfig
option is enabled.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_display_irq.c | 2 +-
drivers/gpu/drm/i915/display/intel_dp_tunnel.h | 2 +-
drivers/gpu/drm/i915/gem/i915_gem_pm.c | 2 +-
drivers/gpu/drm/i915/gt/uc/intel_guc_fw.c | 2 +-
drivers/gpu/drm/i915/gt/uc/intel_guc_log.c | 2 +-
drivers/gpu/drm/i915/gt/uc/intel_huc.c | 2 +-
drivers/gpu/drm/i915/i915_trace.h | 2 +-
drivers/gpu/drm/i915/i915_utils.h | 2 +-
drivers/gpu/drm/i915/selftests/mock_gem_device.c | 4 ++--
9 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_irq.c b/drivers/gpu/drm/i915/display/intel_display_irq.c
index 73369847ed66..9c0b83abbe3c 100644
--- a/drivers/gpu/drm/i915/display/intel_display_irq.c
+++ b/drivers/gpu/drm/i915/display/intel_display_irq.c
@@ -298,7 +298,7 @@ void i915_enable_asle_pipestat(struct drm_i915_private *dev_priv)
spin_unlock_irq(&dev_priv->irq_lock);
}
-#if defined(CONFIG_DEBUG_FS)
+#if IS_ENABLED(CONFIG_DEBUG_FS)
static void display_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
enum pipe pipe,
u32 crc0, u32 crc1,
diff --git a/drivers/gpu/drm/i915/display/intel_dp_tunnel.h b/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
index a0c00b7d3303..e9314cf25a19 100644
--- a/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
+++ b/drivers/gpu/drm/i915/display/intel_dp_tunnel.h
@@ -20,7 +20,7 @@ struct intel_dp;
struct intel_encoder;
struct intel_link_bw_limits;
-#if defined(CONFIG_DRM_I915_DP_TUNNEL) && defined(I915)
+#if IS_ENABLED(CONFIG_DRM_I915_DP_TUNNEL) && defined(I915)
int intel_dp_tunnel_detect(struct intel_dp *intel_dp, struct drm_modeset_acquire_ctx *ctx);
void intel_dp_tunnel_disconnect(struct intel_dp *intel_dp);
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_pm.c b/drivers/gpu/drm/i915/gem/i915_gem_pm.c
index 3b27218aabe2..900c08337942 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_pm.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_pm.c
@@ -13,7 +13,7 @@
#include "i915_driver.h"
#include "i915_drv.h"
-#if defined(CONFIG_X86)
+#if IS_ENABLED(CONFIG_X86)
#include <asm/smp.h>
#else
#define wbinvd_on_all_cpus() \
diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_fw.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_fw.c
index 23f54c84cbab..fe53e8eccf4b 100644
--- a/drivers/gpu/drm/i915/gt/uc/intel_guc_fw.c
+++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_fw.c
@@ -145,7 +145,7 @@ static inline bool guc_load_done(struct intel_uncore *uncore, u32 *status, bool
* an end user should hit the timeout is in case of extreme thermal throttling.
* And a system that is that hot during boot is probably dead anyway!
*/
-#if defined(CONFIG_DRM_I915_DEBUG_GEM)
+#if IS_ENABLED(CONFIG_DRM_I915_DEBUG_GEM)
#define GUC_LOAD_RETRY_LIMIT 20
#else
#define GUC_LOAD_RETRY_LIMIT 3
diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_log.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_log.c
index bf16351c9349..222c95f62156 100644
--- a/drivers/gpu/drm/i915/gt/uc/intel_guc_log.c
+++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_log.c
@@ -14,7 +14,7 @@
#include "intel_guc_log.h"
#include "intel_guc_print.h"
-#if defined(CONFIG_DRM_I915_DEBUG_GUC)
+#if IS_ENABLED(CONFIG_DRM_I915_DEBUG_GUC)
#define GUC_LOG_DEFAULT_CRASH_BUFFER_SIZE SZ_2M
#define GUC_LOG_DEFAULT_DEBUG_BUFFER_SIZE SZ_16M
#define GUC_LOG_DEFAULT_CAPTURE_BUFFER_SIZE SZ_1M
diff --git a/drivers/gpu/drm/i915/gt/uc/intel_huc.c b/drivers/gpu/drm/i915/gt/uc/intel_huc.c
index 2d9152eb7282..d7ac31c3254c 100644
--- a/drivers/gpu/drm/i915/gt/uc/intel_huc.c
+++ b/drivers/gpu/drm/i915/gt/uc/intel_huc.c
@@ -455,7 +455,7 @@ static const char *auth_mode_string(struct intel_huc *huc,
* an end user should hit the timeout is in case of extreme thermal throttling.
* And a system that is that hot during boot is probably dead anyway!
*/
-#if defined(CONFIG_DRM_I915_DEBUG_GEM)
+#if IS_ENABLED(CONFIG_DRM_I915_DEBUG_GEM)
#define HUC_LOAD_RETRY_LIMIT 20
#else
#define HUC_LOAD_RETRY_LIMIT 3
diff --git a/drivers/gpu/drm/i915/i915_trace.h b/drivers/gpu/drm/i915/i915_trace.h
index ce1cbee1b39d..09d89bdf82f4 100644
--- a/drivers/gpu/drm/i915/i915_trace.h
+++ b/drivers/gpu/drm/i915/i915_trace.h
@@ -322,7 +322,7 @@ DEFINE_EVENT(i915_request, i915_request_add,
TP_ARGS(rq)
);
-#if defined(CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS)
+#if IS_ENABLED(CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS)
DEFINE_EVENT(i915_request, i915_request_guc_submit,
TP_PROTO(struct i915_request *rq),
TP_ARGS(rq)
diff --git a/drivers/gpu/drm/i915/i915_utils.h b/drivers/gpu/drm/i915/i915_utils.h
index 71bdc89bd621..609214231ffc 100644
--- a/drivers/gpu/drm/i915/i915_utils.h
+++ b/drivers/gpu/drm/i915/i915_utils.h
@@ -270,7 +270,7 @@ wait_remaining_ms_from_jiffies(unsigned long timestamp_jiffies, int to_wait_ms)
#define wait_for(COND, MS) _wait_for((COND), (MS) * 1000, 10, 1000)
/* If CONFIG_PREEMPT_COUNT is disabled, in_atomic() always reports false. */
-#if defined(CONFIG_DRM_I915_DEBUG) && defined(CONFIG_PREEMPT_COUNT)
+#if IS_ENABLED(CONFIG_DRM_I915_DEBUG) && IS_ENABLED(CONFIG_PREEMPT_COUNT)
# define _WAIT_FOR_ATOMIC_CHECK(ATOMIC) WARN_ON_ONCE((ATOMIC) && !in_atomic())
#else
# define _WAIT_FOR_ATOMIC_CHECK(ATOMIC) do { } while (0)
diff --git a/drivers/gpu/drm/i915/selftests/mock_gem_device.c b/drivers/gpu/drm/i915/selftests/mock_gem_device.c
index 91794ca17a58..70f3d7bf47d0 100644
--- a/drivers/gpu/drm/i915/selftests/mock_gem_device.c
+++ b/drivers/gpu/drm/i915/selftests/mock_gem_device.c
@@ -137,7 +137,7 @@ static const struct intel_device_info mock_info = {
struct drm_i915_private *mock_gem_device(void)
{
-#if IS_ENABLED(CONFIG_IOMMU_API) && defined(CONFIG_INTEL_IOMMU)
+#if IS_ENABLED(CONFIG_IOMMU_API) && IS_ENABLED(CONFIG_INTEL_IOMMU)
static struct dev_iommu fake_iommu = { .priv = (void *)-1 };
#endif
struct drm_i915_private *i915;
@@ -153,7 +153,7 @@ struct drm_i915_private *mock_gem_device(void)
dev_set_name(&pdev->dev, "mock");
dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
-#if IS_ENABLED(CONFIG_IOMMU_API) && defined(CONFIG_INTEL_IOMMU)
+#if IS_ENABLED(CONFIG_IOMMU_API) && IS_ENABLED(CONFIG_INTEL_IOMMU)
/* HACK to disable iommu for the fake device; force identity mapping */
pdev->dev.iommu = &fake_iommu;
#endif
--
2.39.2
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH] drm/i915: use IS_ENABLED() instead of defined() on config options 2024-09-04 14:52 [PATCH] drm/i915: use IS_ENABLED() instead of defined() on config options Jani Nikula @ 2024-09-04 15:57 ` Dixit, Ashutosh 2024-09-05 18:17 ` Jani Nikula 2024-09-04 16:21 ` ✗ Fi.CI.SPARSE: warning for " Patchwork ` (2 subsequent siblings) 3 siblings, 1 reply; 6+ messages in thread From: Dixit, Ashutosh @ 2024-09-04 15:57 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx On Wed, 04 Sep 2024 07:52:18 -0700, Jani Nikula wrote: > > Prefer IS_ENABLED() instead of defined() for checking whether a kconfig > option is enabled. Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> > > Signed-off-by: Jani Nikula <jani.nikula@intel.com> > --- > drivers/gpu/drm/i915/display/intel_display_irq.c | 2 +- > drivers/gpu/drm/i915/display/intel_dp_tunnel.h | 2 +- > drivers/gpu/drm/i915/gem/i915_gem_pm.c | 2 +- > drivers/gpu/drm/i915/gt/uc/intel_guc_fw.c | 2 +- > drivers/gpu/drm/i915/gt/uc/intel_guc_log.c | 2 +- > drivers/gpu/drm/i915/gt/uc/intel_huc.c | 2 +- > drivers/gpu/drm/i915/i915_trace.h | 2 +- > drivers/gpu/drm/i915/i915_utils.h | 2 +- > drivers/gpu/drm/i915/selftests/mock_gem_device.c | 4 ++-- > 9 files changed, 10 insertions(+), 10 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_display_irq.c b/drivers/gpu/drm/i915/display/intel_display_irq.c > index 73369847ed66..9c0b83abbe3c 100644 > --- a/drivers/gpu/drm/i915/display/intel_display_irq.c > +++ b/drivers/gpu/drm/i915/display/intel_display_irq.c > @@ -298,7 +298,7 @@ void i915_enable_asle_pipestat(struct drm_i915_private *dev_priv) > spin_unlock_irq(&dev_priv->irq_lock); > } > > -#if defined(CONFIG_DEBUG_FS) > +#if IS_ENABLED(CONFIG_DEBUG_FS) > static void display_pipe_crc_irq_handler(struct drm_i915_private *dev_priv, > enum pipe pipe, > u32 crc0, u32 crc1, > diff --git a/drivers/gpu/drm/i915/display/intel_dp_tunnel.h b/drivers/gpu/drm/i915/display/intel_dp_tunnel.h > index a0c00b7d3303..e9314cf25a19 100644 > --- a/drivers/gpu/drm/i915/display/intel_dp_tunnel.h > +++ b/drivers/gpu/drm/i915/display/intel_dp_tunnel.h > @@ -20,7 +20,7 @@ struct intel_dp; > struct intel_encoder; > struct intel_link_bw_limits; > > -#if defined(CONFIG_DRM_I915_DP_TUNNEL) && defined(I915) > +#if IS_ENABLED(CONFIG_DRM_I915_DP_TUNNEL) && defined(I915) > > int intel_dp_tunnel_detect(struct intel_dp *intel_dp, struct drm_modeset_acquire_ctx *ctx); > void intel_dp_tunnel_disconnect(struct intel_dp *intel_dp); > diff --git a/drivers/gpu/drm/i915/gem/i915_gem_pm.c b/drivers/gpu/drm/i915/gem/i915_gem_pm.c > index 3b27218aabe2..900c08337942 100644 > --- a/drivers/gpu/drm/i915/gem/i915_gem_pm.c > +++ b/drivers/gpu/drm/i915/gem/i915_gem_pm.c > @@ -13,7 +13,7 @@ > #include "i915_driver.h" > #include "i915_drv.h" > > -#if defined(CONFIG_X86) > +#if IS_ENABLED(CONFIG_X86) > #include <asm/smp.h> > #else > #define wbinvd_on_all_cpus() \ > diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_fw.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_fw.c > index 23f54c84cbab..fe53e8eccf4b 100644 > --- a/drivers/gpu/drm/i915/gt/uc/intel_guc_fw.c > +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_fw.c > @@ -145,7 +145,7 @@ static inline bool guc_load_done(struct intel_uncore *uncore, u32 *status, bool > * an end user should hit the timeout is in case of extreme thermal throttling. > * And a system that is that hot during boot is probably dead anyway! > */ > -#if defined(CONFIG_DRM_I915_DEBUG_GEM) > +#if IS_ENABLED(CONFIG_DRM_I915_DEBUG_GEM) > #define GUC_LOAD_RETRY_LIMIT 20 > #else > #define GUC_LOAD_RETRY_LIMIT 3 > diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_log.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_log.c > index bf16351c9349..222c95f62156 100644 > --- a/drivers/gpu/drm/i915/gt/uc/intel_guc_log.c > +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_log.c > @@ -14,7 +14,7 @@ > #include "intel_guc_log.h" > #include "intel_guc_print.h" > > -#if defined(CONFIG_DRM_I915_DEBUG_GUC) > +#if IS_ENABLED(CONFIG_DRM_I915_DEBUG_GUC) > #define GUC_LOG_DEFAULT_CRASH_BUFFER_SIZE SZ_2M > #define GUC_LOG_DEFAULT_DEBUG_BUFFER_SIZE SZ_16M > #define GUC_LOG_DEFAULT_CAPTURE_BUFFER_SIZE SZ_1M > diff --git a/drivers/gpu/drm/i915/gt/uc/intel_huc.c b/drivers/gpu/drm/i915/gt/uc/intel_huc.c > index 2d9152eb7282..d7ac31c3254c 100644 > --- a/drivers/gpu/drm/i915/gt/uc/intel_huc.c > +++ b/drivers/gpu/drm/i915/gt/uc/intel_huc.c > @@ -455,7 +455,7 @@ static const char *auth_mode_string(struct intel_huc *huc, > * an end user should hit the timeout is in case of extreme thermal throttling. > * And a system that is that hot during boot is probably dead anyway! > */ > -#if defined(CONFIG_DRM_I915_DEBUG_GEM) > +#if IS_ENABLED(CONFIG_DRM_I915_DEBUG_GEM) > #define HUC_LOAD_RETRY_LIMIT 20 > #else > #define HUC_LOAD_RETRY_LIMIT 3 > diff --git a/drivers/gpu/drm/i915/i915_trace.h b/drivers/gpu/drm/i915/i915_trace.h > index ce1cbee1b39d..09d89bdf82f4 100644 > --- a/drivers/gpu/drm/i915/i915_trace.h > +++ b/drivers/gpu/drm/i915/i915_trace.h > @@ -322,7 +322,7 @@ DEFINE_EVENT(i915_request, i915_request_add, > TP_ARGS(rq) > ); > > -#if defined(CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS) > +#if IS_ENABLED(CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS) > DEFINE_EVENT(i915_request, i915_request_guc_submit, > TP_PROTO(struct i915_request *rq), > TP_ARGS(rq) > diff --git a/drivers/gpu/drm/i915/i915_utils.h b/drivers/gpu/drm/i915/i915_utils.h > index 71bdc89bd621..609214231ffc 100644 > --- a/drivers/gpu/drm/i915/i915_utils.h > +++ b/drivers/gpu/drm/i915/i915_utils.h > @@ -270,7 +270,7 @@ wait_remaining_ms_from_jiffies(unsigned long timestamp_jiffies, int to_wait_ms) > #define wait_for(COND, MS) _wait_for((COND), (MS) * 1000, 10, 1000) > > /* If CONFIG_PREEMPT_COUNT is disabled, in_atomic() always reports false. */ > -#if defined(CONFIG_DRM_I915_DEBUG) && defined(CONFIG_PREEMPT_COUNT) > +#if IS_ENABLED(CONFIG_DRM_I915_DEBUG) && IS_ENABLED(CONFIG_PREEMPT_COUNT) > # define _WAIT_FOR_ATOMIC_CHECK(ATOMIC) WARN_ON_ONCE((ATOMIC) && !in_atomic()) > #else > # define _WAIT_FOR_ATOMIC_CHECK(ATOMIC) do { } while (0) > diff --git a/drivers/gpu/drm/i915/selftests/mock_gem_device.c b/drivers/gpu/drm/i915/selftests/mock_gem_device.c > index 91794ca17a58..70f3d7bf47d0 100644 > --- a/drivers/gpu/drm/i915/selftests/mock_gem_device.c > +++ b/drivers/gpu/drm/i915/selftests/mock_gem_device.c > @@ -137,7 +137,7 @@ static const struct intel_device_info mock_info = { > > struct drm_i915_private *mock_gem_device(void) > { > -#if IS_ENABLED(CONFIG_IOMMU_API) && defined(CONFIG_INTEL_IOMMU) > +#if IS_ENABLED(CONFIG_IOMMU_API) && IS_ENABLED(CONFIG_INTEL_IOMMU) > static struct dev_iommu fake_iommu = { .priv = (void *)-1 }; > #endif > struct drm_i915_private *i915; > @@ -153,7 +153,7 @@ struct drm_i915_private *mock_gem_device(void) > dev_set_name(&pdev->dev, "mock"); > dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64)); > > -#if IS_ENABLED(CONFIG_IOMMU_API) && defined(CONFIG_INTEL_IOMMU) > +#if IS_ENABLED(CONFIG_IOMMU_API) && IS_ENABLED(CONFIG_INTEL_IOMMU) > /* HACK to disable iommu for the fake device; force identity mapping */ > pdev->dev.iommu = &fake_iommu; > #endif > -- > 2.39.2 > ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] drm/i915: use IS_ENABLED() instead of defined() on config options 2024-09-04 15:57 ` Dixit, Ashutosh @ 2024-09-05 18:17 ` Jani Nikula 0 siblings, 0 replies; 6+ messages in thread From: Jani Nikula @ 2024-09-05 18:17 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: intel-gfx On Wed, 04 Sep 2024, "Dixit, Ashutosh" <ashutosh.dixit@intel.com> wrote: > On Wed, 04 Sep 2024 07:52:18 -0700, Jani Nikula wrote: >> >> Prefer IS_ENABLED() instead of defined() for checking whether a kconfig >> option is enabled. > > Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com> Thanks, pushed to din. BR, Jani. > >> >> Signed-off-by: Jani Nikula <jani.nikula@intel.com> >> --- >> drivers/gpu/drm/i915/display/intel_display_irq.c | 2 +- >> drivers/gpu/drm/i915/display/intel_dp_tunnel.h | 2 +- >> drivers/gpu/drm/i915/gem/i915_gem_pm.c | 2 +- >> drivers/gpu/drm/i915/gt/uc/intel_guc_fw.c | 2 +- >> drivers/gpu/drm/i915/gt/uc/intel_guc_log.c | 2 +- >> drivers/gpu/drm/i915/gt/uc/intel_huc.c | 2 +- >> drivers/gpu/drm/i915/i915_trace.h | 2 +- >> drivers/gpu/drm/i915/i915_utils.h | 2 +- >> drivers/gpu/drm/i915/selftests/mock_gem_device.c | 4 ++-- >> 9 files changed, 10 insertions(+), 10 deletions(-) >> >> diff --git a/drivers/gpu/drm/i915/display/intel_display_irq.c b/drivers/gpu/drm/i915/display/intel_display_irq.c >> index 73369847ed66..9c0b83abbe3c 100644 >> --- a/drivers/gpu/drm/i915/display/intel_display_irq.c >> +++ b/drivers/gpu/drm/i915/display/intel_display_irq.c >> @@ -298,7 +298,7 @@ void i915_enable_asle_pipestat(struct drm_i915_private *dev_priv) >> spin_unlock_irq(&dev_priv->irq_lock); >> } >> >> -#if defined(CONFIG_DEBUG_FS) >> +#if IS_ENABLED(CONFIG_DEBUG_FS) >> static void display_pipe_crc_irq_handler(struct drm_i915_private *dev_priv, >> enum pipe pipe, >> u32 crc0, u32 crc1, >> diff --git a/drivers/gpu/drm/i915/display/intel_dp_tunnel.h b/drivers/gpu/drm/i915/display/intel_dp_tunnel.h >> index a0c00b7d3303..e9314cf25a19 100644 >> --- a/drivers/gpu/drm/i915/display/intel_dp_tunnel.h >> +++ b/drivers/gpu/drm/i915/display/intel_dp_tunnel.h >> @@ -20,7 +20,7 @@ struct intel_dp; >> struct intel_encoder; >> struct intel_link_bw_limits; >> >> -#if defined(CONFIG_DRM_I915_DP_TUNNEL) && defined(I915) >> +#if IS_ENABLED(CONFIG_DRM_I915_DP_TUNNEL) && defined(I915) >> >> int intel_dp_tunnel_detect(struct intel_dp *intel_dp, struct drm_modeset_acquire_ctx *ctx); >> void intel_dp_tunnel_disconnect(struct intel_dp *intel_dp); >> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_pm.c b/drivers/gpu/drm/i915/gem/i915_gem_pm.c >> index 3b27218aabe2..900c08337942 100644 >> --- a/drivers/gpu/drm/i915/gem/i915_gem_pm.c >> +++ b/drivers/gpu/drm/i915/gem/i915_gem_pm.c >> @@ -13,7 +13,7 @@ >> #include "i915_driver.h" >> #include "i915_drv.h" >> >> -#if defined(CONFIG_X86) >> +#if IS_ENABLED(CONFIG_X86) >> #include <asm/smp.h> >> #else >> #define wbinvd_on_all_cpus() \ >> diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_fw.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_fw.c >> index 23f54c84cbab..fe53e8eccf4b 100644 >> --- a/drivers/gpu/drm/i915/gt/uc/intel_guc_fw.c >> +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_fw.c >> @@ -145,7 +145,7 @@ static inline bool guc_load_done(struct intel_uncore *uncore, u32 *status, bool >> * an end user should hit the timeout is in case of extreme thermal throttling. >> * And a system that is that hot during boot is probably dead anyway! >> */ >> -#if defined(CONFIG_DRM_I915_DEBUG_GEM) >> +#if IS_ENABLED(CONFIG_DRM_I915_DEBUG_GEM) >> #define GUC_LOAD_RETRY_LIMIT 20 >> #else >> #define GUC_LOAD_RETRY_LIMIT 3 >> diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_log.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_log.c >> index bf16351c9349..222c95f62156 100644 >> --- a/drivers/gpu/drm/i915/gt/uc/intel_guc_log.c >> +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_log.c >> @@ -14,7 +14,7 @@ >> #include "intel_guc_log.h" >> #include "intel_guc_print.h" >> >> -#if defined(CONFIG_DRM_I915_DEBUG_GUC) >> +#if IS_ENABLED(CONFIG_DRM_I915_DEBUG_GUC) >> #define GUC_LOG_DEFAULT_CRASH_BUFFER_SIZE SZ_2M >> #define GUC_LOG_DEFAULT_DEBUG_BUFFER_SIZE SZ_16M >> #define GUC_LOG_DEFAULT_CAPTURE_BUFFER_SIZE SZ_1M >> diff --git a/drivers/gpu/drm/i915/gt/uc/intel_huc.c b/drivers/gpu/drm/i915/gt/uc/intel_huc.c >> index 2d9152eb7282..d7ac31c3254c 100644 >> --- a/drivers/gpu/drm/i915/gt/uc/intel_huc.c >> +++ b/drivers/gpu/drm/i915/gt/uc/intel_huc.c >> @@ -455,7 +455,7 @@ static const char *auth_mode_string(struct intel_huc *huc, >> * an end user should hit the timeout is in case of extreme thermal throttling. >> * And a system that is that hot during boot is probably dead anyway! >> */ >> -#if defined(CONFIG_DRM_I915_DEBUG_GEM) >> +#if IS_ENABLED(CONFIG_DRM_I915_DEBUG_GEM) >> #define HUC_LOAD_RETRY_LIMIT 20 >> #else >> #define HUC_LOAD_RETRY_LIMIT 3 >> diff --git a/drivers/gpu/drm/i915/i915_trace.h b/drivers/gpu/drm/i915/i915_trace.h >> index ce1cbee1b39d..09d89bdf82f4 100644 >> --- a/drivers/gpu/drm/i915/i915_trace.h >> +++ b/drivers/gpu/drm/i915/i915_trace.h >> @@ -322,7 +322,7 @@ DEFINE_EVENT(i915_request, i915_request_add, >> TP_ARGS(rq) >> ); >> >> -#if defined(CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS) >> +#if IS_ENABLED(CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS) >> DEFINE_EVENT(i915_request, i915_request_guc_submit, >> TP_PROTO(struct i915_request *rq), >> TP_ARGS(rq) >> diff --git a/drivers/gpu/drm/i915/i915_utils.h b/drivers/gpu/drm/i915/i915_utils.h >> index 71bdc89bd621..609214231ffc 100644 >> --- a/drivers/gpu/drm/i915/i915_utils.h >> +++ b/drivers/gpu/drm/i915/i915_utils.h >> @@ -270,7 +270,7 @@ wait_remaining_ms_from_jiffies(unsigned long timestamp_jiffies, int to_wait_ms) >> #define wait_for(COND, MS) _wait_for((COND), (MS) * 1000, 10, 1000) >> >> /* If CONFIG_PREEMPT_COUNT is disabled, in_atomic() always reports false. */ >> -#if defined(CONFIG_DRM_I915_DEBUG) && defined(CONFIG_PREEMPT_COUNT) >> +#if IS_ENABLED(CONFIG_DRM_I915_DEBUG) && IS_ENABLED(CONFIG_PREEMPT_COUNT) >> # define _WAIT_FOR_ATOMIC_CHECK(ATOMIC) WARN_ON_ONCE((ATOMIC) && !in_atomic()) >> #else >> # define _WAIT_FOR_ATOMIC_CHECK(ATOMIC) do { } while (0) >> diff --git a/drivers/gpu/drm/i915/selftests/mock_gem_device.c b/drivers/gpu/drm/i915/selftests/mock_gem_device.c >> index 91794ca17a58..70f3d7bf47d0 100644 >> --- a/drivers/gpu/drm/i915/selftests/mock_gem_device.c >> +++ b/drivers/gpu/drm/i915/selftests/mock_gem_device.c >> @@ -137,7 +137,7 @@ static const struct intel_device_info mock_info = { >> >> struct drm_i915_private *mock_gem_device(void) >> { >> -#if IS_ENABLED(CONFIG_IOMMU_API) && defined(CONFIG_INTEL_IOMMU) >> +#if IS_ENABLED(CONFIG_IOMMU_API) && IS_ENABLED(CONFIG_INTEL_IOMMU) >> static struct dev_iommu fake_iommu = { .priv = (void *)-1 }; >> #endif >> struct drm_i915_private *i915; >> @@ -153,7 +153,7 @@ struct drm_i915_private *mock_gem_device(void) >> dev_set_name(&pdev->dev, "mock"); >> dma_coerce_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64)); >> >> -#if IS_ENABLED(CONFIG_IOMMU_API) && defined(CONFIG_INTEL_IOMMU) >> +#if IS_ENABLED(CONFIG_IOMMU_API) && IS_ENABLED(CONFIG_INTEL_IOMMU) >> /* HACK to disable iommu for the fake device; force identity mapping */ >> pdev->dev.iommu = &fake_iommu; >> #endif >> -- >> 2.39.2 >> -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Fi.CI.SPARSE: warning for drm/i915: use IS_ENABLED() instead of defined() on config options 2024-09-04 14:52 [PATCH] drm/i915: use IS_ENABLED() instead of defined() on config options Jani Nikula 2024-09-04 15:57 ` Dixit, Ashutosh @ 2024-09-04 16:21 ` Patchwork 2024-09-04 16:57 ` ✓ Fi.CI.BAT: success " Patchwork 2024-09-05 14:13 ` ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-09-04 16:21 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx == Series Details == Series: drm/i915: use IS_ENABLED() instead of defined() on config options URL : https://patchwork.freedesktop.org/series/138215/ 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] 6+ messages in thread
* ✓ Fi.CI.BAT: success for drm/i915: use IS_ENABLED() instead of defined() on config options 2024-09-04 14:52 [PATCH] drm/i915: use IS_ENABLED() instead of defined() on config options Jani Nikula 2024-09-04 15:57 ` Dixit, Ashutosh 2024-09-04 16:21 ` ✗ Fi.CI.SPARSE: warning for " Patchwork @ 2024-09-04 16:57 ` Patchwork 2024-09-05 14:13 ` ✗ Fi.CI.IGT: failure " Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-09-04 16:57 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 9084 bytes --] == Series Details == Series: drm/i915: use IS_ENABLED() instead of defined() on config options URL : https://patchwork.freedesktop.org/series/138215/ State : success == Summary == CI Bug Log - changes from CI_DRM_15358 -> Patchwork_138215v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/index.html Participating hosts (37 -> 39) ------------------------------ Additional (5): bat-arlh-3 fi-bsw-n3050 fi-tgl-1115g4 fi-cfl-8109u fi-kbl-8809g Missing (3): fi-blb-e6850 bat-dg2-11 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_138215v1: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_selftest@live@gt_timelines: - {bat-arlh-3}: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/bat-arlh-3/igt@i915_selftest@live@gt_timelines.html Known issues ------------ Here are the changes found in Patchwork_138215v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - fi-tgl-1115g4: NOTRUN -> [SKIP][2] ([i915#9318]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/fi-tgl-1115g4/igt@debugfs_test@basic-hwmon.html * igt@fbdev@read: - bat-arls-1: [PASS][3] -> [DMESG-FAIL][4] ([i915#12102]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/bat-arls-1/igt@fbdev@read.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/bat-arls-1/igt@fbdev@read.html * igt@gem_huc_copy@huc-copy: - fi-cfl-8109u: NOTRUN -> [SKIP][5] ([i915#2190]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/fi-cfl-8109u/igt@gem_huc_copy@huc-copy.html - fi-kbl-8809g: NOTRUN -> [SKIP][6] ([i915#2190]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html - fi-tgl-1115g4: NOTRUN -> [SKIP][7] ([i915#2190]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/fi-tgl-1115g4/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-8809g: NOTRUN -> [SKIP][8] ([i915#4613]) +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/fi-kbl-8809g/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@parallel-random-engines: - fi-tgl-1115g4: NOTRUN -> [SKIP][9] ([i915#4613]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/fi-tgl-1115g4/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@random-engines: - fi-bsw-n3050: NOTRUN -> [SKIP][10] +19 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/fi-bsw-n3050/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-random: - fi-cfl-8109u: NOTRUN -> [SKIP][11] ([i915#4613]) +3 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/fi-cfl-8109u/igt@gem_lmem_swapping@verify-random.html * igt@i915_pm_rpm@module-reload: - fi-kbl-7567u: [PASS][12] -> [DMESG-WARN][13] ([i915#11621] / [i915#1982]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/fi-kbl-7567u/igt@i915_pm_rpm@module-reload.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/fi-kbl-7567u/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@gt_heartbeat: - fi-kbl-7567u: [PASS][14] -> [DMESG-WARN][15] ([i915#11621]) +31 other tests dmesg-warn [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/fi-kbl-7567u/igt@i915_selftest@live@gt_heartbeat.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/fi-kbl-7567u/igt@i915_selftest@live@gt_heartbeat.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-tgl-1115g4: NOTRUN -> [SKIP][16] ([i915#4103]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/fi-tgl-1115g4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_dsc@dsc-basic: - fi-tgl-1115g4: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#3840]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/fi-tgl-1115g4/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - fi-kbl-8809g: NOTRUN -> [SKIP][18] +30 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/fi-kbl-8809g/igt@kms_force_connector_basic@force-load-detect.html - fi-tgl-1115g4: NOTRUN -> [SKIP][19] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/fi-tgl-1115g4/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pm_backlight@basic-brightness: - fi-cfl-8109u: NOTRUN -> [SKIP][20] +11 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/fi-cfl-8109u/igt@kms_pm_backlight@basic-brightness.html - fi-tgl-1115g4: NOTRUN -> [SKIP][21] ([i915#9812]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/fi-tgl-1115g4/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-sprite-plane-onoff: - fi-tgl-1115g4: NOTRUN -> [SKIP][22] ([i915#9732]) +3 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/fi-tgl-1115g4/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_setmode@basic-clone-single-crtc: - fi-tgl-1115g4: NOTRUN -> [SKIP][23] ([i915#3555]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/fi-tgl-1115g4/igt@kms_setmode@basic-clone-single-crtc.html #### Possible fixes #### * igt@fbdev@info: - bat-arls-1: [DMESG-WARN][24] ([i915#12102]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/bat-arls-1/igt@fbdev@info.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/bat-arls-1/igt@fbdev@info.html * igt@i915_selftest@live@hangcheck: - bat-arls-2: [DMESG-WARN][26] ([i915#11349]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/bat-arls-2/igt@i915_selftest@live@hangcheck.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/bat-arls-2/igt@i915_selftest@live@hangcheck.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10196 [i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343 [i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346 [i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349 [i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621 [i915#11666]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11666 [i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11723 [i915#11724]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11724 [i915#11725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11725 [i915#11726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11726 [i915#12102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12102 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886 Build changes ------------- * Linux: CI_DRM_15358 -> Patchwork_138215v1 CI-20190529: 20190529 CI_DRM_15358: c72d3ffc0308b71024de6f80c3596668991c67ea @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8004: 0e443bec0ccfb56c2754437b465fc197ee4fd481 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_138215v1: c72d3ffc0308b71024de6f80c3596668991c67ea @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/index.html [-- Attachment #2: Type: text/html, Size: 9768 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Fi.CI.IGT: failure for drm/i915: use IS_ENABLED() instead of defined() on config options 2024-09-04 14:52 [PATCH] drm/i915: use IS_ENABLED() instead of defined() on config options Jani Nikula ` (2 preceding siblings ...) 2024-09-04 16:57 ` ✓ Fi.CI.BAT: success " Patchwork @ 2024-09-05 14:13 ` Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-09-05 14:13 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 76316 bytes --] == Series Details == Series: drm/i915: use IS_ENABLED() instead of defined() on config options URL : https://patchwork.freedesktop.org/series/138215/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15358_full -> Patchwork_138215v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_138215v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_138215v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_138215v1_full: ### IGT changes ### #### Possible regressions #### * igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-b-hdmi-a-1: - shard-glk: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-glk6/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-b-hdmi-a-1.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-glk2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-factor-0-25@pipe-b-hdmi-a-1.html Known issues ------------ Here are the changes found in Patchwork_138215v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][3] ([i915#6230]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-6/igt@api_intel_bb@crc32.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#11078]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-2/igt@device_reset@unbind-cold-reset-rebind.html - shard-dg1: NOTRUN -> [SKIP][5] ([i915#11078]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8414]) +14 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@drm_fdinfo@virtual-busy-idle: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#8414]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-15/igt@drm_fdinfo@virtual-busy-idle.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#7697]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-5/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@ctrl-surf-copy: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-2/igt@gem_ccs@suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][11] ([i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-3/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#8562]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-5/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#280]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-5/igt@gem_ctx_sseu@engines.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#4525]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-6/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_balancer@sliced: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#4812]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@gem_exec_balancer@sliced.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-tglu: NOTRUN -> [SKIP][17] ([i915#6334]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-7/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#3539] / [i915#4852]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-15/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-tglu: NOTRUN -> [FAIL][19] ([i915#2842]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-3/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-none@vecs0: - shard-rkl: [PASS][20] -> [FAIL][21] ([i915#2842]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-rkl-2/igt@gem_exec_fair@basic-none@vecs0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-5/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][22] -> [FAIL][23] ([i915#2842]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo: - shard-dg1: NOTRUN -> [SKIP][24] ([i915#3539]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@gem_exec_fair@basic-pace-solo.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: NOTRUN -> [FAIL][25] ([i915#2842]) +3 other tests fail [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-5/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_flush@basic-wb-set-default: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#3539] / [i915#4852]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@gem_exec_flush@basic-wb-set-default.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3281]) +8 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-3/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#3281]) +13 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-5/igt@gem_exec_reloc@basic-wc-read-noreloc.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#3281]) +8 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-15/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#4860]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-3/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#4860]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#4613]) +4 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][33] ([i915#4613]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-glk8/igt@gem_lmem_swapping@random-engines.html * igt@gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#4083]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-15/igt@gem_mmap@bad-object.html * igt@gem_mmap_gtt@coherency: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#4077]) +7 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@gem_mmap_gtt@coherency.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4083]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-3/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3282]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-3/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#3282]) +13 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pwrite_snooped: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#3282]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@gem_pwrite_snooped.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4270]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#4270]) +4 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-6/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#4270]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-tglu: NOTRUN -> [SKIP][43] ([i915#4270]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-3/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#5190] / [i915#8428]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-3/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#8411]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4079]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4079]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-3/igt@gem_set_tiling_vs_gtt.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4885]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4077]) +5 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-3/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4879]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][51] ([i915#3323]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-glk8/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#3297]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#3297]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-15/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@relocations: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#3281] / [i915#3297]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-4/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-unmap: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#3297]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-3/igt@gem_userptr_blits@unsync-unmap.html * igt@gen9_exec_parse@bb-start-far: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#2527]) +2 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-5/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@bb-start-out: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#2527]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#2856]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-3/igt@gen9_exec_parse@valid-registers.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4881]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@i915_fb_tiling.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][60] -> [ABORT][61] ([i915#9820]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html - shard-glk: [PASS][62] -> [ABORT][63] ([i915#9820]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-glk3/igt@i915_module_load@reload-with-fault-injection.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-glk3/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#6412]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-4/igt@i915_module_load@resize-bar.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#7091]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-3/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#8399]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-7/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rc6_residency@rc6-fence@gt0: - shard-tglu: NOTRUN -> [WARN][67] ([i915#2681]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-fence@gt0.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#11681] / [i915#6621]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-15/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@thresholds-idle: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#11681]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@i915_pm_rps@thresholds-idle.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#6245]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-5/igt@i915_query@hwconfig_table.html * igt@i915_query@test-query-geometry-subslices: - shard-tglu: NOTRUN -> [SKIP][71] ([i915#5723]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-7/igt@i915_query@test-query-geometry-subslices.html * igt@intel_hwmon@hwmon-read: - shard-tglu: NOTRUN -> [SKIP][72] ([i915#7707]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-3/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#5190]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4212]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#8709]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#9531]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-15/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs: - shard-glk: [PASS][77] -> [FAIL][78] ([i915#11859]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-glk2/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#1769] / [i915#3555]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][80] ([i915#1769] / [i915#3555]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#1769] / [i915#3555]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-15/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-8bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][82] ([i915#5286]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-7/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html * igt@kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#5286]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#5286]) +8 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][85] ([i915#4538] / [i915#5286]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#3638]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-2/igt@kms_big_fb@linear-64bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][87] ([i915#3638]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4538] / [i915#5190]) +9 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#4538]) +4 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_joiner@basic-force-joiner: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#10656]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-6/igt@kms_big_joiner@basic-force-joiner.html * igt@kms_big_joiner@invalid-modeset-force-joiner: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#10656]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-3/igt@kms_big_joiner@invalid-modeset-force-joiner.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#10307] / [i915#10434] / [i915#6095]) +8 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-2/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#10307] / [i915#6095]) +214 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][94] ([i915#6095]) +23 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-7/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#12042]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#6095]) +115 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#12042]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#6095]) +75 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-2/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#3742]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-6/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#11616] / [i915#7213]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-8/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#7828]) +11 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#7828]) +8 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-tglu: NOTRUN -> [SKIP][103] ([i915#7828]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-7/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#7828]) +5 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_color@deep-color: - shard-dg1: NOTRUN -> [SKIP][105] ([i915#3555]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@kms_color@deep-color.html * igt@kms_content_protection@content-type-change: - shard-tglu: NOTRUN -> [SKIP][106] ([i915#6944] / [i915#9424]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-3/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#3299]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#3116]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#3299]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#7118] / [i915#9424]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-3/igt@kms_content_protection@legacy.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#7118]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@kms_content_protection@srm.html - shard-rkl: NOTRUN -> [SKIP][112] ([i915#7118]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-6/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#7118] / [i915#9424]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-5/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#7116] / [i915#9424]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-15/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#3555]) +9 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][116] ([i915#11453]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-tglu: NOTRUN -> [SKIP][117] ([i915#3555]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#11453]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html - shard-rkl: NOTRUN -> [SKIP][119] ([i915#11453]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][120] +37 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#4103] / [i915#4213]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#4103]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][123] -> [FAIL][124] ([i915#2346]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#9067]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-3/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@torture-bo@pipe-a: - shard-snb: [PASS][126] -> [DMESG-WARN][127] ([i915#10166]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-snb4/igt@kms_cursor_legacy@torture-bo@pipe-a.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-snb7/igt@kms_cursor_legacy@torture-bo@pipe-a.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#9723]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-4/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#3555]) +7 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#3804]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#8812]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-fractional-bpp: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#3840]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: NOTRUN -> [SKIP][133] ([i915#3555] / [i915#3840]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-4/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#3555] / [i915#3840]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-3/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#3469]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#658]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-5/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][137] +12 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#8381]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-3/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#9934]) +4 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-18/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-tglu: NOTRUN -> [SKIP][140] ([i915#3637]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-7/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1: - shard-glk: [PASS][141] -> [FAIL][142] ([i915#79]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-glk2/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-glk1/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1.html * igt@kms_flip@flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#8381]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-15/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][144] ([i915#11961]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2.html * igt@kms_flip@wf_vblank-ts-check@b-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][145] ([i915#2122]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check@b-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#2587] / [i915#2672]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#2672]) +6 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#2672]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][149] ([i915#2587] / [i915#2672]) +2 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][150] +36 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][151] +28 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#3458]) +9 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#3458]) +10 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#8708]) +14 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#8708]) +15 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#1825]) +44 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#9766]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw: - shard-glk: NOTRUN -> [SKIP][158] +126 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-glk8/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#3023]) +34 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#5354]) +23 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_hdmi_inject@inject-audio: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#433]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@bpc-switch: - shard-tglu: NOTRUN -> [SKIP][162] ([i915#3555] / [i915#8228]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-7/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#3555] / [i915#8228]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#3555] / [i915#8228]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-8/igt@kms_hdr@static-toggle-suspend.html - shard-rkl: NOTRUN -> [SKIP][165] ([i915#3555] / [i915#8228]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][166] ([i915#10647]) +1 other test fail [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-glk8/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#8821]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-3/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][168] ([i915#8292]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#9423]) +23 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#9423]) +9 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#9423]) +15 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][172] ([i915#5176] / [i915#9423]) +3 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][173] ([i915#9423]) +3 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#5235]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#9728]) +7 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#9728]) +8 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-13/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#5354]) +2 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-5/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#5354]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: NOTRUN -> [FAIL][179] ([i915#9295]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [PASS][180] -> [SKIP][181] ([i915#4281]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#9340]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [PASS][183] -> [SKIP][184] ([i915#9519]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][185] -> [SKIP][186] ([i915#9519]) +2 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#6524]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-2/igt@kms_prime@basic-modeset-hybrid.html - shard-dg1: NOTRUN -> [SKIP][188] ([i915#6524]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#11520]) +3 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#11520]) +4 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-2/igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#11520]) +3 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#11520]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#9683]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-dpms: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#1072] / [i915#9673] / [i915#9732]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-11/igt@kms_psr@fbc-pr-dpms.html * igt@kms_psr@fbc-psr2-sprite-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#1072] / [i915#9732]) +14 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-3/igt@kms_psr@fbc-psr2-sprite-mmap-cpu.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][196] ([i915#9732]) +6 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-7/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#1072] / [i915#9732]) +28 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-2/igt@kms_psr@psr2-suspend.html - shard-dg1: NOTRUN -> [SKIP][198] ([i915#1072] / [i915#9732]) +15 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@kms_psr@psr2-suspend.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#9685]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#11131]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#5289]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-tglu: NOTRUN -> [SKIP][202] ([i915#5289]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#8623]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-7/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-tglu: [PASS][204] -> [FAIL][205] ([i915#9196]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html * igt@kms_vrr@lobf: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#11920]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#9906]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-5/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#9906]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#9906]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-glk: NOTRUN -> [SKIP][210] ([i915#2437]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-glk8/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#2436]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-2/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#7387]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@perf@global-sseu-config.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#2434]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@perf@mi-rpc.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][214] -> [FAIL][215] ([i915#4349]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-8/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][216] ([i915#11823]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-3/igt@perf_pmu@module-unload.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#3291] / [i915#3708]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-4/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#3291] / [i915#3708]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-6/igt@prime_vgem@basic-read.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#9917]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-3/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#9917]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-5/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-dg1: NOTRUN -> [FAIL][221] ([i915#9781]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-16/igt@syncobj_timeline@invalid-wait-zero-handles.html #### Possible fixes #### * igt@gem_ctx_engines@invalid-engines: - shard-tglu: [FAIL][222] ([i915#12027]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-tglu-8/igt@gem_ctx_engines@invalid-engines.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-5/igt@gem_ctx_engines@invalid-engines.html - shard-glk: [FAIL][224] ([i915#12027]) -> [PASS][225] [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-glk1/igt@gem_ctx_engines@invalid-engines.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-glk1/igt@gem_ctx_engines@invalid-engines.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [TIMEOUT][226] ([i915#5493]) -> [PASS][227] [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [ABORT][228] ([i915#9820]) -> [PASS][229] [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][230] ([i915#11808]) -> [PASS][231] [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-1.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-tglu-9/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-mtlp: [DMESG-FAIL][232] ([i915#11627] / [i915#2017]) -> [PASS][233] [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_flip@2x-busy-flip@bc-hdmi-a1-hdmi-a2: - shard-glk: [DMESG-WARN][234] ([i915#118]) -> [PASS][235] [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-glk3/igt@kms_flip@2x-busy-flip@bc-hdmi-a1-hdmi-a2.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-glk8/igt@kms_flip@2x-busy-flip@bc-hdmi-a1-hdmi-a2.html * igt@kms_flip@plain-flip-ts-check@b-vga1: - shard-snb: [FAIL][236] ([i915#2122]) -> [PASS][237] +3 other tests pass [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-snb7/igt@kms_flip@plain-flip-ts-check@b-vga1.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-snb5/igt@kms_flip@plain-flip-ts-check@b-vga1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - shard-dg2: [FAIL][238] ([i915#6880]) -> [PASS][239] [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: [SKIP][240] ([i915#9519]) -> [PASS][241] [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [SKIP][242] ([i915#9519]) -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-mtlp: [FAIL][244] ([i915#9196]) -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html * igt@perf_pmu@busy-double-start@ccs0: - shard-dg2: [FAIL][246] ([i915#4349]) -> [PASS][247] [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-dg2-11/igt@perf_pmu@busy-double-start@ccs0.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-8/igt@perf_pmu@busy-double-start@ccs0.html * igt@perf_pmu@busy-double-start@vcs0: - shard-mtlp: [FAIL][248] ([i915#4349]) -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-mtlp-4/igt@perf_pmu@busy-double-start@vcs0.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-mtlp-7/igt@perf_pmu@busy-double-start@vcs0.html * igt@perf_pmu@busy-no-semaphores@vecs0: - shard-dg2: [INCOMPLETE][250] ([i915#9853]) -> [PASS][251] [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-dg2-8/igt@perf_pmu@busy-no-semaphores@vecs0.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-11/igt@perf_pmu@busy-no-semaphores@vecs0.html #### Warnings #### * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [ABORT][252] ([i915#9697] / [i915#9820]) -> [ABORT][253] ([i915#9820]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-rkl-6/igt@i915_module_load@reload-with-fault-injection.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][254] ([i915#10131] / [i915#9697]) -> [ABORT][255] ([i915#10887] / [i915#11231]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: [SKIP][256] ([i915#11453]) -> [SKIP][257] ([i915#11453] / [i915#3359]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-dg2-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: [SKIP][258] ([i915#3458]) -> [SKIP][259] ([i915#10433] / [i915#3458]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_psr@psr-primary-mmap-cpu: - shard-dg2: [SKIP][260] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][261] ([i915#1072] / [i915#9732]) +9 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-dg2-11/igt@kms_psr@psr-primary-mmap-cpu.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-5/igt@kms_psr@psr-primary-mmap-cpu.html * igt@kms_psr@psr2-no-drrs: - shard-dg2: [SKIP][262] ([i915#1072] / [i915#9732]) -> [SKIP][263] ([i915#1072] / [i915#9673] / [i915#9732]) +8 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-dg2-8/igt@kms_psr@psr2-no-drrs.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-11/igt@kms_psr@psr2-no-drrs.html * igt@kms_rotation_crc@bad-pixel-format: - shard-dg2: [SKIP][264] ([i915#11131]) -> [SKIP][265] ([i915#11131] / [i915#4235]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-dg2-8/igt@kms_rotation_crc@bad-pixel-format.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-11/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: [SKIP][266] ([i915#11131] / [i915#4235]) -> [SKIP][267] ([i915#11131]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-dg2-8/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: [FAIL][268] ([i915#10959]) -> [SKIP][269] [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15358/shard-glk3/igt@kms_tiled_display@basic-test-pattern.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138215v1/shard-glk8/igt@kms_tiled_display@basic-test-pattern.html [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10166 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131 [i915#11231]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11231 [i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616 [i915#11627]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11627 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808 [i915#11823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11823 [i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11961]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11961 [i915#12027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12027 [i915#12042]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12042 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2017]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2017 [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [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#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#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [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#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [i915#433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/433 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879 [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#7091]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7091 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213 [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387 [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#79]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/79 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292 [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#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196 [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9728]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9853]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9853 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * Linux: CI_DRM_15358 -> Patchwork_138215v1 CI-20190529: 20190529 CI_DRM_15358: c72d3ffc0308b71024de6f80c3596668991c67ea @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8004: 0e443bec0ccfb56c2754437b465fc197ee4fd481 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_138215v1: c72d3ffc0308b71024de6f80c3596668991c67ea @ 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_138215v1/index.html [-- Attachment #2: Type: text/html, Size: 92791 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-09-05 18:17 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-09-04 14:52 [PATCH] drm/i915: use IS_ENABLED() instead of defined() on config options Jani Nikula 2024-09-04 15:57 ` Dixit, Ashutosh 2024-09-05 18:17 ` Jani Nikula 2024-09-04 16:21 ` ✗ Fi.CI.SPARSE: warning for " Patchwork 2024-09-04 16:57 ` ✓ Fi.CI.BAT: success " Patchwork 2024-09-05 14:13 ` ✗ 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