* [PATCH 1/2] drm/i915/dmc: convert intel_dmc_print_error_state() to drm_printer
@ 2024-06-06 14:07 Jani Nikula
2024-06-06 14:07 ` [PATCH 2/2] drm/i915/overlay: convert intel_overlay_print_error_state() " Jani Nikula
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Jani Nikula @ 2024-06-06 14:07 UTC (permalink / raw)
To: intel-gfx; +Cc: jani.nikula
Use the regular drm printer, so we can drop the i915_error_printf()
usage.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_dmc.c | 15 +++++++--------
drivers/gpu/drm/i915/display/intel_dmc.h | 6 +++---
drivers/gpu/drm/i915/i915_gpu_error.c | 3 ++-
3 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_dmc.c b/drivers/gpu/drm/i915/display/intel_dmc.c
index 852c11aa3205..73977b173898 100644
--- a/drivers/gpu/drm/i915/display/intel_dmc.c
+++ b/drivers/gpu/drm/i915/display/intel_dmc.c
@@ -26,7 +26,6 @@
#include <linux/firmware.h>
#include "i915_drv.h"
-#include "i915_gpu_error.h"
#include "i915_reg.h"
#include "intel_de.h"
#include "intel_dmc.h"
@@ -1185,7 +1184,7 @@ void intel_dmc_fini(struct drm_i915_private *i915)
}
}
-void intel_dmc_print_error_state(struct drm_i915_error_state_buf *m,
+void intel_dmc_print_error_state(struct drm_printer *p,
struct drm_i915_private *i915)
{
struct intel_dmc *dmc = i915_to_dmc(i915);
@@ -1193,13 +1192,13 @@ void intel_dmc_print_error_state(struct drm_i915_error_state_buf *m,
if (!HAS_DMC(i915))
return;
- i915_error_printf(m, "DMC initialized: %s\n", str_yes_no(dmc));
- i915_error_printf(m, "DMC loaded: %s\n",
- str_yes_no(intel_dmc_has_payload(i915)));
+ drm_printf(p, "DMC initialized: %s\n", str_yes_no(dmc));
+ drm_printf(p, "DMC loaded: %s\n",
+ str_yes_no(intel_dmc_has_payload(i915)));
if (dmc)
- i915_error_printf(m, "DMC fw version: %d.%d\n",
- DMC_VERSION_MAJOR(dmc->version),
- DMC_VERSION_MINOR(dmc->version));
+ drm_printf(p, "DMC fw version: %d.%d\n",
+ DMC_VERSION_MAJOR(dmc->version),
+ DMC_VERSION_MINOR(dmc->version));
}
static int intel_dmc_debugfs_status_show(struct seq_file *m, void *unused)
diff --git a/drivers/gpu/drm/i915/display/intel_dmc.h b/drivers/gpu/drm/i915/display/intel_dmc.h
index fd607afff2ef..54cff6002e31 100644
--- a/drivers/gpu/drm/i915/display/intel_dmc.h
+++ b/drivers/gpu/drm/i915/display/intel_dmc.h
@@ -8,9 +8,9 @@
#include <linux/types.h>
-struct drm_i915_error_state_buf;
-struct drm_i915_private;
enum pipe;
+struct drm_i915_private;
+struct drm_printer;
void intel_dmc_init(struct drm_i915_private *i915);
void intel_dmc_load_program(struct drm_i915_private *i915);
@@ -22,7 +22,7 @@ void intel_dmc_suspend(struct drm_i915_private *i915);
void intel_dmc_resume(struct drm_i915_private *i915);
bool intel_dmc_has_payload(struct drm_i915_private *i915);
void intel_dmc_debugfs_register(struct drm_i915_private *i915);
-void intel_dmc_print_error_state(struct drm_i915_error_state_buf *m,
+void intel_dmc_print_error_state(struct drm_printer *p,
struct drm_i915_private *i915);
void assert_dmc_loaded(struct drm_i915_private *i915);
diff --git a/drivers/gpu/drm/i915/i915_gpu_error.c b/drivers/gpu/drm/i915/i915_gpu_error.c
index 625b3c024540..3fee7ad0ec51 100644
--- a/drivers/gpu/drm/i915/i915_gpu_error.c
+++ b/drivers/gpu/drm/i915/i915_gpu_error.c
@@ -836,6 +836,7 @@ static void err_print_gt_engines(struct drm_i915_error_state_buf *m,
static void __err_print_to_sgl(struct drm_i915_error_state_buf *m,
struct i915_gpu_coredump *error)
{
+ struct drm_printer p = i915_error_printer(m);
const struct intel_engine_coredump *ee;
struct timespec64 ts;
@@ -873,7 +874,7 @@ static void __err_print_to_sgl(struct drm_i915_error_state_buf *m,
err_printf(m, "IOMMU enabled?: %d\n", error->iommu);
- intel_dmc_print_error_state(m, m->i915);
+ intel_dmc_print_error_state(&p, m->i915);
err_printf(m, "RPM wakelock: %s\n", str_yes_no(error->wakelock));
err_printf(m, "PM suspended: %s\n", str_yes_no(error->suspended));
--
2.39.2
^ permalink raw reply related [flat|nested] 9+ messages in thread* [PATCH 2/2] drm/i915/overlay: convert intel_overlay_print_error_state() to drm_printer 2024-06-06 14:07 [PATCH 1/2] drm/i915/dmc: convert intel_dmc_print_error_state() to drm_printer Jani Nikula @ 2024-06-06 14:07 ` Jani Nikula 2024-06-06 14:27 ` Rodrigo Vivi 2024-06-06 14:25 ` [PATCH 1/2] drm/i915/dmc: convert intel_dmc_print_error_state() " Rodrigo Vivi ` (4 subsequent siblings) 5 siblings, 1 reply; 9+ messages in thread From: Jani Nikula @ 2024-06-06 14:07 UTC (permalink / raw) To: intel-gfx; +Cc: jani.nikula Use the regular drm printer, so we can drop the i915_error_printf() usage. Signed-off-by: Jani Nikula <jani.nikula@intel.com> --- drivers/gpu/drm/i915/display/intel_overlay.c | 11 +++++------ drivers/gpu/drm/i915/display/intel_overlay.h | 6 +++--- drivers/gpu/drm/i915/i915_gpu_error.c | 2 +- 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_overlay.c b/drivers/gpu/drm/i915/display/intel_overlay.c index 1c2099ed5514..b97087f8e311 100644 --- a/drivers/gpu/drm/i915/display/intel_overlay.c +++ b/drivers/gpu/drm/i915/display/intel_overlay.c @@ -1485,15 +1485,14 @@ intel_overlay_capture_error_state(struct drm_i915_private *dev_priv) } void -intel_overlay_print_error_state(struct drm_i915_error_state_buf *m, +intel_overlay_print_error_state(struct drm_printer *p, struct intel_overlay_error_state *error) { - i915_error_printf(m, "Overlay, status: 0x%08x, interrupt: 0x%08x\n", - error->dovsta, error->isr); - i915_error_printf(m, " Register file at 0x%08lx:\n", - error->base); + drm_printf(p, "Overlay, status: 0x%08x, interrupt: 0x%08x\n", + error->dovsta, error->isr); + drm_printf(p, " Register file at 0x%08lx:\n", error->base); -#define P(x) i915_error_printf(m, " " #x ": 0x%08x\n", error->regs.x) +#define P(x) drm_printf(p, " " #x ": 0x%08x\n", error->regs.x) P(OBUF_0Y); P(OBUF_1Y); P(OBUF_0U); diff --git a/drivers/gpu/drm/i915/display/intel_overlay.h b/drivers/gpu/drm/i915/display/intel_overlay.h index c3f68fce6f08..f28a09c062d0 100644 --- a/drivers/gpu/drm/i915/display/intel_overlay.h +++ b/drivers/gpu/drm/i915/display/intel_overlay.h @@ -8,8 +8,8 @@ struct drm_device; struct drm_file; -struct drm_i915_error_state_buf; struct drm_i915_private; +struct drm_printer; struct intel_overlay; struct intel_overlay_error_state; @@ -24,7 +24,7 @@ int intel_overlay_attrs_ioctl(struct drm_device *dev, void *data, void intel_overlay_reset(struct drm_i915_private *dev_priv); struct intel_overlay_error_state * intel_overlay_capture_error_state(struct drm_i915_private *dev_priv); -void intel_overlay_print_error_state(struct drm_i915_error_state_buf *e, +void intel_overlay_print_error_state(struct drm_printer *p, struct intel_overlay_error_state *error); #else static inline void intel_overlay_setup(struct drm_i915_private *dev_priv) @@ -55,7 +55,7 @@ intel_overlay_capture_error_state(struct drm_i915_private *dev_priv) { return NULL; } -static inline void intel_overlay_print_error_state(struct drm_i915_error_state_buf *e, +static inline void intel_overlay_print_error_state(struct drm_printer *p, struct intel_overlay_error_state *error) { } diff --git a/drivers/gpu/drm/i915/i915_gpu_error.c b/drivers/gpu/drm/i915/i915_gpu_error.c index 3fee7ad0ec51..96c6cafd5b9e 100644 --- a/drivers/gpu/drm/i915/i915_gpu_error.c +++ b/drivers/gpu/drm/i915/i915_gpu_error.c @@ -905,7 +905,7 @@ static void __err_print_to_sgl(struct drm_i915_error_state_buf *m, } if (error->overlay) - intel_overlay_print_error_state(m, error->overlay); + intel_overlay_print_error_state(&p, error->overlay); err_print_capabilities(m, error); err_print_params(m, &error->params); -- 2.39.2 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH 2/2] drm/i915/overlay: convert intel_overlay_print_error_state() to drm_printer 2024-06-06 14:07 ` [PATCH 2/2] drm/i915/overlay: convert intel_overlay_print_error_state() " Jani Nikula @ 2024-06-06 14:27 ` Rodrigo Vivi 2024-06-07 7:19 ` Jani Nikula 0 siblings, 1 reply; 9+ messages in thread From: Rodrigo Vivi @ 2024-06-06 14:27 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx On Thu, Jun 06, 2024 at 05:07:05PM +0300, Jani Nikula wrote: > Use the regular drm printer, so we can drop the i915_error_printf() > usage. > > Signed-off-by: Jani Nikula <jani.nikula@intel.com> > --- > drivers/gpu/drm/i915/display/intel_overlay.c | 11 +++++------ > drivers/gpu/drm/i915/display/intel_overlay.h | 6 +++--- > drivers/gpu/drm/i915/i915_gpu_error.c | 2 +- > 3 files changed, 9 insertions(+), 10 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_overlay.c b/drivers/gpu/drm/i915/display/intel_overlay.c > index 1c2099ed5514..b97087f8e311 100644 > --- a/drivers/gpu/drm/i915/display/intel_overlay.c > +++ b/drivers/gpu/drm/i915/display/intel_overlay.c > @@ -1485,15 +1485,14 @@ intel_overlay_capture_error_state(struct drm_i915_private *dev_priv) > } > > void > -intel_overlay_print_error_state(struct drm_i915_error_state_buf *m, > +intel_overlay_print_error_state(struct drm_printer *p, > struct intel_overlay_error_state *error) > { > - i915_error_printf(m, "Overlay, status: 0x%08x, interrupt: 0x%08x\n", > - error->dovsta, error->isr); > - i915_error_printf(m, " Register file at 0x%08lx:\n", > - error->base); > + drm_printf(p, "Overlay, status: 0x%08x, interrupt: 0x%08x\n", > + error->dovsta, error->isr); > + drm_printf(p, " Register file at 0x%08lx:\n", error->base); > > -#define P(x) i915_error_printf(m, " " #x ": 0x%08x\n", error->regs.x) > +#define P(x) drm_printf(p, " " #x ": 0x%08x\n", error->regs.x) > P(OBUF_0Y); > P(OBUF_1Y); > P(OBUF_0U); I always prefer the direct code, then macros like this, but orthogonal to this patch: Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > diff --git a/drivers/gpu/drm/i915/display/intel_overlay.h b/drivers/gpu/drm/i915/display/intel_overlay.h > index c3f68fce6f08..f28a09c062d0 100644 > --- a/drivers/gpu/drm/i915/display/intel_overlay.h > +++ b/drivers/gpu/drm/i915/display/intel_overlay.h > @@ -8,8 +8,8 @@ > > struct drm_device; > struct drm_file; > -struct drm_i915_error_state_buf; > struct drm_i915_private; > +struct drm_printer; > struct intel_overlay; > struct intel_overlay_error_state; > > @@ -24,7 +24,7 @@ int intel_overlay_attrs_ioctl(struct drm_device *dev, void *data, > void intel_overlay_reset(struct drm_i915_private *dev_priv); > struct intel_overlay_error_state * > intel_overlay_capture_error_state(struct drm_i915_private *dev_priv); > -void intel_overlay_print_error_state(struct drm_i915_error_state_buf *e, > +void intel_overlay_print_error_state(struct drm_printer *p, > struct intel_overlay_error_state *error); > #else > static inline void intel_overlay_setup(struct drm_i915_private *dev_priv) > @@ -55,7 +55,7 @@ intel_overlay_capture_error_state(struct drm_i915_private *dev_priv) > { > return NULL; > } > -static inline void intel_overlay_print_error_state(struct drm_i915_error_state_buf *e, > +static inline void intel_overlay_print_error_state(struct drm_printer *p, > struct intel_overlay_error_state *error) > { > } > diff --git a/drivers/gpu/drm/i915/i915_gpu_error.c b/drivers/gpu/drm/i915/i915_gpu_error.c > index 3fee7ad0ec51..96c6cafd5b9e 100644 > --- a/drivers/gpu/drm/i915/i915_gpu_error.c > +++ b/drivers/gpu/drm/i915/i915_gpu_error.c > @@ -905,7 +905,7 @@ static void __err_print_to_sgl(struct drm_i915_error_state_buf *m, > } > > if (error->overlay) > - intel_overlay_print_error_state(m, error->overlay); > + intel_overlay_print_error_state(&p, error->overlay); > > err_print_capabilities(m, error); > err_print_params(m, &error->params); > -- > 2.39.2 > ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 2/2] drm/i915/overlay: convert intel_overlay_print_error_state() to drm_printer 2024-06-06 14:27 ` Rodrigo Vivi @ 2024-06-07 7:19 ` Jani Nikula 0 siblings, 0 replies; 9+ messages in thread From: Jani Nikula @ 2024-06-07 7:19 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: intel-gfx On Thu, 06 Jun 2024, Rodrigo Vivi <rodrigo.vivi@intel.com> wrote: > On Thu, Jun 06, 2024 at 05:07:05PM +0300, Jani Nikula wrote: >> Use the regular drm printer, so we can drop the i915_error_printf() >> usage. >> >> Signed-off-by: Jani Nikula <jani.nikula@intel.com> >> --- >> drivers/gpu/drm/i915/display/intel_overlay.c | 11 +++++------ >> drivers/gpu/drm/i915/display/intel_overlay.h | 6 +++--- >> drivers/gpu/drm/i915/i915_gpu_error.c | 2 +- >> 3 files changed, 9 insertions(+), 10 deletions(-) >> >> diff --git a/drivers/gpu/drm/i915/display/intel_overlay.c b/drivers/gpu/drm/i915/display/intel_overlay.c >> index 1c2099ed5514..b97087f8e311 100644 >> --- a/drivers/gpu/drm/i915/display/intel_overlay.c >> +++ b/drivers/gpu/drm/i915/display/intel_overlay.c >> @@ -1485,15 +1485,14 @@ intel_overlay_capture_error_state(struct drm_i915_private *dev_priv) >> } >> >> void >> -intel_overlay_print_error_state(struct drm_i915_error_state_buf *m, >> +intel_overlay_print_error_state(struct drm_printer *p, >> struct intel_overlay_error_state *error) >> { >> - i915_error_printf(m, "Overlay, status: 0x%08x, interrupt: 0x%08x\n", >> - error->dovsta, error->isr); >> - i915_error_printf(m, " Register file at 0x%08lx:\n", >> - error->base); >> + drm_printf(p, "Overlay, status: 0x%08x, interrupt: 0x%08x\n", >> + error->dovsta, error->isr); >> + drm_printf(p, " Register file at 0x%08lx:\n", error->base); >> >> -#define P(x) i915_error_printf(m, " " #x ": 0x%08x\n", error->regs.x) >> +#define P(x) drm_printf(p, " " #x ": 0x%08x\n", error->regs.x) >> P(OBUF_0Y); >> P(OBUF_1Y); >> P(OBUF_0U); > > I always prefer the direct code, then macros like this, but orthogonal to > this patch: Can't fix the world in one patch! ;) > Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Thanks, both pushed to din. BR, Jani. > >> diff --git a/drivers/gpu/drm/i915/display/intel_overlay.h b/drivers/gpu/drm/i915/display/intel_overlay.h >> index c3f68fce6f08..f28a09c062d0 100644 >> --- a/drivers/gpu/drm/i915/display/intel_overlay.h >> +++ b/drivers/gpu/drm/i915/display/intel_overlay.h >> @@ -8,8 +8,8 @@ >> >> struct drm_device; >> struct drm_file; >> -struct drm_i915_error_state_buf; >> struct drm_i915_private; >> +struct drm_printer; >> struct intel_overlay; >> struct intel_overlay_error_state; >> >> @@ -24,7 +24,7 @@ int intel_overlay_attrs_ioctl(struct drm_device *dev, void *data, >> void intel_overlay_reset(struct drm_i915_private *dev_priv); >> struct intel_overlay_error_state * >> intel_overlay_capture_error_state(struct drm_i915_private *dev_priv); >> -void intel_overlay_print_error_state(struct drm_i915_error_state_buf *e, >> +void intel_overlay_print_error_state(struct drm_printer *p, >> struct intel_overlay_error_state *error); >> #else >> static inline void intel_overlay_setup(struct drm_i915_private *dev_priv) >> @@ -55,7 +55,7 @@ intel_overlay_capture_error_state(struct drm_i915_private *dev_priv) >> { >> return NULL; >> } >> -static inline void intel_overlay_print_error_state(struct drm_i915_error_state_buf *e, >> +static inline void intel_overlay_print_error_state(struct drm_printer *p, >> struct intel_overlay_error_state *error) >> { >> } >> diff --git a/drivers/gpu/drm/i915/i915_gpu_error.c b/drivers/gpu/drm/i915/i915_gpu_error.c >> index 3fee7ad0ec51..96c6cafd5b9e 100644 >> --- a/drivers/gpu/drm/i915/i915_gpu_error.c >> +++ b/drivers/gpu/drm/i915/i915_gpu_error.c >> @@ -905,7 +905,7 @@ static void __err_print_to_sgl(struct drm_i915_error_state_buf *m, >> } >> >> if (error->overlay) >> - intel_overlay_print_error_state(m, error->overlay); >> + intel_overlay_print_error_state(&p, error->overlay); >> >> err_print_capabilities(m, error); >> err_print_params(m, &error->params); >> -- >> 2.39.2 >> -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 1/2] drm/i915/dmc: convert intel_dmc_print_error_state() to drm_printer 2024-06-06 14:07 [PATCH 1/2] drm/i915/dmc: convert intel_dmc_print_error_state() to drm_printer Jani Nikula 2024-06-06 14:07 ` [PATCH 2/2] drm/i915/overlay: convert intel_overlay_print_error_state() " Jani Nikula @ 2024-06-06 14:25 ` Rodrigo Vivi 2024-06-06 16:33 ` ✗ Fi.CI.CHECKPATCH: warning for series starting with [1/2] " Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Rodrigo Vivi @ 2024-06-06 14:25 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx On Thu, Jun 06, 2024 at 05:07:04PM +0300, Jani Nikula wrote: > Use the regular drm printer, so we can drop the i915_error_printf() > usage. > > Signed-off-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > --- > drivers/gpu/drm/i915/display/intel_dmc.c | 15 +++++++-------- > drivers/gpu/drm/i915/display/intel_dmc.h | 6 +++--- > drivers/gpu/drm/i915/i915_gpu_error.c | 3 ++- > 3 files changed, 12 insertions(+), 12 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_dmc.c b/drivers/gpu/drm/i915/display/intel_dmc.c > index 852c11aa3205..73977b173898 100644 > --- a/drivers/gpu/drm/i915/display/intel_dmc.c > +++ b/drivers/gpu/drm/i915/display/intel_dmc.c > @@ -26,7 +26,6 @@ > #include <linux/firmware.h> > > #include "i915_drv.h" > -#include "i915_gpu_error.h" > #include "i915_reg.h" > #include "intel_de.h" > #include "intel_dmc.h" > @@ -1185,7 +1184,7 @@ void intel_dmc_fini(struct drm_i915_private *i915) > } > } > > -void intel_dmc_print_error_state(struct drm_i915_error_state_buf *m, > +void intel_dmc_print_error_state(struct drm_printer *p, > struct drm_i915_private *i915) > { > struct intel_dmc *dmc = i915_to_dmc(i915); > @@ -1193,13 +1192,13 @@ void intel_dmc_print_error_state(struct drm_i915_error_state_buf *m, > if (!HAS_DMC(i915)) > return; > > - i915_error_printf(m, "DMC initialized: %s\n", str_yes_no(dmc)); > - i915_error_printf(m, "DMC loaded: %s\n", > - str_yes_no(intel_dmc_has_payload(i915))); > + drm_printf(p, "DMC initialized: %s\n", str_yes_no(dmc)); > + drm_printf(p, "DMC loaded: %s\n", > + str_yes_no(intel_dmc_has_payload(i915))); > if (dmc) > - i915_error_printf(m, "DMC fw version: %d.%d\n", > - DMC_VERSION_MAJOR(dmc->version), > - DMC_VERSION_MINOR(dmc->version)); > + drm_printf(p, "DMC fw version: %d.%d\n", > + DMC_VERSION_MAJOR(dmc->version), > + DMC_VERSION_MINOR(dmc->version)); > } > > static int intel_dmc_debugfs_status_show(struct seq_file *m, void *unused) > diff --git a/drivers/gpu/drm/i915/display/intel_dmc.h b/drivers/gpu/drm/i915/display/intel_dmc.h > index fd607afff2ef..54cff6002e31 100644 > --- a/drivers/gpu/drm/i915/display/intel_dmc.h > +++ b/drivers/gpu/drm/i915/display/intel_dmc.h > @@ -8,9 +8,9 @@ > > #include <linux/types.h> > > -struct drm_i915_error_state_buf; > -struct drm_i915_private; > enum pipe; > +struct drm_i915_private; > +struct drm_printer; > > void intel_dmc_init(struct drm_i915_private *i915); > void intel_dmc_load_program(struct drm_i915_private *i915); > @@ -22,7 +22,7 @@ void intel_dmc_suspend(struct drm_i915_private *i915); > void intel_dmc_resume(struct drm_i915_private *i915); > bool intel_dmc_has_payload(struct drm_i915_private *i915); > void intel_dmc_debugfs_register(struct drm_i915_private *i915); > -void intel_dmc_print_error_state(struct drm_i915_error_state_buf *m, > +void intel_dmc_print_error_state(struct drm_printer *p, > struct drm_i915_private *i915); > > void assert_dmc_loaded(struct drm_i915_private *i915); > diff --git a/drivers/gpu/drm/i915/i915_gpu_error.c b/drivers/gpu/drm/i915/i915_gpu_error.c > index 625b3c024540..3fee7ad0ec51 100644 > --- a/drivers/gpu/drm/i915/i915_gpu_error.c > +++ b/drivers/gpu/drm/i915/i915_gpu_error.c > @@ -836,6 +836,7 @@ static void err_print_gt_engines(struct drm_i915_error_state_buf *m, > static void __err_print_to_sgl(struct drm_i915_error_state_buf *m, > struct i915_gpu_coredump *error) > { > + struct drm_printer p = i915_error_printer(m); > const struct intel_engine_coredump *ee; > struct timespec64 ts; > > @@ -873,7 +874,7 @@ static void __err_print_to_sgl(struct drm_i915_error_state_buf *m, > > err_printf(m, "IOMMU enabled?: %d\n", error->iommu); > > - intel_dmc_print_error_state(m, m->i915); > + intel_dmc_print_error_state(&p, m->i915); > > err_printf(m, "RPM wakelock: %s\n", str_yes_no(error->wakelock)); > err_printf(m, "PM suspended: %s\n", str_yes_no(error->suspended)); > -- > 2.39.2 > ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for series starting with [1/2] drm/i915/dmc: convert intel_dmc_print_error_state() to drm_printer 2024-06-06 14:07 [PATCH 1/2] drm/i915/dmc: convert intel_dmc_print_error_state() to drm_printer Jani Nikula 2024-06-06 14:07 ` [PATCH 2/2] drm/i915/overlay: convert intel_overlay_print_error_state() " Jani Nikula 2024-06-06 14:25 ` [PATCH 1/2] drm/i915/dmc: convert intel_dmc_print_error_state() " Rodrigo Vivi @ 2024-06-06 16:33 ` Patchwork 2024-06-06 16:33 ` ✗ Fi.CI.SPARSE: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-06-06 16:33 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx == Series Details == Series: series starting with [1/2] drm/i915/dmc: convert intel_dmc_print_error_state() to drm_printer URL : https://patchwork.freedesktop.org/series/134572/ State : warning == Summary == Error: dim checkpatch failed 5f733b2e5ef9 drm/i915/dmc: convert intel_dmc_print_error_state() to drm_printer e6cab4f87514 drm/i915/overlay: convert intel_overlay_print_error_state() to drm_printer -:66: CHECK:LINE_SPACING: Please use a blank line after function/struct/union/enum declarations #66: FILE: drivers/gpu/drm/i915/display/intel_overlay.h:58: } +static inline void intel_overlay_print_error_state(struct drm_printer *p, total: 0 errors, 0 warnings, 1 checks, 53 lines checked ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.SPARSE: warning for series starting with [1/2] drm/i915/dmc: convert intel_dmc_print_error_state() to drm_printer 2024-06-06 14:07 [PATCH 1/2] drm/i915/dmc: convert intel_dmc_print_error_state() to drm_printer Jani Nikula ` (2 preceding siblings ...) 2024-06-06 16:33 ` ✗ Fi.CI.CHECKPATCH: warning for series starting with [1/2] " Patchwork @ 2024-06-06 16:33 ` Patchwork 2024-06-06 16:42 ` ✓ Fi.CI.BAT: success " Patchwork 2024-06-07 4:56 ` ✗ Fi.CI.IGT: failure " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-06-06 16:33 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx == Series Details == Series: series starting with [1/2] drm/i915/dmc: convert intel_dmc_print_error_state() to drm_printer URL : https://patchwork.freedesktop.org/series/134572/ State : warning == Summary == Error: dim sparse failed Sparse version: v0.6.2 Fast mode used, each commit won't be checked separately. +./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:116:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:147:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:149:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:153:26: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:155:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:173:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:175:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:179:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:181:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:185:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:187:9: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:191:35: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:16: warning: unreplaced symbol 'oldbit' +./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:194:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:236:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:238:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:243:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:245:9: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return' +./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:137:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:137:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:137:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:137:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:137:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:137:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:139:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:139:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:139:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:139:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:139:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:139:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'break' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'break' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'break' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'break' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'break' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'break' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'continue' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'continue' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'continue' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'continue' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'continue' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'continue' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1' +./include/asm-generic/bitops/generic-non-atomic.h:140:23: warning: unreplaced symbol '___p1' +./include/asm-generic/bitops/generic-non-atomic.h:140:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:140:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:140:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:140:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:140:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:140:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val' +./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p' +./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old' +./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask' +./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:151:1: warning: too many warnings +./include/asm-generic/bitops/instrumented-non-atomic.h:151:1: warning: too many warnings +./include/asm-generic/bitops/instrumented-non-atomic.h:151:1: warning: too many warnings +./include/asm-generic/bitops/instrumented-non-atomic.h:151:1: warning: too many warnings +./include/asm-generic/bitops/instrumented-non-atomic.h:151:1: warning: too many warnings +./include/asm-generic/bitops/instrumented-non-atomic.h:151:1: warning: too many warnings +./include/asm-generic/bitops/instrumented-non-atomic.h:154:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:154:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:154:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:154:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:154:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:154:9: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' +./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return' ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Fi.CI.BAT: success for series starting with [1/2] drm/i915/dmc: convert intel_dmc_print_error_state() to drm_printer 2024-06-06 14:07 [PATCH 1/2] drm/i915/dmc: convert intel_dmc_print_error_state() to drm_printer Jani Nikula ` (3 preceding siblings ...) 2024-06-06 16:33 ` ✗ Fi.CI.SPARSE: " Patchwork @ 2024-06-06 16:42 ` Patchwork 2024-06-07 4:56 ` ✗ Fi.CI.IGT: failure " Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-06-06 16:42 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 2574 bytes --] == Series Details == Series: series starting with [1/2] drm/i915/dmc: convert intel_dmc_print_error_state() to drm_printer URL : https://patchwork.freedesktop.org/series/134572/ State : success == Summary == CI Bug Log - changes from CI_DRM_14887 -> Patchwork_134572v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/index.html Participating hosts (40 -> 35) ------------------------------ Additional (1): fi-kbl-8809g Missing (6): fi-snb-2520m fi-cfl-8109u bat-dg2-14 bat-dg2-11 bat-jsl-1 bat-arls-3 Known issues ------------ Here are the changes found in Patchwork_134572v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-kbl-8809g: NOTRUN -> [SKIP][1] ([i915#2190]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-8809g: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/fi-kbl-8809g/igt@gem_lmem_swapping@basic.html * igt@i915_selftest@live@mman: - bat-dg2-8: [PASS][3] -> [DMESG-WARN][4] ([i915#10014]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/bat-dg2-8/igt@i915_selftest@live@mman.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/bat-dg2-8/igt@i915_selftest@live@mman.html * igt@kms_force_connector_basic@force-load-detect: - fi-kbl-8809g: NOTRUN -> [SKIP][5] +30 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/fi-kbl-8809g/igt@kms_force_connector_basic@force-load-detect.html [i915#10014]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10014 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 Build changes ------------- * Linux: CI_DRM_14887 -> Patchwork_134572v1 CI-20190529: 20190529 CI_DRM_14887: c23220e20a54d2e9b8ca1f163bf1e7718dde9b16 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7879: 08560f766a505e729dfee2846c1c11d28dd0e3d0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_134572v1: c23220e20a54d2e9b8ca1f163bf1e7718dde9b16 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/index.html [-- Attachment #2: Type: text/html, Size: 3261 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.IGT: failure for series starting with [1/2] drm/i915/dmc: convert intel_dmc_print_error_state() to drm_printer 2024-06-06 14:07 [PATCH 1/2] drm/i915/dmc: convert intel_dmc_print_error_state() to drm_printer Jani Nikula ` (4 preceding siblings ...) 2024-06-06 16:42 ` ✓ Fi.CI.BAT: success " Patchwork @ 2024-06-07 4:56 ` Patchwork 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-06-07 4:56 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 87043 bytes --] == Series Details == Series: series starting with [1/2] drm/i915/dmc: convert intel_dmc_print_error_state() to drm_printer URL : https://patchwork.freedesktop.org/series/134572/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14887_full -> Patchwork_134572v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_134572v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_134572v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (10 -> 9) ------------------------------ Missing (1): shard-snb-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_134572v1_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_gttfill@engines@bcs0: - shard-mtlp: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-mtlp-2/igt@gem_exec_gttfill@engines@bcs0.html * igt@kms_color@ctm-blue-to-red@pipe-c: - shard-dg1: [PASS][2] -> [INCOMPLETE][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-dg1-15/igt@kms_color@ctm-blue-to-red@pipe-c.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-18/igt@kms_color@ctm-blue-to-red@pipe-c.html * igt@kms_flip@2x-blocking-absolute-wf_vblank@ab-vga1-hdmi-a1: - shard-snb: [PASS][4] -> [ABORT][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-snb5/igt@kms_flip@2x-blocking-absolute-wf_vblank@ab-vga1-hdmi-a1.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-snb4/igt@kms_flip@2x-blocking-absolute-wf_vblank@ab-vga1-hdmi-a1.html Known issues ------------ Here are the changes found in Patchwork_134572v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#8411]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-1/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@device_reset@cold-reset-bound: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#11078]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-4/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#11078]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-3/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#8414]) +6 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-8/igt@drm_fdinfo@busy-idle@bcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@bcs0: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) +5 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@drm_fdinfo@most-busy-idle-check-all@bcs0.html * igt@drm_fdinfo@virtual-idle: - shard-rkl: [PASS][11] -> [FAIL][12] ([i915#7742]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-rkl-3/igt@drm_fdinfo@virtual-idle.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-1/igt@drm_fdinfo@virtual-idle.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-15/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [FAIL][16] ([i915#11265] / [i915#11279]) +7 other tests fail [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-8/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#7697]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-4/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [PASS][18] -> [FAIL][19] ([i915#6268]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-tglu-8/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@legacy-engines-mixed: - shard-snb: NOTRUN -> [SKIP][20] ([i915#1099]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-snb2/igt@gem_ctx_persistence@legacy-engines-mixed.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#280]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-4/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#280]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-6/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-rkl: NOTRUN -> [ABORT][23] ([i915#7975] / [i915#8213]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-5/igt@gem_eio@hibernate.html * igt@gem_eio@suspend: - shard-dg2: NOTRUN -> [FAIL][24] ([i915#11269]) +1 other test fail [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-8/igt@gem_eio@suspend.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#4812]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-10/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-sync: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#4771]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-5/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#4525]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-3/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][29] ([i915#6334]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-glk8/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#6344]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-5/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_capture@many-4k-zero: - shard-dg2: NOTRUN -> [FAIL][31] ([i915#9606]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-10/igt@gem_exec_capture@many-4k-zero.html - shard-rkl: NOTRUN -> [FAIL][32] ([i915#9606]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-3/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_fair@basic-deadline: - shard-glk: NOTRUN -> [FAIL][33] ([i915#2846]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-glk8/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-glk: NOTRUN -> [FAIL][34] ([i915#2842]) +1 other test fail [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-glk1/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: NOTRUN -> [FAIL][35] ([i915#2842]) +3 other tests fail [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-6/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace: - shard-dg1: NOTRUN -> [SKIP][36] ([i915#3539]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-share: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +4 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-4/igt@gem_exec_fair@basic-pace-share.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-rkl: [PASS][38] -> [FAIL][39] ([i915#2842]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-8/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_reloc@basic-cpu-read: - shard-rkl: NOTRUN -> [SKIP][42] ([i915#3281]) +6 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-1/igt@gem_exec_reloc@basic-cpu-read.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3281]) +9 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-8/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#3281]) +10 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#4812]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: NOTRUN -> [FAIL][46] ([i915#11279]) +4 other tests fail [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-8/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_exec_suspend@basic-s3-devices@lmem0: - shard-dg1: NOTRUN -> [FAIL][47] ([i915#11269]) +2 other tests fail [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@gem_exec_suspend@basic-s3-devices@lmem0.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4860]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-4/igt@gem_fence_thrash@bo-copy.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4860]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#4613] / [i915#7582]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-random@lmem0: - shard-dg1: NOTRUN -> [FAIL][51] ([i915#10378]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#4613]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][53] ([i915#4613]) +5 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-glk8/igt@gem_lmem_swapping@random-engines.html * igt@gem_mmap_gtt@basic-short: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4077]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-mtlp-2/igt@gem_mmap_gtt@basic-short.html * igt@gem_mmap_gtt@basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4077]) +8 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@gem_mmap_gtt@basic-small-copy.html * igt@gem_mmap_wc@pf-nonblock: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4083]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-8/igt@gem_mmap_wc@pf-nonblock.html * igt@gem_mmap_wc@write-cpu-read-wc-unflushed: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4083]) +12 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][58] ([i915#2658]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-glk8/igt@gem_pread@exhaustion.html * igt@gem_pwrite_snooped: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#3282]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-15/igt@gem_pwrite_snooped.html * igt@gem_pxp@display-protected-crc: - shard-rkl: NOTRUN -> [SKIP][60] ([i915#4270]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-1/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-snb: NOTRUN -> [SKIP][61] +111 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-snb4/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-tglu: NOTRUN -> [SKIP][62] ([i915#4270]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-tglu-8/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4270]) +4 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4270]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-10/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_readwrite@read-bad-handle: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3282]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-5/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#5190] / [i915#8428]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-4/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4079]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4079]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-4/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4885]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-15/igt@gem_softpin@evict-snoop.html * igt@gem_userptr_blits@coherency-sync: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#3297]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][71] ([i915#3323]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-glk3/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@relocations: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#3281] / [i915#3297]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-1/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#3297] / [i915#4958]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#3297]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#3297]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-mtlp-2/igt@gem_userptr_blits@unsync-unmap-cycles.html - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3297]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-10/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gem_workarounds@suspend-resume-context: - shard-dg1: NOTRUN -> [FAIL][77] ([i915#10177] / [i915#11279]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@gem_workarounds@suspend-resume-context.html * igt@gen9_exec_parse@bb-chained: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#2527]) +4 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#2527]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-6/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#2856]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-10/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [PASS][81] -> [INCOMPLETE][82] ([i915#10047] / [i915#9820]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [PASS][83] -> [ABORT][84] ([i915#10131] / [i915#10887] / [i915#9820]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [INCOMPLETE][85] ([i915#1982] / [i915#9849]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#7178]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#8399]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-1/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-dg2: NOTRUN -> [FAIL][88] ([i915#10314] / [i915#11279]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-10/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#6621]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@thresholds-idle@gt0: - shard-dg1: NOTRUN -> [SKIP][90] ([i915#8925]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@i915_pm_rps@thresholds-idle@gt0.html * igt@i915_pm_rps@thresholds@gt0: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#8925]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-5/igt@i915_pm_rps@thresholds@gt0.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][92] ([i915#7443]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-tglu-8/igt@i915_suspend@basic-s3-without-i915.html * igt@intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][93] ([i915#7707]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-6/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#4212]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-4/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#4212]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#4215] / [i915#5190]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#8709]) +7 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#8709]) +11 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#1769] / [i915#3555]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#1769] / [i915#3555]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#4538] / [i915#5286]) +7 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#5286]) +3 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#3638]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-5/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#3638]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#5190]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-4/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#4538]) +7 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#4538] / [i915#5190]) +5 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-10/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_joiner@invalid-modeset: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#10656]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@kms_big_joiner@invalid-modeset.html * igt@kms_big_joiner@invalid-modeset-force-joiner: - shard-tglu: NOTRUN -> [SKIP][109] ([i915#10656]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-tglu-8/igt@kms_big_joiner@invalid-modeset-force-joiner.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#6095]) +103 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-15/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#10278]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#10307] / [i915#6095]) +186 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-5/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#6095]) +49 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#10278]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@kms_ccs@crc-primary-basic-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#10278]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#10307] / [i915#10434] / [i915#6095]) +8 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-10/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][117] ([i915#6095]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-tglu-8/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#7213]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#3742]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_frames@dp-crc-single: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#7828]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-mtlp-2/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#7828]) +4 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-4/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#7828]) +7 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#7828]) +9 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#3299]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#3299]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-4/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#9424]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-6/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#7118] / [i915#9424]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-4/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#7116] / [i915#9424]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#3359]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][130] ([i915#3359]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#3359]) +2 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#3555]) +2 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#4103] / [i915#4213]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-rkl: NOTRUN -> [SKIP][134] ([i915#4103]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-snb: [PASS][135] -> [ABORT][136] ([i915#8852]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-snb4/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-snb6/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_cursor_legacy@torture-move@pipe-a: - shard-tglu: [PASS][137] -> [DMESG-WARN][138] ([i915#10166] / [i915#1982]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-tglu-9/igt@kms_cursor_legacy@torture-move@pipe-a.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-tglu-7/igt@kms_cursor_legacy@torture-move@pipe-a.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#9723]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-tglu-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#8588]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#3804]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#3555]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-8/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_aux_dev: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#1257]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-15/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#8812]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-4/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#3555] / [i915#3840]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-5/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#3840]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-formats: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#3555] / [i915#3840]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-4/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#3555] / [i915#3840] / [i915#9053]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-mtlp-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][149] ([i915#3840] / [i915#9053]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg1: NOTRUN -> [FAIL][150] ([i915#11139] / [i915#11279]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-15/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_feature_discovery@display-4x: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#1839]) +2 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-15/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr2: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#658]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-1/igt@kms_feature_discovery@psr2.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#4881]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-10/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#9934]) +6 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-15/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#3637]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-tglu-8/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a4: - shard-dg1: NOTRUN -> [FAIL][156] ([i915#11275] / [i915#11279]) +1 other test fail [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a4.html * igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a4: - shard-dg1: NOTRUN -> [FAIL][157] ([i915#10545] / [i915#11279]) +1 other test fail [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a4.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a2: - shard-dg2: NOTRUN -> [FAIL][158] ([i915#11275] / [i915#11279]) +3 other tests fail [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-3/igt@kms_flip@flip-vs-suspend@a-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#2672]) +4 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#2672]) +3 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#2587] / [i915#2672]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#5274]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt: - shard-dg2: [PASS][163] -> [FAIL][164] ([i915#6880]) +2 other tests fail [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-snb: [PASS][165] -> [SKIP][166] +4 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][167] +48 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][168] ([i915#8708]) +22 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-dg1: NOTRUN -> [FAIL][169] ([i915#11280]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#5439]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#8708]) +12 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#8708]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#3023]) +17 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#3458]) +18 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#10433] / [i915#3458]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#5354]) +32 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#10070]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-15/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#3458]) +11 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][179] +2 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#1825]) +30 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#8228]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#8228]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-5/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#8228]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-4/igt@kms_hdr@static-toggle-suspend.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][184] +11 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-5/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][185] ([i915#11274] / [i915#11279]) +3 other tests fail [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-3.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][186] ([i915#11274] / [i915#11279]) +3 other tests fail [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-15/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-4.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-dg2: NOTRUN -> [FAIL][187] ([i915#11284]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][188] ([i915#10647]) +1 other test fail [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-glk9/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][189] ([i915#8292]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-dp-4: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#9423]) +11 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-dp-4.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#9423]) +9 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-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][192] ([i915#9423]) +3 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-17/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-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#5176] / [i915#9423]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#5235] / [i915#9423] / [i915#9728]) +3 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#5235] / [i915#9423]) +11 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#5235]) +15 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-15/igt@kms_plane_scaling@planes-downscale-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][197] ([i915#5235]) +5 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_pm_backlight@fade: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#5354]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-1/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc5-psr: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#9685]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@deep-pkgc: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#3361]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#9519]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-15/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][202] -> [SKIP][203] ([i915#9519]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#9519]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][205] -> [SKIP][206] ([i915#9519]) +2 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@pm-tiling: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#4077]) +7 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-4/igt@kms_pm_rpm@pm-tiling.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#9683]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-dg1: NOTRUN -> [SKIP][209] ([i915#9683]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#9683]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-no-drrs: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#1072] / [i915#9732]) +18 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-6/igt@kms_psr@fbc-pr-no-drrs.html * igt@kms_psr@fbc-psr-cursor-plane-onoff@edp-1: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#9688]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-mtlp-2/igt@kms_psr@fbc-psr-cursor-plane-onoff@edp-1.html * igt@kms_psr@psr-cursor-render: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#1072] / [i915#9732]) +17 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-8/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][214] ([i915#1072] / [i915#9732]) +24 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][215] +371 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-glk9/igt@kms_psr@psr2-sprite-plane-onoff.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#5289]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#5289]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][218] ([i915#3555]) +9 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_sysfs_edid_timing: - shard-dg1: NOTRUN -> [FAIL][219] ([IGT#2] / [i915#6493]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#8623]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [FAIL][221] ([i915#9196]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-2.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][222] ([i915#10305] / [i915#11279]) +2 other tests fail [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-3.html * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [FAIL][223] ([i915#10305]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-4/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#9906]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-15/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#9906]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-8/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#2437] / [i915#9412]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#2437]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-invalid-parameters: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#2437]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-6/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][229] ([i915#2437]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-glk6/igt@kms_writeback@writeback-pixel-formats.html - shard-rkl: NOTRUN -> [SKIP][230] ([i915#2437] / [i915#9412]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-1/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@per-context-mode-unprivileged: - shard-dg1: NOTRUN -> [SKIP][231] ([i915#2433]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@cpu-hotplug: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#8850]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@rc6-suspend: - shard-dg1: NOTRUN -> [FAIL][233] ([i915#10864] / [i915#11279]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@perf_pmu@rc6-suspend.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][234] ([i915#9351]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-4/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#3291] / [i915#3708]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-10/igt@prime_vgem@basic-fence-read.html - shard-rkl: NOTRUN -> [SKIP][236] ([i915#3291] / [i915#3708]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-3/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - shard-dg1: NOTRUN -> [SKIP][237] ([i915#3708]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@prime_vgem@basic-read.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg1: NOTRUN -> [SKIP][238] ([i915#9917]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-rkl: NOTRUN -> [FAIL][239] ([i915#9781]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-6/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-glk: NOTRUN -> [FAIL][240] ([i915#9779]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-glk9/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@tools_test@sysfs_l3_parity: - shard-rkl: NOTRUN -> [SKIP][241] +37 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-3/igt@tools_test@sysfs_l3_parity.html - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#4818]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-mtlp-2/igt@tools_test@sysfs_l3_parity.html - shard-dg2: NOTRUN -> [SKIP][243] ([i915#4818]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-10/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_perfmon@create-single-perfmon: - shard-tglu: NOTRUN -> [SKIP][244] ([i915#2575]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-tglu-8/igt@v3d/v3d_perfmon@create-single-perfmon.html * igt@v3d/v3d_submit_cl@bad-extension: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#2575]) +12 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@v3d/v3d_submit_cl@bad-extension.html * igt@v3d/v3d_submit_cl@bad-multisync-out-sync: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#2575]) +9 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-10/igt@v3d/v3d_submit_cl@bad-multisync-out-sync.html * igt@vc4/vc4_label_bo@set-bad-name: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#7711]) +10 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-14/igt@vc4/vc4_label_bo@set-bad-name.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#7711]) +6 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-1/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html * igt@vc4/vc4_wait_bo@bad-bo: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#7711]) +5 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-10/igt@vc4/vc4_wait_bo@bad-bo.html - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#7711]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-mtlp-2/igt@vc4/vc4_wait_bo@bad-bo.html #### Possible fixes #### * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][251] ([i915#5784]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-dg1-15/igt@gem_eio@reset-stress.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-18/igt@gem_eio@reset-stress.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][253] ([i915#2842]) -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_lmem_swapping@heavy-verify-random@lmem0: - shard-dg2: [FAIL][255] ([i915#10378]) -> [PASS][256] +2 other tests pass [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-dg2-8/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-7/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [ABORT][257] ([i915#5566]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-glk9/igt@gen9_exec_parse@allowed-single.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-glk9/igt@gen9_exec_parse@allowed-single.html * igt@i915_hangman@gt-engine-error@vcs1: - shard-mtlp: [INCOMPLETE][259] -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-mtlp-1/igt@i915_hangman@gt-engine-error@vcs1.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-mtlp-2/igt@i915_hangman@gt-engine-error@vcs1.html * igt@i915_module_load@reload-with-fault-injection: - shard-glk: [INCOMPLETE][261] ([i915#9849]) -> [PASS][262] [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-glk6/igt@i915_module_load@reload-with-fault-injection.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-glk9/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rpm@sysfs-read: - shard-dg2: [FAIL][263] -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-dg2-5/igt@i915_pm_rpm@sysfs-read.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-2/igt@i915_pm_rpm@sysfs-read.html * igt@i915_pm_rps@reset: - shard-snb: [INCOMPLETE][265] ([i915#7790]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-snb2/igt@i915_pm_rps@reset.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-snb4/igt@i915_pm_rps@reset.html * igt@i915_power@sanity: - shard-mtlp: [SKIP][267] ([i915#7984]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-mtlp-2/igt@i915_power@sanity.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-mtlp-1/igt@i915_power@sanity.html * igt@kms_color@ctm-red-to-blue@pipe-d: - shard-tglu: [INCOMPLETE][269] -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-tglu-9/igt@kms_color@ctm-red-to-blue@pipe-d.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-tglu-8/igt@kms_color@ctm-red-to-blue@pipe-d.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-vga1-hdmi-a1: - shard-snb: [FAIL][271] ([i915#2122]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-vga1-hdmi-a1.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-snb7/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@ab-vga1-hdmi-a1.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][273] ([i915#9519]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [SKIP][275] ([i915#9519]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][277] ([i915#4349]) -> [PASS][278] +3 other tests pass [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html #### Warnings #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][279] ([i915#9846]) -> [INCOMPLETE][280] ([i915#9364]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-dg2: [FAIL][281] ([i915#10086] / [i915#11279]) -> [FAIL][282] ([i915#10086]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-dg2-10/igt@gem_ctx_isolation@preservation-s3@rcs0.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-8/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_isolation@preservation-s3@vcs0: - shard-dg2: [FAIL][283] ([i915#10086]) -> [FAIL][284] ([i915#10086] / [i915#11279]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-dg2-10/igt@gem_ctx_isolation@preservation-s3@vcs0.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-8/igt@gem_ctx_isolation@preservation-s3@vcs0.html * igt@gem_eio@kms: - shard-dg2: [INCOMPLETE][285] ([i915#10513]) -> [FAIL][286] ([i915#5784]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-dg2-6/igt@gem_eio@kms.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-10/igt@gem_eio@kms.html * igt@gem_workarounds@suspend-resume-fd: - shard-dg1: [FAIL][287] ([i915#10177]) -> [FAIL][288] ([i915#10177] / [i915#11279]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-dg1-16/igt@gem_workarounds@suspend-resume-fd.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-18/igt@gem_workarounds@suspend-resume-fd.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [FAIL][289] -> [FAIL][290] ([i915#11279]) +1 other test fail [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_suspend@basic-s3-without-i915: - shard-dg1: [FAIL][291] ([i915#10031] / [i915#11279]) -> [FAIL][292] ([i915#10031]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-dg1-17/igt@i915_suspend@basic-s3-without-i915.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-16/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@debugfs-reader: - shard-dg1: [FAIL][293] ([i915#10031]) -> [FAIL][294] ([i915#10031] / [i915#11279]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-dg1-18/igt@i915_suspend@debugfs-reader.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-15/igt@i915_suspend@debugfs-reader.html * igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4: - shard-dg1: [FAIL][295] -> [FAIL][296] ([i915#11279]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-dg1-16/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-15/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-4.html * igt@kms_flip@flip-vs-suspend@c-hdmi-a4: - shard-dg1: [FAIL][297] ([i915#10545]) -> [FAIL][298] ([i915#10545] / [i915#11279]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-dg1-15/igt@kms_flip@flip-vs-suspend@c-hdmi-a4.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-17/igt@kms_flip@flip-vs-suspend@c-hdmi-a4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][299] ([i915#3458]) -> [SKIP][300] ([i915#10433] / [i915#3458]) +2 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][301] ([i915#4816]) -> [SKIP][302] ([i915#4070] / [i915#4816]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-dg1: [FAIL][303] ([i915#11284]) -> [FAIL][304] ([i915#11279] / [i915#11284]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-dg1-17/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg1-13/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-dg2: [SKIP][305] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][306] ([i915#1072] / [i915#9732]) +4 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-dg2-11/igt@kms_psr@fbc-psr-primary-page-flip.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-4/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@psr2-no-drrs: - shard-dg2: [SKIP][307] ([i915#1072] / [i915#9732]) -> [SKIP][308] ([i915#1072] / [i915#9673] / [i915#9732]) +6 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14887/shard-dg2-10/igt@kms_psr@psr2-no-drrs.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_134572v1/shard-dg2-11/igt@kms_psr@psr2-no-drrs.html [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [i915#10031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10031 [i915#10047]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10047 [i915#10070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10070 [i915#10086]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10086 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10166 [i915#10177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10177 [i915#10278]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10278 [i915#10305]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10305 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10314 [i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10513]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10513 [i915#10545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10545 [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#10864]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10864 [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11139]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11139 [i915#11265]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11265 [i915#11269]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11269 [i915#11274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11274 [i915#11275]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11275 [i915#11279]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11279 [i915#11280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11280 [i915#11284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11284 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [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#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#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#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [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#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958 [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#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6268]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6268 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6493 [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#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7178 [i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213 [i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742 [i915#7790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#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#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588 [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#8850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8850 [i915#8852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8852 [i915#8925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9351]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9351 [i915#9364]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9364 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9606]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9606 [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9728]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9779]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9779 [i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9846 [i915#9849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9849 [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_14887 -> Patchwork_134572v1 CI-20190529: 20190529 CI_DRM_14887: c23220e20a54d2e9b8ca1f163bf1e7718dde9b16 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7879: 08560f766a505e729dfee2846c1c11d28dd0e3d0 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_134572v1: c23220e20a54d2e9b8ca1f163bf1e7718dde9b16 @ 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_134572v1/index.html [-- Attachment #2: Type: text/html, Size: 106978 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-06-07 7:19 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-06-06 14:07 [PATCH 1/2] drm/i915/dmc: convert intel_dmc_print_error_state() to drm_printer Jani Nikula 2024-06-06 14:07 ` [PATCH 2/2] drm/i915/overlay: convert intel_overlay_print_error_state() " Jani Nikula 2024-06-06 14:27 ` Rodrigo Vivi 2024-06-07 7:19 ` Jani Nikula 2024-06-06 14:25 ` [PATCH 1/2] drm/i915/dmc: convert intel_dmc_print_error_state() " Rodrigo Vivi 2024-06-06 16:33 ` ✗ Fi.CI.CHECKPATCH: warning for series starting with [1/2] " Patchwork 2024-06-06 16:33 ` ✗ Fi.CI.SPARSE: " Patchwork 2024-06-06 16:42 ` ✓ Fi.CI.BAT: success " Patchwork 2024-06-07 4:56 ` ✗ 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