* [FOR CI 1/5] drm/xe: Bump xe_device_l2_flush even higher
2025-10-23 8:55 [FOR CI 0/5] Testing PREEMPT_RT with disabling interrupts in the most critical section Maarten Lankhorst
@ 2025-10-23 8:55 ` Maarten Lankhorst
2025-10-23 8:55 ` [FOR CI 2/5] drm/i915: Use preempt_disable/enable_rt() where recommended Maarten Lankhorst
` (12 subsequent siblings)
13 siblings, 0 replies; 21+ messages in thread
From: Maarten Lankhorst @ 2025-10-23 8:55 UTC (permalink / raw)
To: intel-xe
It turns out for some applications 1 ms is not enough, and 2 ms is
needed.
Failing to flush causes a catastrophic display update failure,
so we should prevent it if possible.
Add an even bigger margin of 5 ms, and complain loudly if we ever exceed
it.
Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6097
Signed-off-by: Maarten Lankhorst <dev@lankhorst.se>
---
drivers/gpu/drm/xe/xe_device.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_device.c b/drivers/gpu/drm/xe/xe_device.c
index 5f6a412b571c7..f6704c57e87ca 100644
--- a/drivers/gpu/drm/xe/xe_device.c
+++ b/drivers/gpu/drm/xe/xe_device.c
@@ -1077,8 +1077,8 @@ void xe_device_l2_flush(struct xe_device *xe)
spin_lock(>->global_invl_lock);
xe_mmio_write32(>->mmio, XE2_GLOBAL_INVAL, 0x1);
- if (xe_mmio_wait32(>->mmio, XE2_GLOBAL_INVAL, 0x1, 0x0, 1000, NULL, true))
- xe_gt_err_once(gt, "Global invalidation timeout\n");
+ if (xe_mmio_wait32(>->mmio, XE2_GLOBAL_INVAL, 0x1, 0x0, 5000, NULL, true))
+ xe_gt_err(gt, "Global invalidation timeout\n");
spin_unlock(>->global_invl_lock);
--
2.51.0
^ permalink raw reply related [flat|nested] 21+ messages in thread* [FOR CI 2/5] drm/i915: Use preempt_disable/enable_rt() where recommended
2025-10-23 8:55 [FOR CI 0/5] Testing PREEMPT_RT with disabling interrupts in the most critical section Maarten Lankhorst
2025-10-23 8:55 ` [FOR CI 1/5] drm/xe: Bump xe_device_l2_flush even higher Maarten Lankhorst
@ 2025-10-23 8:55 ` Maarten Lankhorst
2025-10-23 8:55 ` [FOR CI 3/5] drm/i915: Don't disable interrupts on PREEMPT_RT during atomic updates Maarten Lankhorst
` (11 subsequent siblings)
13 siblings, 0 replies; 21+ messages in thread
From: Maarten Lankhorst @ 2025-10-23 8:55 UTC (permalink / raw)
To: intel-xe
From: Mike Galbraith <umgwanakikbuti@gmail.com>
Mario Kleiner suggest in commit
ad3543ede630f ("drm/intel: Push get_scanout_position() timestamping into kms driver.")
a spots where preemption should be disabled on PREEMPT_RT. The
difference is that on PREEMPT_RT the intel_uncore::lock disables neither
preemption nor interrupts and so region remains preemptible.
The area covers only register reads and writes. The part that worries me
is:
- __intel_get_crtc_scanline() the worst case is 100us if no match is
found.
- intel_crtc_scanlines_since_frame_timestamp() not sure how long this
may take in the worst case.
It was in the RT queue for a while and nobody complained.
Disable preemption on PREEPMPT_RT during timestamping.
[bigeasy: patch description.]
Cc: Mario Kleiner <mario.kleiner.de@gmail.com>
Signed-off-by: Mike Galbraith <umgwanakikbuti@gmail.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Maarten Lankhorst <dev@lankhorst.se>
---
drivers/gpu/drm/i915/display/intel_vblank.c | 43 ++++++++++++++++-----
1 file changed, 33 insertions(+), 10 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_vblank.c b/drivers/gpu/drm/i915/display/intel_vblank.c
index 2fc0c1c0bb876..5206a81f85554 100644
--- a/drivers/gpu/drm/i915/display/intel_vblank.c
+++ b/drivers/gpu/drm/i915/display/intel_vblank.c
@@ -315,6 +315,20 @@ static void intel_vblank_section_exit(struct intel_display *display)
struct drm_i915_private *i915 = to_i915(display->drm);
spin_unlock(&i915->uncore.lock);
}
+
+static void intel_vblank_section_enter_irqf(struct intel_display *display, unsigned long *flags)
+ __acquires(i915->uncore.lock)
+{
+ struct drm_i915_private *i915 = to_i915(display->drm);
+ spin_lock_irqsave(&i915->uncore.lock, *flags);
+}
+
+static void intel_vblank_section_exit_irqf(struct intel_display *display, unsigned long flags)
+ __releases(i915->uncore.lock)
+{
+ struct drm_i915_private *i915 = to_i915(display->drm);
+ spin_unlock_irqrestore(&i915->uncore.lock, flags);
+}
#else
static void intel_vblank_section_enter(struct intel_display *display)
{
@@ -323,6 +337,17 @@ static void intel_vblank_section_enter(struct intel_display *display)
static void intel_vblank_section_exit(struct intel_display *display)
{
}
+
+static void intel_vblank_section_enter_irqf(struct intel_display *display, unsigned long *flags)
+{
+ *flags = 0;
+}
+
+static void intel_vblank_section_exit_irqf(struct intel_display *display, unsigned long flags)
+{
+ if (flags)
+ return;
+}
#endif
static bool i915_get_crtc_scanoutpos(struct drm_crtc *_crtc,
@@ -359,10 +384,10 @@ static bool i915_get_crtc_scanoutpos(struct drm_crtc *_crtc,
* timing critical raw register reads, potentially with
* preemption disabled, so the following code must not block.
*/
- local_irq_save(irqflags);
- intel_vblank_section_enter(display);
+ intel_vblank_section_enter_irqf(display, &irqflags);
- /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */
+ if (IS_ENABLED(CONFIG_PREEMPT_RT))
+ preempt_disable();
/* Get optional system timestamp before query. */
if (stime)
@@ -426,10 +451,10 @@ static bool i915_get_crtc_scanoutpos(struct drm_crtc *_crtc,
if (etime)
*etime = ktime_get();
- /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */
+ if (IS_ENABLED(CONFIG_PREEMPT_RT))
+ preempt_enable();
- intel_vblank_section_exit(display);
- local_irq_restore(irqflags);
+ intel_vblank_section_exit_irqf(display, irqflags);
/*
* While in vblank, position will be negative
@@ -467,13 +492,11 @@ int intel_get_crtc_scanline(struct intel_crtc *crtc)
unsigned long irqflags;
int position;
- local_irq_save(irqflags);
- intel_vblank_section_enter(display);
+ intel_vblank_section_enter_irqf(display, &irqflags);
position = __intel_get_crtc_scanline(crtc);
- intel_vblank_section_exit(display);
- local_irq_restore(irqflags);
+ intel_vblank_section_exit_irqf(display, irqflags);
return position;
}
--
2.51.0
^ permalink raw reply related [flat|nested] 21+ messages in thread* [FOR CI 3/5] drm/i915: Don't disable interrupts on PREEMPT_RT during atomic updates
2025-10-23 8:55 [FOR CI 0/5] Testing PREEMPT_RT with disabling interrupts in the most critical section Maarten Lankhorst
2025-10-23 8:55 ` [FOR CI 1/5] drm/xe: Bump xe_device_l2_flush even higher Maarten Lankhorst
2025-10-23 8:55 ` [FOR CI 2/5] drm/i915: Use preempt_disable/enable_rt() where recommended Maarten Lankhorst
@ 2025-10-23 8:55 ` Maarten Lankhorst
2025-10-23 8:56 ` [FOR CI 4/5] drm/xe/display: Disable preemption in the most critical section Maarten Lankhorst
` (10 subsequent siblings)
13 siblings, 0 replies; 21+ messages in thread
From: Maarten Lankhorst @ 2025-10-23 8:55 UTC (permalink / raw)
To: intel-xe
From: Mike Galbraith <umgwanakikbuti@gmail.com>
Commit
8d7849db3eab7 ("drm/i915: Make sprite updates atomic")
started disabling interrupts across atomic updates. This breaks on PREEMPT_RT
because within this section the code attempt to acquire spinlock_t locks which
are sleeping locks on PREEMPT_RT.
According to the comment the interrupts are disabled to avoid random delays and
not required for protection or synchronisation.
If this needs to happen with disabled interrupts on PREEMPT_RT, and the
whole section is restricted to register access then all sleeping locks
need to be acquired before interrupts are disabled and some function
maybe moved after enabling interrupts again.
This includes:
- prepare_to_wait() + finish_wait() due its wake queue.
- drm_crtc_vblank_put() -> vblank_disable_fn() drm_device::vbl_lock.
- skl_pfit_enable(), intel_update_plane(), vlv_atomic_update_fifo() and
maybe others due to intel_uncore::lock
- drm_crtc_arm_vblank_event() due to drm_device::event_lock and
drm_device::vblank_time_lock.
Don't disable interrupts on PREEMPT_RT during atomic updates.
[bigeasy: drop local locks, commit message]
Signed-off-by: Mike Galbraith <umgwanakikbuti@gmail.com>
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Maarten Lankhorst <dev@lankhorst.se>
---
drivers/gpu/drm/i915/display/intel_crtc.c | 9 ++++++---
drivers/gpu/drm/i915/display/intel_cursor.c | 9 ++++++---
drivers/gpu/drm/i915/display/intel_vblank.c | 6 ++++--
3 files changed, 16 insertions(+), 8 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_crtc.c b/drivers/gpu/drm/i915/display/intel_crtc.c
index d300ba1dcd2c4..f34745b5ea497 100644
--- a/drivers/gpu/drm/i915/display/intel_crtc.c
+++ b/drivers/gpu/drm/i915/display/intel_crtc.c
@@ -567,7 +567,8 @@ void intel_pipe_update_start(struct intel_atomic_state *state,
*/
intel_psr_wait_for_idle_locked(new_crtc_state);
- local_irq_disable();
+ if (!IS_ENABLED(CONFIG_PREEMPT_RT))
+ local_irq_disable();
crtc->debug.min_vbl = evade.min;
crtc->debug.max_vbl = evade.max;
@@ -585,7 +586,8 @@ void intel_pipe_update_start(struct intel_atomic_state *state,
return;
irq_disable:
- local_irq_disable();
+ if (!IS_ENABLED(CONFIG_PREEMPT_RT))
+ local_irq_disable();
}
#if IS_ENABLED(CONFIG_DRM_I915_DEBUG_VBLANK_EVADE)
@@ -731,7 +733,8 @@ void intel_pipe_update_end(struct intel_atomic_state *state,
if (!state->base.legacy_cursor_update)
intel_vrr_send_push(NULL, new_crtc_state);
- local_irq_enable();
+ if (!IS_ENABLED(CONFIG_PREEMPT_RT))
+ local_irq_enable();
if (intel_vgpu_active(dev_priv))
goto out;
diff --git a/drivers/gpu/drm/i915/display/intel_cursor.c b/drivers/gpu/drm/i915/display/intel_cursor.c
index c47c849358714..780fcae77a984 100644
--- a/drivers/gpu/drm/i915/display/intel_cursor.c
+++ b/drivers/gpu/drm/i915/display/intel_cursor.c
@@ -919,13 +919,15 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
*/
intel_psr_wait_for_idle_locked(crtc_state);
- local_irq_disable();
+ if (!IS_ENABLED(CONFIG_PREEMPT_RT))
+ local_irq_disable();
intel_vblank_evade(&evade);
drm_crtc_vblank_put(&crtc->base);
} else {
- local_irq_disable();
+ if (!IS_ENABLED(CONFIG_PREEMPT_RT))
+ local_irq_disable();
}
if (new_plane_state->uapi.visible) {
@@ -935,7 +937,8 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
intel_plane_disable_arm(NULL, plane, crtc_state);
}
- local_irq_enable();
+ if (!IS_ENABLED(CONFIG_PREEMPT_RT))
+ local_irq_enable();
intel_psr_unlock(crtc_state);
diff --git a/drivers/gpu/drm/i915/display/intel_vblank.c b/drivers/gpu/drm/i915/display/intel_vblank.c
index 5206a81f85554..7826f29619a14 100644
--- a/drivers/gpu/drm/i915/display/intel_vblank.c
+++ b/drivers/gpu/drm/i915/display/intel_vblank.c
@@ -761,11 +761,13 @@ int intel_vblank_evade(struct intel_vblank_evade_ctx *evade)
break;
}
- local_irq_enable();
+ if (!IS_ENABLED(CONFIG_PREEMPT_RT))
+ local_irq_enable();
timeout = schedule_timeout(timeout);
- local_irq_disable();
+ if (!IS_ENABLED(CONFIG_PREEMPT_RT))
+ local_irq_disable();
}
finish_wait(wq, &wait);
--
2.51.0
^ permalink raw reply related [flat|nested] 21+ messages in thread* [FOR CI 4/5] drm/xe/display: Disable preemption in the most critical section
2025-10-23 8:55 [FOR CI 0/5] Testing PREEMPT_RT with disabling interrupts in the most critical section Maarten Lankhorst
` (2 preceding siblings ...)
2025-10-23 8:55 ` [FOR CI 3/5] drm/i915: Don't disable interrupts on PREEMPT_RT during atomic updates Maarten Lankhorst
@ 2025-10-23 8:56 ` Maarten Lankhorst
2025-10-23 8:56 ` [FOR CI 5/5] PREEMPT_RT injection Maarten Lankhorst
` (9 subsequent siblings)
13 siblings, 0 replies; 21+ messages in thread
From: Maarten Lankhorst @ 2025-10-23 8:56 UTC (permalink / raw)
To: intel-xe
Lets see what happens if we only disable preemption in the critical
section to ensure we do run as fast as possible without disabling
too much.
Second attempt: Disable preemption, but keep interrupts enabled.
Signed-off-by: Maarten Lankhorst <dev@lankhorst.se>
---
drivers/gpu/drm/i915/display/intel_crtc.c | 14 ++++++++
drivers/gpu/drm/i915/display/intel_cursor.c | 18 +++++++++-
drivers/gpu/drm/i915/display/intel_vblank.c | 40 ++++++++++++---------
3 files changed, 54 insertions(+), 18 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_crtc.c b/drivers/gpu/drm/i915/display/intel_crtc.c
index f34745b5ea497..939ef48859f16 100644
--- a/drivers/gpu/drm/i915/display/intel_crtc.c
+++ b/drivers/gpu/drm/i915/display/intel_crtc.c
@@ -569,6 +569,10 @@ void intel_pipe_update_start(struct intel_atomic_state *state,
if (!IS_ENABLED(CONFIG_PREEMPT_RT))
local_irq_disable();
+#ifndef I915
+ else
+ preempt_disable();
+#endif
crtc->debug.min_vbl = evade.min;
crtc->debug.max_vbl = evade.max;
@@ -588,6 +592,11 @@ void intel_pipe_update_start(struct intel_atomic_state *state,
irq_disable:
if (!IS_ENABLED(CONFIG_PREEMPT_RT))
local_irq_disable();
+#ifndef I915
+ else
+ preempt_disable();
+#endif
+
}
#if IS_ENABLED(CONFIG_DRM_I915_DEBUG_VBLANK_EVADE)
@@ -686,6 +695,10 @@ void intel_pipe_update_end(struct intel_atomic_state *state,
intel_crtc_has_type(new_crtc_state, INTEL_OUTPUT_DSI))
icl_dsi_frame_update(new_crtc_state);
+#if !defined(I915) && IS_ENABLED(CONFIG_PREEMPT_RT)
+ preempt_enable();
+#endif
+
/* We're still in the vblank-evade critical section, this can't race.
* Would be slightly nice to just grab the vblank count and arm the
* event outside of the critical section - the spinlock might spin for a
@@ -733,6 +746,7 @@ void intel_pipe_update_end(struct intel_atomic_state *state,
if (!state->base.legacy_cursor_update)
intel_vrr_send_push(NULL, new_crtc_state);
+ /* Re-enable irqs here for !RT */
if (!IS_ENABLED(CONFIG_PREEMPT_RT))
local_irq_enable();
diff --git a/drivers/gpu/drm/i915/display/intel_cursor.c b/drivers/gpu/drm/i915/display/intel_cursor.c
index 780fcae77a984..50ca39eb09145 100644
--- a/drivers/gpu/drm/i915/display/intel_cursor.c
+++ b/drivers/gpu/drm/i915/display/intel_cursor.c
@@ -912,6 +912,7 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
intel_psr_lock(crtc_state);
+ bool vblanked = false;
if (!drm_WARN_ON(display->drm, drm_crtc_vblank_get(&crtc->base))) {
/*
* TODO: maybe check if we're still in PSR
@@ -921,13 +922,21 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
if (!IS_ENABLED(CONFIG_PREEMPT_RT))
local_irq_disable();
+#ifndef I915
+ else
+ preempt_disable();
+#endif
intel_vblank_evade(&evade);
- drm_crtc_vblank_put(&crtc->base);
+ vblanked = true;
} else {
if (!IS_ENABLED(CONFIG_PREEMPT_RT))
local_irq_disable();
+#ifndef I915
+ else
+ preempt_disable();
+#endif
}
if (new_plane_state->uapi.visible) {
@@ -939,6 +948,10 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
if (!IS_ENABLED(CONFIG_PREEMPT_RT))
local_irq_enable();
+#ifndef I915
+ else
+ preempt_enable();
+#endif
intel_psr_unlock(crtc_state);
@@ -955,6 +968,9 @@ intel_legacy_cursor_update(struct drm_plane *_plane,
intel_plane_unpin_fb(old_plane_state);
}
+ if (vblanked)
+ drm_crtc_vblank_put(&crtc->base);
+
out_free:
if (new_crtc_state)
intel_crtc_destroy_state(&crtc->base, &new_crtc_state->uapi);
diff --git a/drivers/gpu/drm/i915/display/intel_vblank.c b/drivers/gpu/drm/i915/display/intel_vblank.c
index 7826f29619a14..9dc839ed762ed 100644
--- a/drivers/gpu/drm/i915/display/intel_vblank.c
+++ b/drivers/gpu/drm/i915/display/intel_vblank.c
@@ -729,6 +729,13 @@ void intel_vblank_evade_init(const struct intel_crtc_state *old_crtc_state,
evade->min -= vblank_delay;
}
+static inline int vblank_evadable(struct intel_vblank_evade_ctx *evade, int *scanline)
+{
+ *scanline = intel_get_crtc_scanline(evade->crtc);
+
+ return *scanline < evade->min || *scanline > evade->max;
+}
+
/* must be called with vblank interrupt already enabled! */
int intel_vblank_evade(struct intel_vblank_evade_ctx *evade)
{
@@ -742,17 +749,24 @@ int intel_vblank_evade(struct intel_vblank_evade_ctx *evade)
if (evade->min <= 0 || evade->max <= 0)
return 0;
- for (;;) {
- /*
- * prepare_to_wait() has a memory barrier, which guarantees
- * other CPUs can see the task state update by the time we
- * read the scanline.
- */
+ while (!vblank_evadable(evade, &scanline)) {
+ if (!IS_ENABLED(CONFIG_PREEMPT_RT))
+ local_irq_enable();
+#ifndef I915
+ else
+ preempt_enable();
+#endif
+
prepare_to_wait(wq, &wait, TASK_UNINTERRUPTIBLE);
+ if (!vblank_evadable(evade, &scanline))
+ timeout = schedule_timeout(timeout);
- scanline = intel_get_crtc_scanline(crtc);
- if (scanline < evade->min || scanline > evade->max)
- break;
+ if (!IS_ENABLED(CONFIG_PREEMPT_RT))
+ local_irq_disable();
+#ifndef I915
+ else
+ preempt_disable();
+#endif
if (!timeout) {
drm_dbg_kms(display->drm,
@@ -760,14 +774,6 @@ int intel_vblank_evade(struct intel_vblank_evade_ctx *evade)
pipe_name(crtc->pipe));
break;
}
-
- if (!IS_ENABLED(CONFIG_PREEMPT_RT))
- local_irq_enable();
-
- timeout = schedule_timeout(timeout);
-
- if (!IS_ENABLED(CONFIG_PREEMPT_RT))
- local_irq_disable();
}
finish_wait(wq, &wait);
--
2.51.0
^ permalink raw reply related [flat|nested] 21+ messages in thread* [FOR CI 5/5] PREEMPT_RT injection
2025-10-23 8:55 [FOR CI 0/5] Testing PREEMPT_RT with disabling interrupts in the most critical section Maarten Lankhorst
` (3 preceding siblings ...)
2025-10-23 8:56 ` [FOR CI 4/5] drm/xe/display: Disable preemption in the most critical section Maarten Lankhorst
@ 2025-10-23 8:56 ` Maarten Lankhorst
2025-10-23 13:38 ` ✗ CI.checkpatch: warning for Testing PREEMPT_RT with disabling interrupts in the most critical section. (rev2) Patchwork
` (8 subsequent siblings)
13 siblings, 0 replies; 21+ messages in thread
From: Maarten Lankhorst @ 2025-10-23 8:56 UTC (permalink / raw)
To: intel-xe
Signed-off-by: Maarten Lankhorst <dev@lankhorst.se>
---
drivers/gpu/drm/i915/Kconfig.debug | 15 ---------------
drivers/gpu/drm/xe/Kconfig.debug | 5 +++++
kernel/Kconfig.preempt | 4 ++--
3 files changed, 7 insertions(+), 17 deletions(-)
diff --git a/drivers/gpu/drm/i915/Kconfig.debug b/drivers/gpu/drm/i915/Kconfig.debug
index 3562a02ef7adc..0ab10ff41e38d 100644
--- a/drivers/gpu/drm/i915/Kconfig.debug
+++ b/drivers/gpu/drm/i915/Kconfig.debug
@@ -233,21 +233,6 @@ config DRM_I915_LOW_LEVEL_TRACEPOINTS
If in doubt, say "N".
-config DRM_I915_DEBUG_VBLANK_EVADE
- bool "Enable extra debug warnings for vblank evasion"
- depends on DRM_I915
- default n
- help
- Choose this option to turn on extra debug warnings for the
- vblank evade mechanism. This gives a warning every time the
- the deadline allotted for the vblank evade critical section
- is exceeded, even if there isn't an actual risk of missing
- the vblank.
-
- Recommended for driver developers only.
-
- If in doubt, say "N".
-
config DRM_I915_DEBUG_RUNTIME_PM
bool "Enable extra state checking for runtime PM"
depends on DRM_I915
diff --git a/drivers/gpu/drm/xe/Kconfig.debug b/drivers/gpu/drm/xe/Kconfig.debug
index 01227c77f6d70..1d5f11c6e88f3 100644
--- a/drivers/gpu/drm/xe/Kconfig.debug
+++ b/drivers/gpu/drm/xe/Kconfig.debug
@@ -30,6 +30,11 @@ config DRM_XE_DEBUG
If in doubt, say "N".
+config DRM_I915_DEBUG_VBLANK_EVADE
+ def_bool y
+ depends on DRM_XE
+
+
config DRM_XE_DEBUG_VM
bool "Enable extra VM debugging info"
default n
diff --git a/kernel/Kconfig.preempt b/kernel/Kconfig.preempt
index da326800c1c9b..68a6d42c55abe 100644
--- a/kernel/Kconfig.preempt
+++ b/kernel/Kconfig.preempt
@@ -87,9 +87,9 @@ config PREEMPT_LAZY
endchoice
config PREEMPT_RT
- bool "Fully Preemptible Kernel (Real-Time)"
- depends on EXPERT && ARCH_SUPPORTS_RT && !COMPILE_TEST
+ def_bool y
select PREEMPTION
+ depends on ARCH_SUPPORTS_RT
help
This option turns the kernel into a real-time kernel by replacing
various locking primitives (spinlocks, rwlocks, etc.) with
--
2.51.0
^ permalink raw reply related [flat|nested] 21+ messages in thread* ✗ CI.checkpatch: warning for Testing PREEMPT_RT with disabling interrupts in the most critical section. (rev2)
2025-10-23 8:55 [FOR CI 0/5] Testing PREEMPT_RT with disabling interrupts in the most critical section Maarten Lankhorst
` (4 preceding siblings ...)
2025-10-23 8:56 ` [FOR CI 5/5] PREEMPT_RT injection Maarten Lankhorst
@ 2025-10-23 13:38 ` Patchwork
2025-10-23 13:39 ` ✓ CI.KUnit: success " Patchwork
` (7 subsequent siblings)
13 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2025-10-23 13:38 UTC (permalink / raw)
To: Maarten Lankhorst; +Cc: intel-xe
== Series Details ==
Series: Testing PREEMPT_RT with disabling interrupts in the most critical section. (rev2)
URL : https://patchwork.freedesktop.org/series/156134/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
+ cd /kernel
+ git config --global --add safe.directory /kernel
8677d3b99d5fd579c143b22605d99121e2482e8a
+ git log -n1
commit 32fe71199188bcbaf3649301d9f8797cadaf8676
Author: Maarten Lankhorst <dev@lankhorst.se>
Date: Thu Oct 23 10:56:01 2025 +0200
PREEMPT_RT injection
Signed-off-by: Maarten Lankhorst <dev@lankhorst.se>
+ /mt/dim checkpatch e5409e1beaa3a7a89c5b5d90fd3a616ecacb1df4 drm-intel
e0b68ad3d983 drm/xe: Bump xe_device_l2_flush even higher
4723a9891c4e drm/i915: Use preempt_disable/enable_rt() where recommended
-:7: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?)
#7:
ad3543ede630f ("drm/intel: Push get_scanout_position() timestamping into kms driver.")
-:45: WARNING:LINE_SPACING: Missing a blank line after declarations
#45: FILE: drivers/gpu/drm/i915/display/intel_vblank.c:323:
+ struct drm_i915_private *i915 = to_i915(display->drm);
+ spin_lock_irqsave(&i915->uncore.lock, *flags);
-:52: WARNING:LINE_SPACING: Missing a blank line after declarations
#52: FILE: drivers/gpu/drm/i915/display/intel_vblank.c:330:
+ struct drm_i915_private *i915 = to_i915(display->drm);
+ spin_unlock_irqrestore(&i915->uncore.lock, flags);
total: 0 errors, 3 warnings, 0 checks, 78 lines checked
ee715f9cc1e0 drm/i915: Don't disable interrupts on PREEMPT_RT during atomic updates
-:10: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?)
#10:
started disabling interrupts across atomic updates. This breaks on PREEMPT_RT
total: 0 errors, 1 warnings, 0 checks, 68 lines checked
20aa6bc16ee2 drm/xe/display: Disable preemption in the most critical section
32fe71199188 PREEMPT_RT injection
-:7: WARNING:COMMIT_MESSAGE: Missing commit description - Add an appropriate one
total: 0 errors, 1 warnings, 0 checks, 43 lines checked
^ permalink raw reply [flat|nested] 21+ messages in thread* ✓ CI.KUnit: success for Testing PREEMPT_RT with disabling interrupts in the most critical section. (rev2)
2025-10-23 8:55 [FOR CI 0/5] Testing PREEMPT_RT with disabling interrupts in the most critical section Maarten Lankhorst
` (5 preceding siblings ...)
2025-10-23 13:38 ` ✗ CI.checkpatch: warning for Testing PREEMPT_RT with disabling interrupts in the most critical section. (rev2) Patchwork
@ 2025-10-23 13:39 ` Patchwork
2025-10-23 14:00 ` ✗ CI.checksparse: warning " Patchwork
` (6 subsequent siblings)
13 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2025-10-23 13:39 UTC (permalink / raw)
To: Maarten Lankhorst; +Cc: intel-xe
== Series Details ==
Series: Testing PREEMPT_RT with disabling interrupts in the most critical section. (rev2)
URL : https://patchwork.freedesktop.org/series/156134/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[13:38:03] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:38:08] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[13:38:39] Starting KUnit Kernel (1/1)...
[13:38:39] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:38:39] ================== guc_buf (11 subtests) ===================
[13:38:39] [PASSED] test_smallest
[13:38:39] [PASSED] test_largest
[13:38:39] [PASSED] test_granular
[13:38:39] [PASSED] test_unique
[13:38:39] [PASSED] test_overlap
[13:38:39] [PASSED] test_reusable
[13:38:39] [PASSED] test_too_big
[13:38:39] [PASSED] test_flush
[13:38:39] [PASSED] test_lookup
[13:38:39] [PASSED] test_data
[13:38:39] [PASSED] test_class
[13:38:39] ===================== [PASSED] guc_buf =====================
[13:38:39] =================== guc_dbm (7 subtests) ===================
[13:38:39] [PASSED] test_empty
[13:38:39] [PASSED] test_default
[13:38:39] ======================== test_size ========================
[13:38:39] [PASSED] 4
[13:38:39] [PASSED] 8
[13:38:39] [PASSED] 32
[13:38:39] [PASSED] 256
[13:38:39] ==================== [PASSED] test_size ====================
[13:38:39] ======================= test_reuse ========================
[13:38:39] [PASSED] 4
[13:38:39] [PASSED] 8
[13:38:39] [PASSED] 32
[13:38:39] [PASSED] 256
[13:38:39] =================== [PASSED] test_reuse ====================
[13:38:39] =================== test_range_overlap ====================
[13:38:39] [PASSED] 4
[13:38:39] [PASSED] 8
[13:38:39] [PASSED] 32
[13:38:39] [PASSED] 256
[13:38:39] =============== [PASSED] test_range_overlap ================
[13:38:39] =================== test_range_compact ====================
[13:38:39] [PASSED] 4
[13:38:39] [PASSED] 8
[13:38:39] [PASSED] 32
[13:38:39] [PASSED] 256
[13:38:39] =============== [PASSED] test_range_compact ================
[13:38:39] ==================== test_range_spare =====================
[13:38:39] [PASSED] 4
[13:38:39] [PASSED] 8
[13:38:39] [PASSED] 32
[13:38:39] [PASSED] 256
[13:38:39] ================ [PASSED] test_range_spare =================
[13:38:39] ===================== [PASSED] guc_dbm =====================
[13:38:39] =================== guc_idm (6 subtests) ===================
[13:38:39] [PASSED] bad_init
[13:38:39] [PASSED] no_init
[13:38:39] [PASSED] init_fini
[13:38:39] [PASSED] check_used
[13:38:39] [PASSED] check_quota
[13:38:39] [PASSED] check_all
[13:38:39] ===================== [PASSED] guc_idm =====================
[13:38:39] ================== no_relay (3 subtests) ===================
[13:38:39] [PASSED] xe_drops_guc2pf_if_not_ready
[13:38:39] [PASSED] xe_drops_guc2vf_if_not_ready
[13:38:39] [PASSED] xe_rejects_send_if_not_ready
[13:38:39] ==================== [PASSED] no_relay =====================
[13:38:39] ================== pf_relay (14 subtests) ==================
[13:38:39] [PASSED] pf_rejects_guc2pf_too_short
[13:38:39] [PASSED] pf_rejects_guc2pf_too_long
[13:38:39] [PASSED] pf_rejects_guc2pf_no_payload
[13:38:39] [PASSED] pf_fails_no_payload
[13:38:39] [PASSED] pf_fails_bad_origin
[13:38:39] [PASSED] pf_fails_bad_type
[13:38:39] [PASSED] pf_txn_reports_error
[13:38:39] [PASSED] pf_txn_sends_pf2guc
[13:38:39] [PASSED] pf_sends_pf2guc
[13:38:39] [SKIPPED] pf_loopback_nop
[13:38:39] [SKIPPED] pf_loopback_echo
[13:38:39] [SKIPPED] pf_loopback_fail
[13:38:39] [SKIPPED] pf_loopback_busy
[13:38:39] [SKIPPED] pf_loopback_retry
[13:38:39] ==================== [PASSED] pf_relay =====================
[13:38:39] ================== vf_relay (3 subtests) ===================
[13:38:39] [PASSED] vf_rejects_guc2vf_too_short
[13:38:39] [PASSED] vf_rejects_guc2vf_too_long
[13:38:39] [PASSED] vf_rejects_guc2vf_no_payload
[13:38:39] ==================== [PASSED] vf_relay =====================
[13:38:39] ===================== lmtt (1 subtest) =====================
[13:38:39] ======================== test_ops =========================
[13:38:39] [PASSED] 2-level
[13:38:39] [PASSED] multi-level
[13:38:39] ==================== [PASSED] test_ops =====================
[13:38:39] ====================== [PASSED] lmtt =======================
[13:38:39] ================= pf_service (11 subtests) =================
[13:38:39] [PASSED] pf_negotiate_any
[13:38:39] [PASSED] pf_negotiate_base_match
[13:38:39] [PASSED] pf_negotiate_base_newer
[13:38:39] [PASSED] pf_negotiate_base_next
[13:38:39] [SKIPPED] pf_negotiate_base_older
[13:38:39] [PASSED] pf_negotiate_base_prev
[13:38:39] [PASSED] pf_negotiate_latest_match
[13:38:39] [PASSED] pf_negotiate_latest_newer
[13:38:39] [PASSED] pf_negotiate_latest_next
[13:38:39] [SKIPPED] pf_negotiate_latest_older
[13:38:39] [SKIPPED] pf_negotiate_latest_prev
[13:38:39] =================== [PASSED] pf_service ====================
[13:38:39] ================= xe_guc_g2g (2 subtests) ==================
[13:38:39] ============== xe_live_guc_g2g_kunit_default ==============
[13:38:39] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[13:38:39] ============== xe_live_guc_g2g_kunit_allmem ===============
[13:38:39] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[13:38:39] =================== [SKIPPED] xe_guc_g2g ===================
[13:38:39] =================== xe_mocs (2 subtests) ===================
[13:38:39] ================ xe_live_mocs_kernel_kunit ================
[13:38:39] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[13:38:39] ================ xe_live_mocs_reset_kunit =================
[13:38:39] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[13:38:39] ==================== [SKIPPED] xe_mocs =====================
[13:38:39] ================= xe_migrate (2 subtests) ==================
[13:38:39] ================= xe_migrate_sanity_kunit =================
[13:38:39] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[13:38:39] ================== xe_validate_ccs_kunit ==================
[13:38:39] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[13:38:39] =================== [SKIPPED] xe_migrate ===================
[13:38:39] ================== xe_dma_buf (1 subtest) ==================
[13:38:39] ==================== xe_dma_buf_kunit =====================
[13:38:39] ================ [SKIPPED] xe_dma_buf_kunit ================
[13:38:39] =================== [SKIPPED] xe_dma_buf ===================
[13:38:39] ================= xe_bo_shrink (1 subtest) =================
[13:38:39] =================== xe_bo_shrink_kunit ====================
[13:38:39] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[13:38:39] ================== [SKIPPED] xe_bo_shrink ==================
[13:38:39] ==================== xe_bo (2 subtests) ====================
[13:38:39] ================== xe_ccs_migrate_kunit ===================
[13:38:39] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[13:38:39] ==================== xe_bo_evict_kunit ====================
[13:38:39] =============== [SKIPPED] xe_bo_evict_kunit ================
[13:38:39] ===================== [SKIPPED] xe_bo ======================
[13:38:39] ==================== args (11 subtests) ====================
[13:38:39] [PASSED] count_args_test
[13:38:39] [PASSED] call_args_example
[13:38:39] [PASSED] call_args_test
[13:38:39] [PASSED] drop_first_arg_example
[13:38:39] [PASSED] drop_first_arg_test
[13:38:39] [PASSED] first_arg_example
[13:38:39] [PASSED] first_arg_test
[13:38:39] [PASSED] last_arg_example
[13:38:39] [PASSED] last_arg_test
[13:38:39] [PASSED] pick_arg_example
[13:38:39] [PASSED] sep_comma_example
[13:38:39] ====================== [PASSED] args =======================
[13:38:39] =================== xe_pci (3 subtests) ====================
[13:38:39] ==================== check_graphics_ip ====================
[13:38:39] [PASSED] 12.00 Xe_LP
[13:38:39] [PASSED] 12.10 Xe_LP+
[13:38:39] [PASSED] 12.55 Xe_HPG
[13:38:39] [PASSED] 12.60 Xe_HPC
[13:38:39] [PASSED] 12.70 Xe_LPG
[13:38:39] [PASSED] 12.71 Xe_LPG
[13:38:39] [PASSED] 12.74 Xe_LPG+
[13:38:39] [PASSED] 20.01 Xe2_HPG
[13:38:39] [PASSED] 20.02 Xe2_HPG
[13:38:39] [PASSED] 20.04 Xe2_LPG
[13:38:39] [PASSED] 30.00 Xe3_LPG
[13:38:39] [PASSED] 30.01 Xe3_LPG
[13:38:39] [PASSED] 30.03 Xe3_LPG
[13:38:39] [PASSED] 30.04 Xe3_LPG
[13:38:39] [PASSED] 30.05 Xe3_LPG
[13:38:39] [PASSED] 35.11 Xe3p_XPC
[13:38:39] ================ [PASSED] check_graphics_ip ================
[13:38:39] ===================== check_media_ip ======================
[13:38:39] [PASSED] 12.00 Xe_M
[13:38:39] [PASSED] 12.55 Xe_HPM
[13:38:39] [PASSED] 13.00 Xe_LPM+
[13:38:39] [PASSED] 13.01 Xe2_HPM
[13:38:39] [PASSED] 20.00 Xe2_LPM
[13:38:39] [PASSED] 30.00 Xe3_LPM
[13:38:39] [PASSED] 30.02 Xe3_LPM
[13:38:39] [PASSED] 35.00 Xe3p_LPM
[13:38:39] [PASSED] 35.03 Xe3p_HPM
[13:38:39] ================= [PASSED] check_media_ip ==================
[13:38:39] =================== check_platform_desc ===================
[13:38:39] [PASSED] 0x9A60 (TIGERLAKE)
[13:38:39] [PASSED] 0x9A68 (TIGERLAKE)
[13:38:39] [PASSED] 0x9A70 (TIGERLAKE)
[13:38:39] [PASSED] 0x9A40 (TIGERLAKE)
[13:38:39] [PASSED] 0x9A49 (TIGERLAKE)
[13:38:39] [PASSED] 0x9A59 (TIGERLAKE)
[13:38:39] [PASSED] 0x9A78 (TIGERLAKE)
[13:38:39] [PASSED] 0x9AC0 (TIGERLAKE)
[13:38:39] [PASSED] 0x9AC9 (TIGERLAKE)
[13:38:39] [PASSED] 0x9AD9 (TIGERLAKE)
[13:38:39] [PASSED] 0x9AF8 (TIGERLAKE)
[13:38:39] [PASSED] 0x4C80 (ROCKETLAKE)
[13:38:39] [PASSED] 0x4C8A (ROCKETLAKE)
[13:38:39] [PASSED] 0x4C8B (ROCKETLAKE)
[13:38:39] [PASSED] 0x4C8C (ROCKETLAKE)
[13:38:39] [PASSED] 0x4C90 (ROCKETLAKE)
[13:38:39] [PASSED] 0x4C9A (ROCKETLAKE)
[13:38:39] [PASSED] 0x4680 (ALDERLAKE_S)
[13:38:39] [PASSED] 0x4682 (ALDERLAKE_S)
[13:38:39] [PASSED] 0x4688 (ALDERLAKE_S)
[13:38:39] [PASSED] 0x468A (ALDERLAKE_S)
[13:38:39] [PASSED] 0x468B (ALDERLAKE_S)
[13:38:39] [PASSED] 0x4690 (ALDERLAKE_S)
[13:38:39] [PASSED] 0x4692 (ALDERLAKE_S)
[13:38:39] [PASSED] 0x4693 (ALDERLAKE_S)
[13:38:39] [PASSED] 0x46A0 (ALDERLAKE_P)
[13:38:39] [PASSED] 0x46A1 (ALDERLAKE_P)
[13:38:39] [PASSED] 0x46A2 (ALDERLAKE_P)
[13:38:39] [PASSED] 0x46A3 (ALDERLAKE_P)
[13:38:39] [PASSED] 0x46A6 (ALDERLAKE_P)
[13:38:39] [PASSED] 0x46A8 (ALDERLAKE_P)
[13:38:39] [PASSED] 0x46AA (ALDERLAKE_P)
[13:38:39] [PASSED] 0x462A (ALDERLAKE_P)
[13:38:39] [PASSED] 0x4626 (ALDERLAKE_P)
[13:38:39] [PASSED] 0x4628 (ALDERLAKE_P)
[13:38:39] [PASSED] 0x46B0 (ALDERLAKE_P)
[13:38:39] [PASSED] 0x46B1 (ALDERLAKE_P)
[13:38:39] [PASSED] 0x46B2 (ALDERLAKE_P)
[13:38:39] [PASSED] 0x46B3 (ALDERLAKE_P)
[13:38:39] [PASSED] 0x46C0 (ALDERLAKE_P)
[13:38:39] [PASSED] 0x46C1 (ALDERLAKE_P)
[13:38:39] [PASSED] 0x46C2 (ALDERLAKE_P)
[13:38:39] [PASSED] 0x46C3 (ALDERLAKE_P)
[13:38:39] [PASSED] 0x46D0 (ALDERLAKE_N)
[13:38:39] [PASSED] 0x46D1 (ALDERLAKE_N)
[13:38:39] [PASSED] 0x46D2 (ALDERLAKE_N)
[13:38:39] [PASSED] 0x46D3 (ALDERLAKE_N)
[13:38:39] [PASSED] 0x46D4 (ALDERLAKE_N)
[13:38:39] [PASSED] 0xA721 (ALDERLAKE_P)
[13:38:39] [PASSED] 0xA7A1 (ALDERLAKE_P)
[13:38:39] [PASSED] 0xA7A9 (ALDERLAKE_P)
[13:38:39] [PASSED] 0xA7AC (ALDERLAKE_P)
[13:38:39] [PASSED] 0xA7AD (ALDERLAKE_P)
[13:38:39] [PASSED] 0xA720 (ALDERLAKE_P)
[13:38:39] [PASSED] 0xA7A0 (ALDERLAKE_P)
[13:38:39] [PASSED] 0xA7A8 (ALDERLAKE_P)
[13:38:39] [PASSED] 0xA7AA (ALDERLAKE_P)
[13:38:39] [PASSED] 0xA7AB (ALDERLAKE_P)
[13:38:39] [PASSED] 0xA780 (ALDERLAKE_S)
[13:38:39] [PASSED] 0xA781 (ALDERLAKE_S)
[13:38:39] [PASSED] 0xA782 (ALDERLAKE_S)
[13:38:39] [PASSED] 0xA783 (ALDERLAKE_S)
[13:38:39] [PASSED] 0xA788 (ALDERLAKE_S)
[13:38:39] [PASSED] 0xA789 (ALDERLAKE_S)
[13:38:39] [PASSED] 0xA78A (ALDERLAKE_S)
[13:38:39] [PASSED] 0xA78B (ALDERLAKE_S)
[13:38:39] [PASSED] 0x4905 (DG1)
[13:38:39] [PASSED] 0x4906 (DG1)
[13:38:39] [PASSED] 0x4907 (DG1)
[13:38:39] [PASSED] 0x4908 (DG1)
[13:38:39] [PASSED] 0x4909 (DG1)
[13:38:39] [PASSED] 0x56C0 (DG2)
[13:38:39] [PASSED] 0x56C2 (DG2)
[13:38:39] [PASSED] 0x56C1 (DG2)
[13:38:39] [PASSED] 0x7D51 (METEORLAKE)
[13:38:39] [PASSED] 0x7DD1 (METEORLAKE)
[13:38:39] [PASSED] 0x7D41 (METEORLAKE)
[13:38:39] [PASSED] 0x7D67 (METEORLAKE)
[13:38:39] [PASSED] 0xB640 (METEORLAKE)
[13:38:39] [PASSED] 0x56A0 (DG2)
[13:38:39] [PASSED] 0x56A1 (DG2)
[13:38:39] [PASSED] 0x56A2 (DG2)
[13:38:39] [PASSED] 0x56BE (DG2)
[13:38:39] [PASSED] 0x56BF (DG2)
[13:38:39] [PASSED] 0x5690 (DG2)
[13:38:39] [PASSED] 0x5691 (DG2)
[13:38:39] [PASSED] 0x5692 (DG2)
[13:38:39] [PASSED] 0x56A5 (DG2)
[13:38:39] [PASSED] 0x56A6 (DG2)
[13:38:39] [PASSED] 0x56B0 (DG2)
[13:38:39] [PASSED] 0x56B1 (DG2)
[13:38:39] [PASSED] 0x56BA (DG2)
[13:38:39] [PASSED] 0x56BB (DG2)
[13:38:39] [PASSED] 0x56BC (DG2)
[13:38:39] [PASSED] 0x56BD (DG2)
[13:38:39] [PASSED] 0x5693 (DG2)
[13:38:39] [PASSED] 0x5694 (DG2)
[13:38:39] [PASSED] 0x5695 (DG2)
[13:38:39] [PASSED] 0x56A3 (DG2)
[13:38:39] [PASSED] 0x56A4 (DG2)
[13:38:39] [PASSED] 0x56B2 (DG2)
[13:38:39] [PASSED] 0x56B3 (DG2)
[13:38:39] [PASSED] 0x5696 (DG2)
[13:38:39] [PASSED] 0x5697 (DG2)
[13:38:39] [PASSED] 0xB69 (PVC)
[13:38:39] [PASSED] 0xB6E (PVC)
[13:38:39] [PASSED] 0xBD4 (PVC)
[13:38:39] [PASSED] 0xBD5 (PVC)
[13:38:39] [PASSED] 0xBD6 (PVC)
[13:38:39] [PASSED] 0xBD7 (PVC)
[13:38:39] [PASSED] 0xBD8 (PVC)
[13:38:39] [PASSED] 0xBD9 (PVC)
[13:38:39] [PASSED] 0xBDA (PVC)
[13:38:39] [PASSED] 0xBDB (PVC)
[13:38:39] [PASSED] 0xBE0 (PVC)
[13:38:39] [PASSED] 0xBE1 (PVC)
[13:38:39] [PASSED] 0xBE5 (PVC)
[13:38:39] [PASSED] 0x7D40 (METEORLAKE)
[13:38:39] [PASSED] 0x7D45 (METEORLAKE)
[13:38:39] [PASSED] 0x7D55 (METEORLAKE)
[13:38:39] [PASSED] 0x7D60 (METEORLAKE)
[13:38:39] [PASSED] 0x7DD5 (METEORLAKE)
[13:38:39] [PASSED] 0x6420 (LUNARLAKE)
[13:38:39] [PASSED] 0x64A0 (LUNARLAKE)
[13:38:39] [PASSED] 0x64B0 (LUNARLAKE)
[13:38:39] [PASSED] 0xE202 (BATTLEMAGE)
[13:38:39] [PASSED] 0xE209 (BATTLEMAGE)
[13:38:39] [PASSED] 0xE20B (BATTLEMAGE)
[13:38:39] [PASSED] 0xE20C (BATTLEMAGE)
[13:38:39] [PASSED] 0xE20D (BATTLEMAGE)
[13:38:39] [PASSED] 0xE210 (BATTLEMAGE)
[13:38:39] [PASSED] 0xE211 (BATTLEMAGE)
[13:38:39] [PASSED] 0xE212 (BATTLEMAGE)
[13:38:39] [PASSED] 0xE216 (BATTLEMAGE)
[13:38:39] [PASSED] 0xE220 (BATTLEMAGE)
[13:38:39] [PASSED] 0xE221 (BATTLEMAGE)
[13:38:39] [PASSED] 0xE222 (BATTLEMAGE)
[13:38:39] [PASSED] 0xE223 (BATTLEMAGE)
[13:38:39] [PASSED] 0xB080 (PANTHERLAKE)
[13:38:39] [PASSED] 0xB081 (PANTHERLAKE)
[13:38:39] [PASSED] 0xB082 (PANTHERLAKE)
[13:38:39] [PASSED] 0xB083 (PANTHERLAKE)
[13:38:39] [PASSED] 0xB084 (PANTHERLAKE)
[13:38:39] [PASSED] 0xB085 (PANTHERLAKE)
[13:38:39] [PASSED] 0xB086 (PANTHERLAKE)
[13:38:39] [PASSED] 0xB087 (PANTHERLAKE)
[13:38:39] [PASSED] 0xB08F (PANTHERLAKE)
[13:38:39] [PASSED] 0xB090 (PANTHERLAKE)
[13:38:39] [PASSED] 0xB0A0 (PANTHERLAKE)
[13:38:39] [PASSED] 0xB0B0 (PANTHERLAKE)
[13:38:39] [PASSED] 0xFD80 (PANTHERLAKE)
[13:38:39] [PASSED] 0xFD81 (PANTHERLAKE)
[13:38:39] [PASSED] 0xD740 (NOVALAKE_S)
[13:38:39] [PASSED] 0xD741 (NOVALAKE_S)
[13:38:39] [PASSED] 0xD742 (NOVALAKE_S)
[13:38:39] [PASSED] 0xD743 (NOVALAKE_S)
[13:38:39] [PASSED] 0xD744 (NOVALAKE_S)
[13:38:39] [PASSED] 0xD745 (NOVALAKE_S)
[13:38:39] [PASSED] 0x674C (CRESCENTISLAND)
[13:38:39] =============== [PASSED] check_platform_desc ===============
[13:38:39] ===================== [PASSED] xe_pci ======================
[13:38:39] =================== xe_rtp (2 subtests) ====================
[13:38:39] =============== xe_rtp_process_to_sr_tests ================
[13:38:39] [PASSED] coalesce-same-reg
[13:38:39] [PASSED] no-match-no-add
[13:38:39] [PASSED] match-or
[13:38:39] [PASSED] match-or-xfail
[13:38:39] [PASSED] no-match-no-add-multiple-rules
[13:38:39] [PASSED] two-regs-two-entries
[13:38:39] [PASSED] clr-one-set-other
[13:38:39] [PASSED] set-field
[13:38:39] [PASSED] conflict-duplicate
[13:38:39] [PASSED] conflict-not-disjoint
[13:38:39] [PASSED] conflict-reg-type
[13:38:39] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[13:38:39] ================== xe_rtp_process_tests ===================
[13:38:39] [PASSED] active1
[13:38:39] [PASSED] active2
[13:38:39] [PASSED] active-inactive
[13:38:39] [PASSED] inactive-active
[13:38:39] [PASSED] inactive-1st_or_active-inactive
[13:38:39] [PASSED] inactive-2nd_or_active-inactive
[13:38:39] [PASSED] inactive-last_or_active-inactive
stty: 'standard input': Inappropriate ioctl for device
[13:38:39] [PASSED] inactive-no_or_active-inactive
[13:38:39] ============== [PASSED] xe_rtp_process_tests ===============
[13:38:39] ===================== [PASSED] xe_rtp ======================
[13:38:39] ==================== xe_wa (1 subtest) =====================
[13:38:39] ======================== xe_wa_gt =========================
[13:38:39] [PASSED] TIGERLAKE B0
[13:38:39] [PASSED] DG1 A0
[13:38:39] [PASSED] DG1 B0
[13:38:39] [PASSED] ALDERLAKE_S A0
[13:38:39] [PASSED] ALDERLAKE_S B0
[13:38:39] [PASSED] ALDERLAKE_S C0
[13:38:39] [PASSED] ALDERLAKE_S D0
[13:38:39] [PASSED] ALDERLAKE_P A0
[13:38:39] [PASSED] ALDERLAKE_P B0
[13:38:39] [PASSED] ALDERLAKE_P C0
[13:38:39] [PASSED] ALDERLAKE_S RPLS D0
[13:38:39] [PASSED] ALDERLAKE_P RPLU E0
[13:38:39] [PASSED] DG2 G10 C0
[13:38:39] [PASSED] DG2 G11 B1
[13:38:39] [PASSED] DG2 G12 A1
[13:38:39] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[13:38:39] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[13:38:39] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[13:38:39] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[13:38:39] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[13:38:39] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[13:38:39] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[13:38:39] ==================== [PASSED] xe_wa_gt =====================
[13:38:39] ====================== [PASSED] xe_wa ======================
[13:38:39] ============================================================
[13:38:39] Testing complete. Ran 318 tests: passed: 300, skipped: 18
[13:38:39] Elapsed time: 36.454s total, 4.790s configuring, 31.347s building, 0.279s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[13:38:40] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:38:41] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[13:39:07] Starting KUnit Kernel (1/1)...
[13:39:07] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:39:07] ============ drm_test_pick_cmdline (2 subtests) ============
[13:39:07] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[13:39:07] =============== drm_test_pick_cmdline_named ===============
[13:39:07] [PASSED] NTSC
[13:39:07] [PASSED] NTSC-J
[13:39:07] [PASSED] PAL
[13:39:07] [PASSED] PAL-M
[13:39:07] =========== [PASSED] drm_test_pick_cmdline_named ===========
[13:39:07] ============== [PASSED] drm_test_pick_cmdline ==============
[13:39:07] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[13:39:07] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[13:39:07] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[13:39:07] =========== drm_validate_clone_mode (2 subtests) ===========
[13:39:07] ============== drm_test_check_in_clone_mode ===============
[13:39:07] [PASSED] in_clone_mode
[13:39:07] [PASSED] not_in_clone_mode
[13:39:07] ========== [PASSED] drm_test_check_in_clone_mode ===========
[13:39:07] =============== drm_test_check_valid_clones ===============
[13:39:07] [PASSED] not_in_clone_mode
[13:39:07] [PASSED] valid_clone
[13:39:07] [PASSED] invalid_clone
[13:39:07] =========== [PASSED] drm_test_check_valid_clones ===========
[13:39:07] ============= [PASSED] drm_validate_clone_mode =============
[13:39:07] ============= drm_validate_modeset (1 subtest) =============
[13:39:07] [PASSED] drm_test_check_connector_changed_modeset
[13:39:07] ============== [PASSED] drm_validate_modeset ===============
[13:39:07] ====== drm_test_bridge_get_current_state (2 subtests) ======
[13:39:07] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[13:39:07] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[13:39:07] ======== [PASSED] drm_test_bridge_get_current_state ========
[13:39:07] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[13:39:07] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[13:39:07] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[13:39:07] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[13:39:07] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[13:39:07] ============== drm_bridge_alloc (2 subtests) ===============
[13:39:07] [PASSED] drm_test_drm_bridge_alloc_basic
[13:39:07] [PASSED] drm_test_drm_bridge_alloc_get_put
[13:39:07] ================ [PASSED] drm_bridge_alloc =================
[13:39:07] ================== drm_buddy (8 subtests) ==================
[13:39:07] [PASSED] drm_test_buddy_alloc_limit
[13:39:07] [PASSED] drm_test_buddy_alloc_optimistic
[13:39:07] [PASSED] drm_test_buddy_alloc_pessimistic
[13:39:07] [PASSED] drm_test_buddy_alloc_pathological
[13:39:07] [PASSED] drm_test_buddy_alloc_contiguous
[13:39:07] [PASSED] drm_test_buddy_alloc_clear
[13:39:07] [PASSED] drm_test_buddy_alloc_range_bias
[13:39:07] [PASSED] drm_test_buddy_fragmentation_performance
[13:39:07] ==================== [PASSED] drm_buddy ====================
[13:39:07] ============= drm_cmdline_parser (40 subtests) =============
[13:39:07] [PASSED] drm_test_cmdline_force_d_only
[13:39:07] [PASSED] drm_test_cmdline_force_D_only_dvi
[13:39:07] [PASSED] drm_test_cmdline_force_D_only_hdmi
[13:39:07] [PASSED] drm_test_cmdline_force_D_only_not_digital
[13:39:07] [PASSED] drm_test_cmdline_force_e_only
[13:39:07] [PASSED] drm_test_cmdline_res
[13:39:07] [PASSED] drm_test_cmdline_res_vesa
[13:39:07] [PASSED] drm_test_cmdline_res_vesa_rblank
[13:39:07] [PASSED] drm_test_cmdline_res_rblank
[13:39:07] [PASSED] drm_test_cmdline_res_bpp
[13:39:07] [PASSED] drm_test_cmdline_res_refresh
[13:39:07] [PASSED] drm_test_cmdline_res_bpp_refresh
[13:39:07] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[13:39:07] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[13:39:07] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[13:39:07] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[13:39:07] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[13:39:07] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[13:39:07] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[13:39:07] [PASSED] drm_test_cmdline_res_margins_force_on
[13:39:07] [PASSED] drm_test_cmdline_res_vesa_margins
[13:39:07] [PASSED] drm_test_cmdline_name
[13:39:07] [PASSED] drm_test_cmdline_name_bpp
[13:39:07] [PASSED] drm_test_cmdline_name_option
[13:39:07] [PASSED] drm_test_cmdline_name_bpp_option
[13:39:07] [PASSED] drm_test_cmdline_rotate_0
[13:39:07] [PASSED] drm_test_cmdline_rotate_90
[13:39:07] [PASSED] drm_test_cmdline_rotate_180
[13:39:07] [PASSED] drm_test_cmdline_rotate_270
[13:39:07] [PASSED] drm_test_cmdline_hmirror
[13:39:07] [PASSED] drm_test_cmdline_vmirror
[13:39:07] [PASSED] drm_test_cmdline_margin_options
[13:39:07] [PASSED] drm_test_cmdline_multiple_options
[13:39:07] [PASSED] drm_test_cmdline_bpp_extra_and_option
[13:39:07] [PASSED] drm_test_cmdline_extra_and_option
[13:39:07] [PASSED] drm_test_cmdline_freestanding_options
[13:39:07] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[13:39:07] [PASSED] drm_test_cmdline_panel_orientation
[13:39:07] ================ drm_test_cmdline_invalid =================
[13:39:07] [PASSED] margin_only
[13:39:07] [PASSED] interlace_only
[13:39:07] [PASSED] res_missing_x
[13:39:07] [PASSED] res_missing_y
[13:39:07] [PASSED] res_bad_y
[13:39:07] [PASSED] res_missing_y_bpp
[13:39:07] [PASSED] res_bad_bpp
[13:39:07] [PASSED] res_bad_refresh
[13:39:07] [PASSED] res_bpp_refresh_force_on_off
[13:39:07] [PASSED] res_invalid_mode
[13:39:07] [PASSED] res_bpp_wrong_place_mode
[13:39:07] [PASSED] name_bpp_refresh
[13:39:07] [PASSED] name_refresh
[13:39:07] [PASSED] name_refresh_wrong_mode
[13:39:07] [PASSED] name_refresh_invalid_mode
[13:39:07] [PASSED] rotate_multiple
[13:39:07] [PASSED] rotate_invalid_val
[13:39:07] [PASSED] rotate_truncated
[13:39:07] [PASSED] invalid_option
[13:39:07] [PASSED] invalid_tv_option
[13:39:07] [PASSED] truncated_tv_option
[13:39:07] ============ [PASSED] drm_test_cmdline_invalid =============
[13:39:07] =============== drm_test_cmdline_tv_options ===============
[13:39:07] [PASSED] NTSC
[13:39:07] [PASSED] NTSC_443
[13:39:07] [PASSED] NTSC_J
[13:39:07] [PASSED] PAL
[13:39:07] [PASSED] PAL_M
[13:39:07] [PASSED] PAL_N
[13:39:07] [PASSED] SECAM
[13:39:07] [PASSED] MONO_525
[13:39:07] [PASSED] MONO_625
[13:39:07] =========== [PASSED] drm_test_cmdline_tv_options ===========
[13:39:07] =============== [PASSED] drm_cmdline_parser ================
[13:39:07] ========== drmm_connector_hdmi_init (20 subtests) ==========
[13:39:07] [PASSED] drm_test_connector_hdmi_init_valid
[13:39:07] [PASSED] drm_test_connector_hdmi_init_bpc_8
[13:39:07] [PASSED] drm_test_connector_hdmi_init_bpc_10
[13:39:07] [PASSED] drm_test_connector_hdmi_init_bpc_12
[13:39:07] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[13:39:07] [PASSED] drm_test_connector_hdmi_init_bpc_null
[13:39:07] [PASSED] drm_test_connector_hdmi_init_formats_empty
[13:39:07] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[13:39:07] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[13:39:07] [PASSED] supported_formats=0x9 yuv420_allowed=1
[13:39:07] [PASSED] supported_formats=0x9 yuv420_allowed=0
[13:39:07] [PASSED] supported_formats=0x3 yuv420_allowed=1
[13:39:07] [PASSED] supported_formats=0x3 yuv420_allowed=0
[13:39:07] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[13:39:07] [PASSED] drm_test_connector_hdmi_init_null_ddc
[13:39:07] [PASSED] drm_test_connector_hdmi_init_null_product
[13:39:07] [PASSED] drm_test_connector_hdmi_init_null_vendor
[13:39:07] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[13:39:07] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[13:39:07] [PASSED] drm_test_connector_hdmi_init_product_valid
[13:39:07] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[13:39:07] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[13:39:07] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[13:39:07] ========= drm_test_connector_hdmi_init_type_valid =========
[13:39:07] [PASSED] HDMI-A
[13:39:07] [PASSED] HDMI-B
[13:39:07] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[13:39:07] ======== drm_test_connector_hdmi_init_type_invalid ========
[13:39:07] [PASSED] Unknown
[13:39:07] [PASSED] VGA
[13:39:07] [PASSED] DVI-I
[13:39:07] [PASSED] DVI-D
[13:39:07] [PASSED] DVI-A
[13:39:07] [PASSED] Composite
[13:39:07] [PASSED] SVIDEO
[13:39:07] [PASSED] LVDS
[13:39:07] [PASSED] Component
[13:39:07] [PASSED] DIN
[13:39:07] [PASSED] DP
[13:39:07] [PASSED] TV
[13:39:07] [PASSED] eDP
[13:39:07] [PASSED] Virtual
[13:39:07] [PASSED] DSI
[13:39:07] [PASSED] DPI
[13:39:07] [PASSED] Writeback
[13:39:07] [PASSED] SPI
[13:39:07] [PASSED] USB
[13:39:07] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[13:39:07] ============ [PASSED] drmm_connector_hdmi_init =============
[13:39:07] ============= drmm_connector_init (3 subtests) =============
[13:39:07] [PASSED] drm_test_drmm_connector_init
[13:39:07] [PASSED] drm_test_drmm_connector_init_null_ddc
[13:39:07] ========= drm_test_drmm_connector_init_type_valid =========
[13:39:07] [PASSED] Unknown
[13:39:07] [PASSED] VGA
[13:39:07] [PASSED] DVI-I
[13:39:07] [PASSED] DVI-D
[13:39:07] [PASSED] DVI-A
[13:39:07] [PASSED] Composite
[13:39:07] [PASSED] SVIDEO
[13:39:07] [PASSED] LVDS
[13:39:07] [PASSED] Component
[13:39:07] [PASSED] DIN
[13:39:07] [PASSED] DP
[13:39:07] [PASSED] HDMI-A
[13:39:07] [PASSED] HDMI-B
[13:39:07] [PASSED] TV
[13:39:07] [PASSED] eDP
[13:39:07] [PASSED] Virtual
[13:39:07] [PASSED] DSI
[13:39:07] [PASSED] DPI
[13:39:07] [PASSED] Writeback
[13:39:07] [PASSED] SPI
[13:39:07] [PASSED] USB
[13:39:07] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[13:39:07] =============== [PASSED] drmm_connector_init ===============
[13:39:07] ========= drm_connector_dynamic_init (6 subtests) ==========
[13:39:07] [PASSED] drm_test_drm_connector_dynamic_init
[13:39:07] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[13:39:07] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[13:39:07] [PASSED] drm_test_drm_connector_dynamic_init_properties
[13:39:07] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[13:39:07] [PASSED] Unknown
[13:39:07] [PASSED] VGA
[13:39:07] [PASSED] DVI-I
[13:39:07] [PASSED] DVI-D
[13:39:07] [PASSED] DVI-A
[13:39:07] [PASSED] Composite
[13:39:07] [PASSED] SVIDEO
[13:39:07] [PASSED] LVDS
[13:39:07] [PASSED] Component
[13:39:07] [PASSED] DIN
[13:39:07] [PASSED] DP
[13:39:07] [PASSED] HDMI-A
[13:39:07] [PASSED] HDMI-B
[13:39:07] [PASSED] TV
[13:39:07] [PASSED] eDP
[13:39:07] [PASSED] Virtual
[13:39:07] [PASSED] DSI
[13:39:07] [PASSED] DPI
[13:39:07] [PASSED] Writeback
[13:39:07] [PASSED] SPI
[13:39:07] [PASSED] USB
[13:39:07] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[13:39:07] ======== drm_test_drm_connector_dynamic_init_name =========
[13:39:07] [PASSED] Unknown
[13:39:07] [PASSED] VGA
[13:39:07] [PASSED] DVI-I
[13:39:07] [PASSED] DVI-D
[13:39:07] [PASSED] DVI-A
[13:39:07] [PASSED] Composite
[13:39:07] [PASSED] SVIDEO
[13:39:07] [PASSED] LVDS
[13:39:07] [PASSED] Component
[13:39:07] [PASSED] DIN
[13:39:07] [PASSED] DP
[13:39:07] [PASSED] HDMI-A
[13:39:07] [PASSED] HDMI-B
[13:39:07] [PASSED] TV
[13:39:07] [PASSED] eDP
[13:39:07] [PASSED] Virtual
[13:39:07] [PASSED] DSI
[13:39:07] [PASSED] DPI
[13:39:07] [PASSED] Writeback
[13:39:07] [PASSED] SPI
[13:39:07] [PASSED] USB
[13:39:07] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[13:39:07] =========== [PASSED] drm_connector_dynamic_init ============
[13:39:07] ==== drm_connector_dynamic_register_early (4 subtests) =====
[13:39:07] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[13:39:07] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[13:39:07] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[13:39:07] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[13:39:07] ====== [PASSED] drm_connector_dynamic_register_early =======
[13:39:07] ======= drm_connector_dynamic_register (7 subtests) ========
[13:39:07] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[13:39:07] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[13:39:07] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[13:39:07] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[13:39:07] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[13:39:07] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[13:39:07] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[13:39:07] ========= [PASSED] drm_connector_dynamic_register ==========
[13:39:07] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[13:39:07] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[13:39:07] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[13:39:07] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[13:39:07] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[13:39:07] ========== drm_test_get_tv_mode_from_name_valid ===========
[13:39:07] [PASSED] NTSC
[13:39:07] [PASSED] NTSC-443
[13:39:07] [PASSED] NTSC-J
[13:39:07] [PASSED] PAL
[13:39:07] [PASSED] PAL-M
[13:39:07] [PASSED] PAL-N
[13:39:07] [PASSED] SECAM
[13:39:07] [PASSED] Mono
[13:39:07] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[13:39:07] [PASSED] drm_test_get_tv_mode_from_name_truncated
[13:39:07] ============ [PASSED] drm_get_tv_mode_from_name ============
[13:39:07] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[13:39:07] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[13:39:07] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[13:39:07] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[13:39:07] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[13:39:07] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[13:39:07] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[13:39:07] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[13:39:07] [PASSED] VIC 96
[13:39:07] [PASSED] VIC 97
[13:39:07] [PASSED] VIC 101
[13:39:07] [PASSED] VIC 102
[13:39:07] [PASSED] VIC 106
[13:39:07] [PASSED] VIC 107
[13:39:07] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[13:39:07] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[13:39:07] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[13:39:07] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[13:39:07] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[13:39:07] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[13:39:07] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[13:39:07] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[13:39:07] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[13:39:07] [PASSED] Automatic
[13:39:07] [PASSED] Full
[13:39:07] [PASSED] Limited 16:235
[13:39:07] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[13:39:07] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[13:39:07] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[13:39:07] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[13:39:07] === drm_test_drm_hdmi_connector_get_output_format_name ====
[13:39:07] [PASSED] RGB
[13:39:07] [PASSED] YUV 4:2:0
[13:39:07] [PASSED] YUV 4:2:2
[13:39:07] [PASSED] YUV 4:4:4
[13:39:07] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[13:39:07] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[13:39:07] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[13:39:07] ============= drm_damage_helper (21 subtests) ==============
[13:39:07] [PASSED] drm_test_damage_iter_no_damage
[13:39:07] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[13:39:07] [PASSED] drm_test_damage_iter_no_damage_src_moved
[13:39:07] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[13:39:07] [PASSED] drm_test_damage_iter_no_damage_not_visible
[13:39:07] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[13:39:07] [PASSED] drm_test_damage_iter_no_damage_no_fb
[13:39:07] [PASSED] drm_test_damage_iter_simple_damage
[13:39:07] [PASSED] drm_test_damage_iter_single_damage
[13:39:07] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[13:39:07] [PASSED] drm_test_damage_iter_single_damage_outside_src
[13:39:07] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[13:39:07] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[13:39:07] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[13:39:07] [PASSED] drm_test_damage_iter_single_damage_src_moved
[13:39:07] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[13:39:07] [PASSED] drm_test_damage_iter_damage
[13:39:07] [PASSED] drm_test_damage_iter_damage_one_intersect
[13:39:07] [PASSED] drm_test_damage_iter_damage_one_outside
[13:39:07] [PASSED] drm_test_damage_iter_damage_src_moved
[13:39:07] [PASSED] drm_test_damage_iter_damage_not_visible
[13:39:07] ================ [PASSED] drm_damage_helper ================
[13:39:07] ============== drm_dp_mst_helper (3 subtests) ==============
[13:39:07] ============== drm_test_dp_mst_calc_pbn_mode ==============
[13:39:07] [PASSED] Clock 154000 BPP 30 DSC disabled
[13:39:07] [PASSED] Clock 234000 BPP 30 DSC disabled
[13:39:07] [PASSED] Clock 297000 BPP 24 DSC disabled
[13:39:07] [PASSED] Clock 332880 BPP 24 DSC enabled
[13:39:07] [PASSED] Clock 324540 BPP 24 DSC enabled
[13:39:07] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[13:39:07] ============== drm_test_dp_mst_calc_pbn_div ===============
[13:39:07] [PASSED] Link rate 2000000 lane count 4
[13:39:07] [PASSED] Link rate 2000000 lane count 2
[13:39:07] [PASSED] Link rate 2000000 lane count 1
[13:39:07] [PASSED] Link rate 1350000 lane count 4
[13:39:07] [PASSED] Link rate 1350000 lane count 2
[13:39:07] [PASSED] Link rate 1350000 lane count 1
[13:39:07] [PASSED] Link rate 1000000 lane count 4
[13:39:07] [PASSED] Link rate 1000000 lane count 2
[13:39:07] [PASSED] Link rate 1000000 lane count 1
[13:39:07] [PASSED] Link rate 810000 lane count 4
[13:39:07] [PASSED] Link rate 810000 lane count 2
[13:39:07] [PASSED] Link rate 810000 lane count 1
[13:39:07] [PASSED] Link rate 540000 lane count 4
[13:39:07] [PASSED] Link rate 540000 lane count 2
[13:39:07] [PASSED] Link rate 540000 lane count 1
[13:39:07] [PASSED] Link rate 270000 lane count 4
[13:39:07] [PASSED] Link rate 270000 lane count 2
[13:39:07] [PASSED] Link rate 270000 lane count 1
[13:39:07] [PASSED] Link rate 162000 lane count 4
[13:39:07] [PASSED] Link rate 162000 lane count 2
[13:39:07] [PASSED] Link rate 162000 lane count 1
[13:39:07] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[13:39:07] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[13:39:07] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[13:39:07] [PASSED] DP_POWER_UP_PHY with port number
[13:39:07] [PASSED] DP_POWER_DOWN_PHY with port number
[13:39:07] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[13:39:07] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[13:39:07] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[13:39:07] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[13:39:07] [PASSED] DP_QUERY_PAYLOAD with port number
[13:39:07] [PASSED] DP_QUERY_PAYLOAD with VCPI
[13:39:07] [PASSED] DP_REMOTE_DPCD_READ with port number
[13:39:07] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[13:39:07] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[13:39:07] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[13:39:07] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[13:39:07] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[13:39:07] [PASSED] DP_REMOTE_I2C_READ with port number
[13:39:07] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[13:39:07] [PASSED] DP_REMOTE_I2C_READ with transactions array
[13:39:07] [PASSED] DP_REMOTE_I2C_WRITE with port number
[13:39:07] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[13:39:07] [PASSED] DP_REMOTE_I2C_WRITE with data array
[13:39:07] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[13:39:07] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[13:39:07] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[13:39:07] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[13:39:07] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[13:39:07] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[13:39:07] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[13:39:07] ================ [PASSED] drm_dp_mst_helper ================
[13:39:07] ================== drm_exec (7 subtests) ===================
[13:39:07] [PASSED] sanitycheck
[13:39:07] [PASSED] test_lock
[13:39:07] [PASSED] test_lock_unlock
[13:39:07] [PASSED] test_duplicates
[13:39:07] [PASSED] test_prepare
[13:39:07] [PASSED] test_prepare_array
[13:39:07] [PASSED] test_multiple_loops
[13:39:07] ==================== [PASSED] drm_exec =====================
[13:39:07] =========== drm_format_helper_test (17 subtests) ===========
[13:39:07] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[13:39:07] [PASSED] single_pixel_source_buffer
[13:39:07] [PASSED] single_pixel_clip_rectangle
[13:39:07] [PASSED] well_known_colors
[13:39:07] [PASSED] destination_pitch
[13:39:07] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[13:39:07] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[13:39:07] [PASSED] single_pixel_source_buffer
[13:39:07] [PASSED] single_pixel_clip_rectangle
[13:39:07] [PASSED] well_known_colors
[13:39:07] [PASSED] destination_pitch
[13:39:07] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[13:39:07] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[13:39:07] [PASSED] single_pixel_source_buffer
[13:39:07] [PASSED] single_pixel_clip_rectangle
[13:39:07] [PASSED] well_known_colors
[13:39:07] [PASSED] destination_pitch
[13:39:07] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[13:39:07] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[13:39:07] [PASSED] single_pixel_source_buffer
[13:39:07] [PASSED] single_pixel_clip_rectangle
[13:39:07] [PASSED] well_known_colors
[13:39:07] [PASSED] destination_pitch
[13:39:07] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[13:39:07] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[13:39:07] [PASSED] single_pixel_source_buffer
[13:39:07] [PASSED] single_pixel_clip_rectangle
[13:39:07] [PASSED] well_known_colors
[13:39:07] [PASSED] destination_pitch
[13:39:07] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[13:39:07] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[13:39:07] [PASSED] single_pixel_source_buffer
[13:39:07] [PASSED] single_pixel_clip_rectangle
[13:39:07] [PASSED] well_known_colors
[13:39:07] [PASSED] destination_pitch
[13:39:07] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[13:39:07] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[13:39:07] [PASSED] single_pixel_source_buffer
[13:39:07] [PASSED] single_pixel_clip_rectangle
[13:39:07] [PASSED] well_known_colors
[13:39:07] [PASSED] destination_pitch
[13:39:07] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[13:39:07] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[13:39:07] [PASSED] single_pixel_source_buffer
[13:39:07] [PASSED] single_pixel_clip_rectangle
[13:39:07] [PASSED] well_known_colors
[13:39:07] [PASSED] destination_pitch
[13:39:07] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[13:39:07] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[13:39:07] [PASSED] single_pixel_source_buffer
[13:39:07] [PASSED] single_pixel_clip_rectangle
[13:39:07] [PASSED] well_known_colors
[13:39:07] [PASSED] destination_pitch
[13:39:07] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[13:39:07] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[13:39:07] [PASSED] single_pixel_source_buffer
[13:39:07] [PASSED] single_pixel_clip_rectangle
[13:39:07] [PASSED] well_known_colors
[13:39:07] [PASSED] destination_pitch
[13:39:07] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[13:39:07] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[13:39:07] [PASSED] single_pixel_source_buffer
[13:39:07] [PASSED] single_pixel_clip_rectangle
[13:39:07] [PASSED] well_known_colors
[13:39:07] [PASSED] destination_pitch
[13:39:07] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[13:39:07] ============== drm_test_fb_xrgb8888_to_mono ===============
[13:39:07] [PASSED] single_pixel_source_buffer
[13:39:07] [PASSED] single_pixel_clip_rectangle
[13:39:07] [PASSED] well_known_colors
[13:39:07] [PASSED] destination_pitch
[13:39:07] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[13:39:07] ==================== drm_test_fb_swab =====================
[13:39:07] [PASSED] single_pixel_source_buffer
[13:39:07] [PASSED] single_pixel_clip_rectangle
[13:39:07] [PASSED] well_known_colors
[13:39:07] [PASSED] destination_pitch
[13:39:07] ================ [PASSED] drm_test_fb_swab =================
[13:39:07] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[13:39:07] [PASSED] single_pixel_source_buffer
[13:39:07] [PASSED] single_pixel_clip_rectangle
[13:39:07] [PASSED] well_known_colors
[13:39:07] [PASSED] destination_pitch
[13:39:07] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[13:39:07] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[13:39:07] [PASSED] single_pixel_source_buffer
[13:39:07] [PASSED] single_pixel_clip_rectangle
[13:39:07] [PASSED] well_known_colors
[13:39:07] [PASSED] destination_pitch
[13:39:07] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[13:39:07] ================= drm_test_fb_clip_offset =================
[13:39:07] [PASSED] pass through
[13:39:07] [PASSED] horizontal offset
[13:39:07] [PASSED] vertical offset
[13:39:07] [PASSED] horizontal and vertical offset
[13:39:07] [PASSED] horizontal offset (custom pitch)
[13:39:07] [PASSED] vertical offset (custom pitch)
[13:39:07] [PASSED] horizontal and vertical offset (custom pitch)
[13:39:07] ============= [PASSED] drm_test_fb_clip_offset =============
[13:39:07] =================== drm_test_fb_memcpy ====================
[13:39:07] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[13:39:07] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[13:39:07] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[13:39:07] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[13:39:07] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[13:39:07] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[13:39:07] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[13:39:07] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[13:39:07] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[13:39:07] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[13:39:07] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[13:39:07] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[13:39:07] =============== [PASSED] drm_test_fb_memcpy ================
[13:39:07] ============= [PASSED] drm_format_helper_test ==============
[13:39:07] ================= drm_format (18 subtests) =================
[13:39:07] [PASSED] drm_test_format_block_width_invalid
[13:39:07] [PASSED] drm_test_format_block_width_one_plane
[13:39:07] [PASSED] drm_test_format_block_width_two_plane
[13:39:07] [PASSED] drm_test_format_block_width_three_plane
[13:39:07] [PASSED] drm_test_format_block_width_tiled
[13:39:07] [PASSED] drm_test_format_block_height_invalid
[13:39:07] [PASSED] drm_test_format_block_height_one_plane
[13:39:07] [PASSED] drm_test_format_block_height_two_plane
[13:39:07] [PASSED] drm_test_format_block_height_three_plane
[13:39:07] [PASSED] drm_test_format_block_height_tiled
[13:39:07] [PASSED] drm_test_format_min_pitch_invalid
[13:39:07] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[13:39:07] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[13:39:07] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[13:39:07] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[13:39:07] [PASSED] drm_test_format_min_pitch_two_plane
[13:39:07] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[13:39:07] [PASSED] drm_test_format_min_pitch_tiled
[13:39:07] =================== [PASSED] drm_format ====================
[13:39:07] ============== drm_framebuffer (10 subtests) ===============
[13:39:07] ========== drm_test_framebuffer_check_src_coords ==========
[13:39:07] [PASSED] Success: source fits into fb
[13:39:07] [PASSED] Fail: overflowing fb with x-axis coordinate
[13:39:07] [PASSED] Fail: overflowing fb with y-axis coordinate
[13:39:07] [PASSED] Fail: overflowing fb with source width
[13:39:07] [PASSED] Fail: overflowing fb with source height
[13:39:07] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[13:39:07] [PASSED] drm_test_framebuffer_cleanup
[13:39:07] =============== drm_test_framebuffer_create ===============
[13:39:07] [PASSED] ABGR8888 normal sizes
[13:39:07] [PASSED] ABGR8888 max sizes
[13:39:07] [PASSED] ABGR8888 pitch greater than min required
[13:39:07] [PASSED] ABGR8888 pitch less than min required
[13:39:07] [PASSED] ABGR8888 Invalid width
[13:39:07] [PASSED] ABGR8888 Invalid buffer handle
[13:39:07] [PASSED] No pixel format
[13:39:07] [PASSED] ABGR8888 Width 0
[13:39:07] [PASSED] ABGR8888 Height 0
[13:39:07] [PASSED] ABGR8888 Out of bound height * pitch combination
[13:39:07] [PASSED] ABGR8888 Large buffer offset
[13:39:07] [PASSED] ABGR8888 Buffer offset for inexistent plane
[13:39:07] [PASSED] ABGR8888 Invalid flag
[13:39:07] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[13:39:07] [PASSED] ABGR8888 Valid buffer modifier
[13:39:07] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[13:39:07] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[13:39:07] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[13:39:07] [PASSED] NV12 Normal sizes
[13:39:07] [PASSED] NV12 Max sizes
[13:39:07] [PASSED] NV12 Invalid pitch
[13:39:07] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[13:39:07] [PASSED] NV12 different modifier per-plane
[13:39:07] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[13:39:07] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[13:39:07] [PASSED] NV12 Modifier for inexistent plane
[13:39:07] [PASSED] NV12 Handle for inexistent plane
[13:39:07] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[13:39:07] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[13:39:07] [PASSED] YVU420 Normal sizes
[13:39:07] [PASSED] YVU420 Max sizes
[13:39:07] [PASSED] YVU420 Invalid pitch
[13:39:07] [PASSED] YVU420 Different pitches
[13:39:07] [PASSED] YVU420 Different buffer offsets/pitches
[13:39:07] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[13:39:07] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[13:39:07] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[13:39:07] [PASSED] YVU420 Valid modifier
[13:39:07] [PASSED] YVU420 Different modifiers per plane
[13:39:07] [PASSED] YVU420 Modifier for inexistent plane
[13:39:07] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[13:39:07] [PASSED] X0L2 Normal sizes
[13:39:07] [PASSED] X0L2 Max sizes
[13:39:07] [PASSED] X0L2 Invalid pitch
[13:39:07] [PASSED] X0L2 Pitch greater than minimum required
[13:39:07] [PASSED] X0L2 Handle for inexistent plane
[13:39:07] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[13:39:07] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[13:39:07] [PASSED] X0L2 Valid modifier
[13:39:07] [PASSED] X0L2 Modifier for inexistent plane
[13:39:07] =========== [PASSED] drm_test_framebuffer_create ===========
[13:39:07] [PASSED] drm_test_framebuffer_free
[13:39:07] [PASSED] drm_test_framebuffer_init
[13:39:07] [PASSED] drm_test_framebuffer_init_bad_format
[13:39:07] [PASSED] drm_test_framebuffer_init_dev_mismatch
[13:39:07] [PASSED] drm_test_framebuffer_lookup
[13:39:07] [PASSED] drm_test_framebuffer_lookup_inexistent
[13:39:07] [PASSED] drm_test_framebuffer_modifiers_not_supported
[13:39:07] ================= [PASSED] drm_framebuffer =================
[13:39:07] ================ drm_gem_shmem (8 subtests) ================
[13:39:07] [PASSED] drm_gem_shmem_test_obj_create
[13:39:07] [PASSED] drm_gem_shmem_test_obj_create_private
[13:39:07] [PASSED] drm_gem_shmem_test_pin_pages
[13:39:07] [PASSED] drm_gem_shmem_test_vmap
[13:39:07] [PASSED] drm_gem_shmem_test_get_pages_sgt
[13:39:07] [PASSED] drm_gem_shmem_test_get_sg_table
[13:39:07] [PASSED] drm_gem_shmem_test_madvise
[13:39:07] [PASSED] drm_gem_shmem_test_purge
[13:39:07] ================== [PASSED] drm_gem_shmem ==================
[13:39:07] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[13:39:07] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[13:39:07] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[13:39:07] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[13:39:07] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[13:39:07] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[13:39:07] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[13:39:07] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[13:39:07] [PASSED] Automatic
[13:39:07] [PASSED] Full
[13:39:07] [PASSED] Limited 16:235
[13:39:07] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[13:39:07] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[13:39:07] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[13:39:07] [PASSED] drm_test_check_disable_connector
[13:39:07] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[13:39:07] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[13:39:07] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[13:39:07] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[13:39:07] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[13:39:07] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[13:39:07] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[13:39:07] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[13:39:07] [PASSED] drm_test_check_output_bpc_dvi
[13:39:07] [PASSED] drm_test_check_output_bpc_format_vic_1
[13:39:07] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[13:39:07] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[13:39:07] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[13:39:07] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[13:39:07] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[13:39:07] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[13:39:07] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[13:39:07] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[13:39:07] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[13:39:07] [PASSED] drm_test_check_broadcast_rgb_value
[13:39:07] [PASSED] drm_test_check_bpc_8_value
[13:39:07] [PASSED] drm_test_check_bpc_10_value
[13:39:07] [PASSED] drm_test_check_bpc_12_value
[13:39:07] [PASSED] drm_test_check_format_value
[13:39:07] [PASSED] drm_test_check_tmds_char_value
[13:39:07] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[13:39:07] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[13:39:07] [PASSED] drm_test_check_mode_valid
[13:39:07] [PASSED] drm_test_check_mode_valid_reject
[13:39:07] [PASSED] drm_test_check_mode_valid_reject_rate
[13:39:07] [PASSED] drm_test_check_mode_valid_reject_max_clock
[13:39:07] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[13:39:07] ================= drm_managed (2 subtests) =================
[13:39:07] [PASSED] drm_test_managed_release_action
[13:39:07] [PASSED] drm_test_managed_run_action
[13:39:07] =================== [PASSED] drm_managed ===================
[13:39:07] =================== drm_mm (6 subtests) ====================
[13:39:07] [PASSED] drm_test_mm_init
[13:39:07] [PASSED] drm_test_mm_debug
[13:39:07] [PASSED] drm_test_mm_align32
[13:39:07] [PASSED] drm_test_mm_align64
[13:39:07] [PASSED] drm_test_mm_lowest
[13:39:07] [PASSED] drm_test_mm_highest
[13:39:07] ===================== [PASSED] drm_mm ======================
[13:39:07] ============= drm_modes_analog_tv (5 subtests) =============
[13:39:07] [PASSED] drm_test_modes_analog_tv_mono_576i
[13:39:07] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[13:39:07] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[13:39:07] [PASSED] drm_test_modes_analog_tv_pal_576i
[13:39:07] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[13:39:07] =============== [PASSED] drm_modes_analog_tv ===============
[13:39:07] ============== drm_plane_helper (2 subtests) ===============
[13:39:07] =============== drm_test_check_plane_state ================
[13:39:07] [PASSED] clipping_simple
[13:39:07] [PASSED] clipping_rotate_reflect
[13:39:07] [PASSED] positioning_simple
[13:39:07] [PASSED] upscaling
[13:39:07] [PASSED] downscaling
[13:39:07] [PASSED] rounding1
[13:39:07] [PASSED] rounding2
[13:39:07] [PASSED] rounding3
[13:39:07] [PASSED] rounding4
[13:39:07] =========== [PASSED] drm_test_check_plane_state ============
[13:39:07] =========== drm_test_check_invalid_plane_state ============
[13:39:07] [PASSED] positioning_invalid
[13:39:07] [PASSED] upscaling_invalid
[13:39:07] [PASSED] downscaling_invalid
[13:39:07] ======= [PASSED] drm_test_check_invalid_plane_state ========
[13:39:07] ================ [PASSED] drm_plane_helper =================
[13:39:07] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[13:39:07] ====== drm_test_connector_helper_tv_get_modes_check =======
[13:39:07] [PASSED] None
[13:39:07] [PASSED] PAL
[13:39:07] [PASSED] NTSC
[13:39:07] [PASSED] Both, NTSC Default
[13:39:07] [PASSED] Both, PAL Default
[13:39:07] [PASSED] Both, NTSC Default, with PAL on command-line
[13:39:07] [PASSED] Both, PAL Default, with NTSC on command-line
[13:39:07] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[13:39:07] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[13:39:07] ================== drm_rect (9 subtests) ===================
[13:39:07] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[13:39:07] [PASSED] drm_test_rect_clip_scaled_not_clipped
[13:39:07] [PASSED] drm_test_rect_clip_scaled_clipped
[13:39:07] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[13:39:07] ================= drm_test_rect_intersect =================
[13:39:07] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[13:39:07] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[13:39:07] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[13:39:07] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[13:39:07] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[13:39:07] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[13:39:07] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[13:39:07] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[13:39:07] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[13:39:07] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[13:39:07] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[13:39:07] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[13:39:07] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[13:39:07] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[13:39:07] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[13:39:07] ============= [PASSED] drm_test_rect_intersect =============
[13:39:07] ================ drm_test_rect_calc_hscale ================
[13:39:07] [PASSED] normal use
[13:39:07] [PASSED] out of max range
[13:39:07] [PASSED] out of min range
[13:39:07] [PASSED] zero dst
[13:39:07] [PASSED] negative src
[13:39:07] [PASSED] negative dst
[13:39:07] ============ [PASSED] drm_test_rect_calc_hscale ============
[13:39:07] ================ drm_test_rect_calc_vscale ================
[13:39:07] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[13:39:07] [PASSED] out of max range
[13:39:07] [PASSED] out of min range
[13:39:07] [PASSED] zero dst
[13:39:07] [PASSED] negative src
[13:39:07] [PASSED] negative dst
[13:39:07] ============ [PASSED] drm_test_rect_calc_vscale ============
[13:39:07] ================== drm_test_rect_rotate ===================
[13:39:07] [PASSED] reflect-x
[13:39:07] [PASSED] reflect-y
[13:39:07] [PASSED] rotate-0
[13:39:07] [PASSED] rotate-90
[13:39:07] [PASSED] rotate-180
[13:39:07] [PASSED] rotate-270
[13:39:07] ============== [PASSED] drm_test_rect_rotate ===============
[13:39:07] ================ drm_test_rect_rotate_inv =================
[13:39:07] [PASSED] reflect-x
[13:39:07] [PASSED] reflect-y
[13:39:07] [PASSED] rotate-0
[13:39:07] [PASSED] rotate-90
[13:39:07] [PASSED] rotate-180
[13:39:07] [PASSED] rotate-270
[13:39:07] ============ [PASSED] drm_test_rect_rotate_inv =============
[13:39:07] ==================== [PASSED] drm_rect =====================
[13:39:07] ============ drm_sysfb_modeset_test (1 subtest) ============
[13:39:07] ============ drm_test_sysfb_build_fourcc_list =============
[13:39:07] [PASSED] no native formats
[13:39:07] [PASSED] XRGB8888 as native format
[13:39:07] [PASSED] remove duplicates
[13:39:07] [PASSED] convert alpha formats
[13:39:07] [PASSED] random formats
[13:39:07] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[13:39:07] ============= [PASSED] drm_sysfb_modeset_test ==============
[13:39:07] ============================================================
[13:39:07] Testing complete. Ran 622 tests: passed: 622
[13:39:07] Elapsed time: 27.427s total, 1.628s configuring, 25.377s building, 0.411s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[13:39:07] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[13:39:09] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[13:39:19] Starting KUnit Kernel (1/1)...
[13:39:19] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[13:39:19] ================= ttm_device (5 subtests) ==================
[13:39:19] [PASSED] ttm_device_init_basic
[13:39:19] [PASSED] ttm_device_init_multiple
[13:39:19] [PASSED] ttm_device_fini_basic
[13:39:19] [PASSED] ttm_device_init_no_vma_man
[13:39:19] ================== ttm_device_init_pools ==================
[13:39:19] [PASSED] No DMA allocations, no DMA32 required
[13:39:19] [PASSED] DMA allocations, DMA32 required
[13:39:19] [PASSED] No DMA allocations, DMA32 required
[13:39:19] [PASSED] DMA allocations, no DMA32 required
[13:39:19] ============== [PASSED] ttm_device_init_pools ==============
[13:39:19] =================== [PASSED] ttm_device ====================
[13:39:19] ================== ttm_pool (8 subtests) ===================
[13:39:19] ================== ttm_pool_alloc_basic ===================
[13:39:19] [PASSED] One page
[13:39:19] [PASSED] More than one page
[13:39:19] [PASSED] Above the allocation limit
[13:39:19] [PASSED] One page, with coherent DMA mappings enabled
[13:39:19] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[13:39:19] ============== [PASSED] ttm_pool_alloc_basic ===============
[13:39:19] ============== ttm_pool_alloc_basic_dma_addr ==============
[13:39:19] [PASSED] One page
[13:39:19] [PASSED] More than one page
[13:39:19] [PASSED] Above the allocation limit
[13:39:19] [PASSED] One page, with coherent DMA mappings enabled
[13:39:19] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[13:39:19] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[13:39:19] [PASSED] ttm_pool_alloc_order_caching_match
[13:39:19] [PASSED] ttm_pool_alloc_caching_mismatch
[13:39:19] [PASSED] ttm_pool_alloc_order_mismatch
[13:39:19] [PASSED] ttm_pool_free_dma_alloc
[13:39:19] [PASSED] ttm_pool_free_no_dma_alloc
[13:39:19] [PASSED] ttm_pool_fini_basic
[13:39:19] ==================== [PASSED] ttm_pool =====================
[13:39:19] ================ ttm_resource (8 subtests) =================
[13:39:19] ================= ttm_resource_init_basic =================
[13:39:19] [PASSED] Init resource in TTM_PL_SYSTEM
[13:39:19] [PASSED] Init resource in TTM_PL_VRAM
[13:39:19] [PASSED] Init resource in a private placement
[13:39:19] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[13:39:19] ============= [PASSED] ttm_resource_init_basic =============
[13:39:19] [PASSED] ttm_resource_init_pinned
[13:39:19] [PASSED] ttm_resource_fini_basic
[13:39:19] [PASSED] ttm_resource_manager_init_basic
[13:39:19] [PASSED] ttm_resource_manager_usage_basic
[13:39:19] [PASSED] ttm_resource_manager_set_used_basic
[13:39:19] [PASSED] ttm_sys_man_alloc_basic
[13:39:19] [PASSED] ttm_sys_man_free_basic
[13:39:19] ================== [PASSED] ttm_resource ===================
[13:39:19] =================== ttm_tt (15 subtests) ===================
[13:39:19] ==================== ttm_tt_init_basic ====================
[13:39:19] [PASSED] Page-aligned size
[13:39:19] [PASSED] Extra pages requested
[13:39:19] ================ [PASSED] ttm_tt_init_basic ================
[13:39:19] [PASSED] ttm_tt_init_misaligned
[13:39:19] [PASSED] ttm_tt_fini_basic
[13:39:19] [PASSED] ttm_tt_fini_sg
[13:39:19] [PASSED] ttm_tt_fini_shmem
[13:39:19] [PASSED] ttm_tt_create_basic
[13:39:19] [PASSED] ttm_tt_create_invalid_bo_type
[13:39:19] [PASSED] ttm_tt_create_ttm_exists
[13:39:19] [PASSED] ttm_tt_create_failed
[13:39:19] [PASSED] ttm_tt_destroy_basic
[13:39:19] [PASSED] ttm_tt_populate_null_ttm
[13:39:19] [PASSED] ttm_tt_populate_populated_ttm
[13:39:19] [PASSED] ttm_tt_unpopulate_basic
[13:39:19] [PASSED] ttm_tt_unpopulate_empty_ttm
[13:39:19] [PASSED] ttm_tt_swapin_basic
[13:39:19] ===================== [PASSED] ttm_tt ======================
[13:39:19] =================== ttm_bo (14 subtests) ===================
[13:39:19] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[13:39:19] [PASSED] Cannot be interrupted and sleeps
[13:39:19] [PASSED] Cannot be interrupted, locks straight away
[13:39:19] [PASSED] Can be interrupted, sleeps
[13:39:19] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[13:39:19] [PASSED] ttm_bo_reserve_locked_no_sleep
[13:39:19] [PASSED] ttm_bo_reserve_no_wait_ticket
[13:39:19] [PASSED] ttm_bo_reserve_double_resv
[13:39:19] [PASSED] ttm_bo_reserve_interrupted
[13:39:19] [PASSED] ttm_bo_reserve_deadlock
[13:39:19] [PASSED] ttm_bo_unreserve_basic
[13:39:19] [PASSED] ttm_bo_unreserve_pinned
[13:39:19] [PASSED] ttm_bo_unreserve_bulk
[13:39:19] [PASSED] ttm_bo_fini_basic
[13:39:19] [PASSED] ttm_bo_fini_shared_resv
[13:39:19] [PASSED] ttm_bo_pin_basic
[13:39:19] [PASSED] ttm_bo_pin_unpin_resource
[13:39:19] [PASSED] ttm_bo_multiple_pin_one_unpin
[13:39:19] ===================== [PASSED] ttm_bo ======================
[13:39:19] ============== ttm_bo_validate (21 subtests) ===============
[13:39:19] ============== ttm_bo_init_reserved_sys_man ===============
[13:39:19] [PASSED] Buffer object for userspace
[13:39:19] [PASSED] Kernel buffer object
[13:39:19] [PASSED] Shared buffer object
[13:39:19] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[13:39:19] ============== ttm_bo_init_reserved_mock_man ==============
[13:39:19] [PASSED] Buffer object for userspace
[13:39:19] [PASSED] Kernel buffer object
[13:39:19] [PASSED] Shared buffer object
[13:39:19] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[13:39:19] [PASSED] ttm_bo_init_reserved_resv
[13:39:19] ================== ttm_bo_validate_basic ==================
[13:39:19] [PASSED] Buffer object for userspace
[13:39:19] [PASSED] Kernel buffer object
[13:39:19] [PASSED] Shared buffer object
[13:39:19] ============== [PASSED] ttm_bo_validate_basic ==============
[13:39:19] [PASSED] ttm_bo_validate_invalid_placement
[13:39:19] ============= ttm_bo_validate_same_placement ==============
[13:39:19] [PASSED] System manager
[13:39:19] [PASSED] VRAM manager
[13:39:19] ========= [PASSED] ttm_bo_validate_same_placement ==========
[13:39:19] [PASSED] ttm_bo_validate_failed_alloc
[13:39:19] [PASSED] ttm_bo_validate_pinned
[13:39:19] [PASSED] ttm_bo_validate_busy_placement
[13:39:19] ================ ttm_bo_validate_multihop =================
[13:39:19] [PASSED] Buffer object for userspace
[13:39:19] [PASSED] Kernel buffer object
[13:39:19] [PASSED] Shared buffer object
[13:39:19] ============ [PASSED] ttm_bo_validate_multihop =============
[13:39:19] ========== ttm_bo_validate_no_placement_signaled ==========
[13:39:19] [PASSED] Buffer object in system domain, no page vector
[13:39:19] [PASSED] Buffer object in system domain with an existing page vector
[13:39:19] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[13:39:19] ======== ttm_bo_validate_no_placement_not_signaled ========
[13:39:19] [PASSED] Buffer object for userspace
[13:39:19] [PASSED] Kernel buffer object
[13:39:19] [PASSED] Shared buffer object
[13:39:19] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[13:39:19] [PASSED] ttm_bo_validate_move_fence_signaled
[13:39:19] ========= ttm_bo_validate_move_fence_not_signaled =========
[13:39:19] [PASSED] Waits for GPU
[13:39:19] [PASSED] Tries to lock straight away
[13:39:19] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[13:39:19] [PASSED] ttm_bo_validate_happy_evict
[13:39:19] [PASSED] ttm_bo_validate_all_pinned_evict
[13:39:19] [PASSED] ttm_bo_validate_allowed_only_evict
[13:39:19] [PASSED] ttm_bo_validate_deleted_evict
[13:39:19] [PASSED] ttm_bo_validate_busy_domain_evict
[13:39:19] [PASSED] ttm_bo_validate_evict_gutting
[13:39:19] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[13:39:19] ================= [PASSED] ttm_bo_validate =================
[13:39:19] ============================================================
[13:39:19] Testing complete. Ran 101 tests: passed: 101
[13:39:19] Elapsed time: 12.127s total, 1.742s configuring, 10.170s building, 0.179s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 21+ messages in thread* ✗ CI.checksparse: warning for Testing PREEMPT_RT with disabling interrupts in the most critical section. (rev2)
2025-10-23 8:55 [FOR CI 0/5] Testing PREEMPT_RT with disabling interrupts in the most critical section Maarten Lankhorst
` (6 preceding siblings ...)
2025-10-23 13:39 ` ✓ CI.KUnit: success " Patchwork
@ 2025-10-23 14:00 ` Patchwork
2025-10-23 22:15 ` ✗ Xe.CI.Full: failure " Patchwork
` (5 subsequent siblings)
13 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2025-10-23 14:00 UTC (permalink / raw)
To: Maarten Lankhorst; +Cc: intel-xe
== Series Details ==
Series: Testing PREEMPT_RT with disabling interrupts in the most critical section. (rev2)
URL : https://patchwork.freedesktop.org/series/156134/
State : warning
== Summary ==
+ trap cleanup EXIT
+ KERNEL=/kernel
+ MT=/root/linux/maintainer-tools
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools /root/linux/maintainer-tools
Cloning into '/root/linux/maintainer-tools'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ make -C /root/linux/maintainer-tools
make: Entering directory '/root/linux/maintainer-tools'
cc -O2 -g -Wextra -o remap-log remap-log.c
make: Leaving directory '/root/linux/maintainer-tools'
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ /root/linux/maintainer-tools/dim sparse --fast e5409e1beaa3a7a89c5b5d90fd3a616ecacb1df4
Sparse version: 0.6.4 (Ubuntu: 0.6.4-4ubuntu3)
Fast mode used, each commit won't be checked separately.
-
+drivers/gpu/drm/drm_drv.c:449:6: warning: context imbalance in 'drm_dev_enter' - different lock contexts for basic block
+drivers/gpu/drm/drm_drv.c: note: in included file (through include/linux/notifier.h, arch/x86/include/asm/uprobes.h, include/linux/uprobes.h, include/linux/mm_types.h, include/linux/mmzone.h, include/linux/gfp.h, ...):
+drivers/gpu/drm/drm_gem.c:446:9: warning: context imbalance in 'drm_gem_handle_create_tail' - unexpected unlock
+drivers/gpu/drm/drm_plane.c:213:24: warning: Using plain integer as NULL pointer
+drivers/gpu/drm/drm_syncobj.c:602:24: warning: context imbalance in 'drm_syncobj_get_handle' - unexpected unlock
+drivers/gpu/drm/drm_syncobj.c:727:24: warning: context imbalance in 'drm_syncobj_fd_to_handle' - unexpected unlock
+./include/linux/srcu.h:389:9: warning: context imbalance in 'drm_dev_exit' - unexpected unlock
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 21+ messages in thread* ✗ Xe.CI.Full: failure for Testing PREEMPT_RT with disabling interrupts in the most critical section. (rev2)
2025-10-23 8:55 [FOR CI 0/5] Testing PREEMPT_RT with disabling interrupts in the most critical section Maarten Lankhorst
` (7 preceding siblings ...)
2025-10-23 14:00 ` ✗ CI.checksparse: warning " Patchwork
@ 2025-10-23 22:15 ` Patchwork
2025-10-27 10:03 ` ✗ CI.checkpatch: warning for Testing PREEMPT_RT with disabling interrupts in the most critical section. (rev3) Patchwork
` (4 subsequent siblings)
13 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2025-10-23 22:15 UTC (permalink / raw)
To: Maarten Lankhorst; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 412 bytes --]
== Series Details ==
Series: Testing PREEMPT_RT with disabling interrupts in the most critical section. (rev2)
URL : https://patchwork.freedesktop.org/series/156134/
State : failure
== Summary ==
ERROR: The runconfig 'xe-3972-2d884504f47b972c124197c8380c5533324c96d0_FULL' does not exist in the database
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v2/index.html
[-- Attachment #2: Type: text/html, Size: 977 bytes --]
^ permalink raw reply [flat|nested] 21+ messages in thread* ✗ CI.checkpatch: warning for Testing PREEMPT_RT with disabling interrupts in the most critical section. (rev3)
2025-10-23 8:55 [FOR CI 0/5] Testing PREEMPT_RT with disabling interrupts in the most critical section Maarten Lankhorst
` (8 preceding siblings ...)
2025-10-23 22:15 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2025-10-27 10:03 ` Patchwork
2025-10-27 10:04 ` ✓ CI.KUnit: success " Patchwork
` (3 subsequent siblings)
13 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2025-10-27 10:03 UTC (permalink / raw)
To: Maarten Lankhorst; +Cc: intel-xe
== Series Details ==
Series: Testing PREEMPT_RT with disabling interrupts in the most critical section. (rev3)
URL : https://patchwork.freedesktop.org/series/156134/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
f867e605613af1770f90c4b0afd4a8f06424d1f0
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 72ba882007852aaca07a6d527a588635df4dc45f
Author: Maarten Lankhorst <dev@lankhorst.se>
Date: Thu Oct 23 10:56:01 2025 +0200
PREEMPT_RT injection
Signed-off-by: Maarten Lankhorst <dev@lankhorst.se>
+ /mt/dim checkpatch c03916cb446b6eefe91538599775bb54bf98238c drm-intel
3f0d649057b2 drm/xe: Bump xe_device_l2_flush even higher
e5da2c1eef49 drm/i915: Use preempt_disable/enable_rt() where recommended
-:7: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?)
#7:
ad3543ede630f ("drm/intel: Push get_scanout_position() timestamping into kms driver.")
-:45: WARNING:LINE_SPACING: Missing a blank line after declarations
#45: FILE: drivers/gpu/drm/i915/display/intel_vblank.c:323:
+ struct drm_i915_private *i915 = to_i915(display->drm);
+ spin_lock_irqsave(&i915->uncore.lock, *flags);
-:52: WARNING:LINE_SPACING: Missing a blank line after declarations
#52: FILE: drivers/gpu/drm/i915/display/intel_vblank.c:330:
+ struct drm_i915_private *i915 = to_i915(display->drm);
+ spin_unlock_irqrestore(&i915->uncore.lock, flags);
total: 0 errors, 3 warnings, 0 checks, 78 lines checked
1decd7d7dc1e drm/i915: Don't disable interrupts on PREEMPT_RT during atomic updates
-:10: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?)
#10:
started disabling interrupts across atomic updates. This breaks on PREEMPT_RT
total: 0 errors, 1 warnings, 0 checks, 68 lines checked
13e9c44ab8ae drm/xe/display: Disable preemption in the most critical section
72ba88200785 PREEMPT_RT injection
-:7: WARNING:COMMIT_MESSAGE: Missing commit description - Add an appropriate one
total: 0 errors, 1 warnings, 0 checks, 43 lines checked
^ permalink raw reply [flat|nested] 21+ messages in thread* ✓ CI.KUnit: success for Testing PREEMPT_RT with disabling interrupts in the most critical section. (rev3)
2025-10-23 8:55 [FOR CI 0/5] Testing PREEMPT_RT with disabling interrupts in the most critical section Maarten Lankhorst
` (9 preceding siblings ...)
2025-10-27 10:03 ` ✗ CI.checkpatch: warning for Testing PREEMPT_RT with disabling interrupts in the most critical section. (rev3) Patchwork
@ 2025-10-27 10:04 ` Patchwork
2025-10-27 10:18 ` ✗ CI.checksparse: warning " Patchwork
` (2 subsequent siblings)
13 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2025-10-27 10:04 UTC (permalink / raw)
To: Maarten Lankhorst; +Cc: intel-xe
== Series Details ==
Series: Testing PREEMPT_RT with disabling interrupts in the most critical section. (rev3)
URL : https://patchwork.freedesktop.org/series/156134/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[10:03:09] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:03:13] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[10:03:44] Starting KUnit Kernel (1/1)...
[10:03:44] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:03:44] ================== guc_buf (11 subtests) ===================
[10:03:44] [PASSED] test_smallest
[10:03:44] [PASSED] test_largest
[10:03:44] [PASSED] test_granular
[10:03:44] [PASSED] test_unique
[10:03:44] [PASSED] test_overlap
[10:03:44] [PASSED] test_reusable
[10:03:44] [PASSED] test_too_big
[10:03:44] [PASSED] test_flush
[10:03:44] [PASSED] test_lookup
[10:03:44] [PASSED] test_data
[10:03:44] [PASSED] test_class
[10:03:44] ===================== [PASSED] guc_buf =====================
[10:03:44] =================== guc_dbm (7 subtests) ===================
[10:03:44] [PASSED] test_empty
[10:03:44] [PASSED] test_default
[10:03:44] ======================== test_size ========================
[10:03:44] [PASSED] 4
[10:03:44] [PASSED] 8
[10:03:44] [PASSED] 32
[10:03:44] [PASSED] 256
[10:03:44] ==================== [PASSED] test_size ====================
[10:03:44] ======================= test_reuse ========================
[10:03:44] [PASSED] 4
[10:03:44] [PASSED] 8
[10:03:44] [PASSED] 32
[10:03:44] [PASSED] 256
[10:03:44] =================== [PASSED] test_reuse ====================
[10:03:44] =================== test_range_overlap ====================
[10:03:44] [PASSED] 4
[10:03:44] [PASSED] 8
[10:03:44] [PASSED] 32
[10:03:44] [PASSED] 256
[10:03:44] =============== [PASSED] test_range_overlap ================
[10:03:44] =================== test_range_compact ====================
[10:03:44] [PASSED] 4
[10:03:44] [PASSED] 8
[10:03:44] [PASSED] 32
[10:03:44] [PASSED] 256
[10:03:44] =============== [PASSED] test_range_compact ================
[10:03:44] ==================== test_range_spare =====================
[10:03:44] [PASSED] 4
[10:03:44] [PASSED] 8
[10:03:44] [PASSED] 32
[10:03:44] [PASSED] 256
[10:03:44] ================ [PASSED] test_range_spare =================
[10:03:44] ===================== [PASSED] guc_dbm =====================
[10:03:44] =================== guc_idm (6 subtests) ===================
[10:03:44] [PASSED] bad_init
[10:03:44] [PASSED] no_init
[10:03:44] [PASSED] init_fini
[10:03:44] [PASSED] check_used
[10:03:44] [PASSED] check_quota
[10:03:44] [PASSED] check_all
[10:03:44] ===================== [PASSED] guc_idm =====================
[10:03:44] ================== no_relay (3 subtests) ===================
[10:03:44] [PASSED] xe_drops_guc2pf_if_not_ready
[10:03:44] [PASSED] xe_drops_guc2vf_if_not_ready
[10:03:44] [PASSED] xe_rejects_send_if_not_ready
[10:03:44] ==================== [PASSED] no_relay =====================
[10:03:44] ================== pf_relay (14 subtests) ==================
[10:03:44] [PASSED] pf_rejects_guc2pf_too_short
[10:03:44] [PASSED] pf_rejects_guc2pf_too_long
[10:03:44] [PASSED] pf_rejects_guc2pf_no_payload
[10:03:44] [PASSED] pf_fails_no_payload
[10:03:44] [PASSED] pf_fails_bad_origin
[10:03:44] [PASSED] pf_fails_bad_type
[10:03:44] [PASSED] pf_txn_reports_error
[10:03:44] [PASSED] pf_txn_sends_pf2guc
[10:03:44] [PASSED] pf_sends_pf2guc
[10:03:44] [SKIPPED] pf_loopback_nop
[10:03:44] [SKIPPED] pf_loopback_echo
[10:03:44] [SKIPPED] pf_loopback_fail
[10:03:44] [SKIPPED] pf_loopback_busy
[10:03:44] [SKIPPED] pf_loopback_retry
[10:03:44] ==================== [PASSED] pf_relay =====================
[10:03:44] ================== vf_relay (3 subtests) ===================
[10:03:44] [PASSED] vf_rejects_guc2vf_too_short
[10:03:44] [PASSED] vf_rejects_guc2vf_too_long
[10:03:44] [PASSED] vf_rejects_guc2vf_no_payload
[10:03:44] ==================== [PASSED] vf_relay =====================
[10:03:44] ===================== lmtt (1 subtest) =====================
[10:03:44] ======================== test_ops =========================
[10:03:44] [PASSED] 2-level
[10:03:44] [PASSED] multi-level
[10:03:44] ==================== [PASSED] test_ops =====================
[10:03:44] ====================== [PASSED] lmtt =======================
[10:03:44] ================= pf_service (11 subtests) =================
[10:03:44] [PASSED] pf_negotiate_any
[10:03:44] [PASSED] pf_negotiate_base_match
[10:03:44] [PASSED] pf_negotiate_base_newer
[10:03:44] [PASSED] pf_negotiate_base_next
[10:03:44] [SKIPPED] pf_negotiate_base_older
[10:03:44] [PASSED] pf_negotiate_base_prev
[10:03:44] [PASSED] pf_negotiate_latest_match
[10:03:44] [PASSED] pf_negotiate_latest_newer
[10:03:44] [PASSED] pf_negotiate_latest_next
[10:03:44] [SKIPPED] pf_negotiate_latest_older
[10:03:44] [SKIPPED] pf_negotiate_latest_prev
[10:03:44] =================== [PASSED] pf_service ====================
[10:03:44] ================= xe_guc_g2g (2 subtests) ==================
[10:03:44] ============== xe_live_guc_g2g_kunit_default ==============
[10:03:44] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[10:03:44] ============== xe_live_guc_g2g_kunit_allmem ===============
[10:03:44] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[10:03:44] =================== [SKIPPED] xe_guc_g2g ===================
[10:03:44] =================== xe_mocs (2 subtests) ===================
[10:03:44] ================ xe_live_mocs_kernel_kunit ================
[10:03:44] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[10:03:44] ================ xe_live_mocs_reset_kunit =================
[10:03:44] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[10:03:44] ==================== [SKIPPED] xe_mocs =====================
[10:03:44] ================= xe_migrate (2 subtests) ==================
[10:03:44] ================= xe_migrate_sanity_kunit =================
[10:03:44] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[10:03:44] ================== xe_validate_ccs_kunit ==================
[10:03:44] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[10:03:44] =================== [SKIPPED] xe_migrate ===================
[10:03:44] ================== xe_dma_buf (1 subtest) ==================
[10:03:44] ==================== xe_dma_buf_kunit =====================
[10:03:44] ================ [SKIPPED] xe_dma_buf_kunit ================
[10:03:44] =================== [SKIPPED] xe_dma_buf ===================
[10:03:44] ================= xe_bo_shrink (1 subtest) =================
[10:03:44] =================== xe_bo_shrink_kunit ====================
[10:03:44] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[10:03:44] ================== [SKIPPED] xe_bo_shrink ==================
[10:03:44] ==================== xe_bo (2 subtests) ====================
[10:03:44] ================== xe_ccs_migrate_kunit ===================
[10:03:44] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[10:03:44] ==================== xe_bo_evict_kunit ====================
[10:03:44] =============== [SKIPPED] xe_bo_evict_kunit ================
[10:03:44] ===================== [SKIPPED] xe_bo ======================
[10:03:44] ==================== args (11 subtests) ====================
[10:03:44] [PASSED] count_args_test
[10:03:44] [PASSED] call_args_example
[10:03:44] [PASSED] call_args_test
[10:03:44] [PASSED] drop_first_arg_example
[10:03:44] [PASSED] drop_first_arg_test
[10:03:44] [PASSED] first_arg_example
[10:03:44] [PASSED] first_arg_test
[10:03:44] [PASSED] last_arg_example
[10:03:44] [PASSED] last_arg_test
[10:03:44] [PASSED] pick_arg_example
[10:03:44] [PASSED] sep_comma_example
[10:03:44] ====================== [PASSED] args =======================
[10:03:44] =================== xe_pci (3 subtests) ====================
[10:03:44] ==================== check_graphics_ip ====================
[10:03:44] [PASSED] 12.00 Xe_LP
[10:03:44] [PASSED] 12.10 Xe_LP+
[10:03:44] [PASSED] 12.55 Xe_HPG
[10:03:44] [PASSED] 12.60 Xe_HPC
[10:03:44] [PASSED] 12.70 Xe_LPG
[10:03:44] [PASSED] 12.71 Xe_LPG
[10:03:44] [PASSED] 12.74 Xe_LPG+
[10:03:44] [PASSED] 20.01 Xe2_HPG
[10:03:44] [PASSED] 20.02 Xe2_HPG
[10:03:44] [PASSED] 20.04 Xe2_LPG
[10:03:44] [PASSED] 30.00 Xe3_LPG
[10:03:44] [PASSED] 30.01 Xe3_LPG
[10:03:44] [PASSED] 30.03 Xe3_LPG
[10:03:44] [PASSED] 30.04 Xe3_LPG
[10:03:44] [PASSED] 30.05 Xe3_LPG
[10:03:44] [PASSED] 35.11 Xe3p_XPC
[10:03:44] ================ [PASSED] check_graphics_ip ================
[10:03:44] ===================== check_media_ip ======================
[10:03:44] [PASSED] 12.00 Xe_M
[10:03:44] [PASSED] 12.55 Xe_HPM
[10:03:44] [PASSED] 13.00 Xe_LPM+
[10:03:44] [PASSED] 13.01 Xe2_HPM
[10:03:44] [PASSED] 20.00 Xe2_LPM
[10:03:44] [PASSED] 30.00 Xe3_LPM
[10:03:44] [PASSED] 30.02 Xe3_LPM
[10:03:44] [PASSED] 35.00 Xe3p_LPM
[10:03:44] [PASSED] 35.03 Xe3p_HPM
[10:03:44] ================= [PASSED] check_media_ip ==================
[10:03:44] =================== check_platform_desc ===================
[10:03:44] [PASSED] 0x9A60 (TIGERLAKE)
[10:03:44] [PASSED] 0x9A68 (TIGERLAKE)
[10:03:44] [PASSED] 0x9A70 (TIGERLAKE)
[10:03:44] [PASSED] 0x9A40 (TIGERLAKE)
[10:03:44] [PASSED] 0x9A49 (TIGERLAKE)
[10:03:44] [PASSED] 0x9A59 (TIGERLAKE)
[10:03:44] [PASSED] 0x9A78 (TIGERLAKE)
[10:03:44] [PASSED] 0x9AC0 (TIGERLAKE)
[10:03:44] [PASSED] 0x9AC9 (TIGERLAKE)
[10:03:44] [PASSED] 0x9AD9 (TIGERLAKE)
[10:03:44] [PASSED] 0x9AF8 (TIGERLAKE)
[10:03:44] [PASSED] 0x4C80 (ROCKETLAKE)
[10:03:44] [PASSED] 0x4C8A (ROCKETLAKE)
[10:03:44] [PASSED] 0x4C8B (ROCKETLAKE)
[10:03:44] [PASSED] 0x4C8C (ROCKETLAKE)
[10:03:44] [PASSED] 0x4C90 (ROCKETLAKE)
[10:03:44] [PASSED] 0x4C9A (ROCKETLAKE)
[10:03:44] [PASSED] 0x4680 (ALDERLAKE_S)
[10:03:44] [PASSED] 0x4682 (ALDERLAKE_S)
[10:03:44] [PASSED] 0x4688 (ALDERLAKE_S)
[10:03:44] [PASSED] 0x468A (ALDERLAKE_S)
[10:03:44] [PASSED] 0x468B (ALDERLAKE_S)
[10:03:44] [PASSED] 0x4690 (ALDERLAKE_S)
[10:03:44] [PASSED] 0x4692 (ALDERLAKE_S)
[10:03:44] [PASSED] 0x4693 (ALDERLAKE_S)
[10:03:44] [PASSED] 0x46A0 (ALDERLAKE_P)
[10:03:44] [PASSED] 0x46A1 (ALDERLAKE_P)
[10:03:44] [PASSED] 0x46A2 (ALDERLAKE_P)
[10:03:44] [PASSED] 0x46A3 (ALDERLAKE_P)
[10:03:44] [PASSED] 0x46A6 (ALDERLAKE_P)
[10:03:44] [PASSED] 0x46A8 (ALDERLAKE_P)
[10:03:44] [PASSED] 0x46AA (ALDERLAKE_P)
[10:03:44] [PASSED] 0x462A (ALDERLAKE_P)
[10:03:44] [PASSED] 0x4626 (ALDERLAKE_P)
[10:03:44] [PASSED] 0x4628 (ALDERLAKE_P)
[10:03:44] [PASSED] 0x46B0 (ALDERLAKE_P)
[10:03:44] [PASSED] 0x46B1 (ALDERLAKE_P)
[10:03:44] [PASSED] 0x46B2 (ALDERLAKE_P)
[10:03:44] [PASSED] 0x46B3 (ALDERLAKE_P)
[10:03:44] [PASSED] 0x46C0 (ALDERLAKE_P)
[10:03:44] [PASSED] 0x46C1 (ALDERLAKE_P)
[10:03:44] [PASSED] 0x46C2 (ALDERLAKE_P)
[10:03:44] [PASSED] 0x46C3 (ALDERLAKE_P)
[10:03:44] [PASSED] 0x46D0 (ALDERLAKE_N)
[10:03:44] [PASSED] 0x46D1 (ALDERLAKE_N)
[10:03:44] [PASSED] 0x46D2 (ALDERLAKE_N)
[10:03:44] [PASSED] 0x46D3 (ALDERLAKE_N)
[10:03:44] [PASSED] 0x46D4 (ALDERLAKE_N)
[10:03:44] [PASSED] 0xA721 (ALDERLAKE_P)
[10:03:44] [PASSED] 0xA7A1 (ALDERLAKE_P)
[10:03:44] [PASSED] 0xA7A9 (ALDERLAKE_P)
[10:03:44] [PASSED] 0xA7AC (ALDERLAKE_P)
[10:03:44] [PASSED] 0xA7AD (ALDERLAKE_P)
[10:03:44] [PASSED] 0xA720 (ALDERLAKE_P)
[10:03:44] [PASSED] 0xA7A0 (ALDERLAKE_P)
[10:03:44] [PASSED] 0xA7A8 (ALDERLAKE_P)
[10:03:44] [PASSED] 0xA7AA (ALDERLAKE_P)
[10:03:44] [PASSED] 0xA7AB (ALDERLAKE_P)
[10:03:44] [PASSED] 0xA780 (ALDERLAKE_S)
[10:03:44] [PASSED] 0xA781 (ALDERLAKE_S)
[10:03:44] [PASSED] 0xA782 (ALDERLAKE_S)
[10:03:44] [PASSED] 0xA783 (ALDERLAKE_S)
[10:03:44] [PASSED] 0xA788 (ALDERLAKE_S)
[10:03:44] [PASSED] 0xA789 (ALDERLAKE_S)
[10:03:44] [PASSED] 0xA78A (ALDERLAKE_S)
[10:03:44] [PASSED] 0xA78B (ALDERLAKE_S)
[10:03:44] [PASSED] 0x4905 (DG1)
[10:03:44] [PASSED] 0x4906 (DG1)
[10:03:44] [PASSED] 0x4907 (DG1)
[10:03:44] [PASSED] 0x4908 (DG1)
[10:03:44] [PASSED] 0x4909 (DG1)
[10:03:44] [PASSED] 0x56C0 (DG2)
[10:03:44] [PASSED] 0x56C2 (DG2)
[10:03:44] [PASSED] 0x56C1 (DG2)
[10:03:45] [PASSED] 0x7D51 (METEORLAKE)
[10:03:45] [PASSED] 0x7DD1 (METEORLAKE)
[10:03:45] [PASSED] 0x7D41 (METEORLAKE)
[10:03:45] [PASSED] 0x7D67 (METEORLAKE)
[10:03:45] [PASSED] 0xB640 (METEORLAKE)
[10:03:45] [PASSED] 0x56A0 (DG2)
[10:03:45] [PASSED] 0x56A1 (DG2)
[10:03:45] [PASSED] 0x56A2 (DG2)
[10:03:45] [PASSED] 0x56BE (DG2)
[10:03:45] [PASSED] 0x56BF (DG2)
[10:03:45] [PASSED] 0x5690 (DG2)
[10:03:45] [PASSED] 0x5691 (DG2)
[10:03:45] [PASSED] 0x5692 (DG2)
[10:03:45] [PASSED] 0x56A5 (DG2)
[10:03:45] [PASSED] 0x56A6 (DG2)
[10:03:45] [PASSED] 0x56B0 (DG2)
[10:03:45] [PASSED] 0x56B1 (DG2)
[10:03:45] [PASSED] 0x56BA (DG2)
[10:03:45] [PASSED] 0x56BB (DG2)
[10:03:45] [PASSED] 0x56BC (DG2)
[10:03:45] [PASSED] 0x56BD (DG2)
[10:03:45] [PASSED] 0x5693 (DG2)
[10:03:45] [PASSED] 0x5694 (DG2)
[10:03:45] [PASSED] 0x5695 (DG2)
[10:03:45] [PASSED] 0x56A3 (DG2)
[10:03:45] [PASSED] 0x56A4 (DG2)
[10:03:45] [PASSED] 0x56B2 (DG2)
[10:03:45] [PASSED] 0x56B3 (DG2)
[10:03:45] [PASSED] 0x5696 (DG2)
[10:03:45] [PASSED] 0x5697 (DG2)
[10:03:45] [PASSED] 0xB69 (PVC)
[10:03:45] [PASSED] 0xB6E (PVC)
[10:03:45] [PASSED] 0xBD4 (PVC)
[10:03:45] [PASSED] 0xBD5 (PVC)
[10:03:45] [PASSED] 0xBD6 (PVC)
[10:03:45] [PASSED] 0xBD7 (PVC)
[10:03:45] [PASSED] 0xBD8 (PVC)
[10:03:45] [PASSED] 0xBD9 (PVC)
[10:03:45] [PASSED] 0xBDA (PVC)
[10:03:45] [PASSED] 0xBDB (PVC)
[10:03:45] [PASSED] 0xBE0 (PVC)
[10:03:45] [PASSED] 0xBE1 (PVC)
[10:03:45] [PASSED] 0xBE5 (PVC)
[10:03:45] [PASSED] 0x7D40 (METEORLAKE)
[10:03:45] [PASSED] 0x7D45 (METEORLAKE)
[10:03:45] [PASSED] 0x7D55 (METEORLAKE)
[10:03:45] [PASSED] 0x7D60 (METEORLAKE)
[10:03:45] [PASSED] 0x7DD5 (METEORLAKE)
[10:03:45] [PASSED] 0x6420 (LUNARLAKE)
[10:03:45] [PASSED] 0x64A0 (LUNARLAKE)
[10:03:45] [PASSED] 0x64B0 (LUNARLAKE)
[10:03:45] [PASSED] 0xE202 (BATTLEMAGE)
[10:03:45] [PASSED] 0xE209 (BATTLEMAGE)
[10:03:45] [PASSED] 0xE20B (BATTLEMAGE)
[10:03:45] [PASSED] 0xE20C (BATTLEMAGE)
[10:03:45] [PASSED] 0xE20D (BATTLEMAGE)
[10:03:45] [PASSED] 0xE210 (BATTLEMAGE)
[10:03:45] [PASSED] 0xE211 (BATTLEMAGE)
[10:03:45] [PASSED] 0xE212 (BATTLEMAGE)
[10:03:45] [PASSED] 0xE216 (BATTLEMAGE)
[10:03:45] [PASSED] 0xE220 (BATTLEMAGE)
[10:03:45] [PASSED] 0xE221 (BATTLEMAGE)
[10:03:45] [PASSED] 0xE222 (BATTLEMAGE)
[10:03:45] [PASSED] 0xE223 (BATTLEMAGE)
[10:03:45] [PASSED] 0xB080 (PANTHERLAKE)
[10:03:45] [PASSED] 0xB081 (PANTHERLAKE)
[10:03:45] [PASSED] 0xB082 (PANTHERLAKE)
[10:03:45] [PASSED] 0xB083 (PANTHERLAKE)
[10:03:45] [PASSED] 0xB084 (PANTHERLAKE)
[10:03:45] [PASSED] 0xB085 (PANTHERLAKE)
[10:03:45] [PASSED] 0xB086 (PANTHERLAKE)
[10:03:45] [PASSED] 0xB087 (PANTHERLAKE)
[10:03:45] [PASSED] 0xB08F (PANTHERLAKE)
[10:03:45] [PASSED] 0xB090 (PANTHERLAKE)
[10:03:45] [PASSED] 0xB0A0 (PANTHERLAKE)
[10:03:45] [PASSED] 0xB0B0 (PANTHERLAKE)
[10:03:45] [PASSED] 0xFD80 (PANTHERLAKE)
[10:03:45] [PASSED] 0xFD81 (PANTHERLAKE)
[10:03:45] [PASSED] 0xD740 (NOVALAKE_S)
[10:03:45] [PASSED] 0xD741 (NOVALAKE_S)
[10:03:45] [PASSED] 0xD742 (NOVALAKE_S)
[10:03:45] [PASSED] 0xD743 (NOVALAKE_S)
[10:03:45] [PASSED] 0xD744 (NOVALAKE_S)
[10:03:45] [PASSED] 0xD745 (NOVALAKE_S)
[10:03:45] [PASSED] 0x674C (CRESCENTISLAND)
[10:03:45] =============== [PASSED] check_platform_desc ===============
[10:03:45] ===================== [PASSED] xe_pci ======================
[10:03:45] =================== xe_rtp (2 subtests) ====================
[10:03:45] =============== xe_rtp_process_to_sr_tests ================
[10:03:45] [PASSED] coalesce-same-reg
[10:03:45] [PASSED] no-match-no-add
[10:03:45] [PASSED] match-or
[10:03:45] [PASSED] match-or-xfail
[10:03:45] [PASSED] no-match-no-add-multiple-rules
[10:03:45] [PASSED] two-regs-two-entries
[10:03:45] [PASSED] clr-one-set-other
[10:03:45] [PASSED] set-field
[10:03:45] [PASSED] conflict-duplicate
[10:03:45] [PASSED] conflict-not-disjoint
[10:03:45] [PASSED] conflict-reg-type
[10:03:45] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[10:03:45] ================== xe_rtp_process_tests ===================
[10:03:45] [PASSED] active1
[10:03:45] [PASSED] active2
[10:03:45] [PASSED] active-inactive
[10:03:45] [PASSED] inactive-active
[10:03:45] [PASSED] inactive-1st_or_active-inactive
[10:03:45] [PASSED] inactive-2nd_or_active-inactive
[10:03:45] [PASSED] inactive-last_or_active-inactive
stty: 'standard input': Inappropriate ioctl for device
[10:03:45] [PASSED] inactive-no_or_active-inactive
[10:03:45] ============== [PASSED] xe_rtp_process_tests ===============
[10:03:45] ===================== [PASSED] xe_rtp ======================
[10:03:45] ==================== xe_wa (1 subtest) =====================
[10:03:45] ======================== xe_wa_gt =========================
[10:03:45] [PASSED] TIGERLAKE B0
[10:03:45] [PASSED] DG1 A0
[10:03:45] [PASSED] DG1 B0
[10:03:45] [PASSED] ALDERLAKE_S A0
[10:03:45] [PASSED] ALDERLAKE_S B0
[10:03:45] [PASSED] ALDERLAKE_S C0
[10:03:45] [PASSED] ALDERLAKE_S D0
[10:03:45] [PASSED] ALDERLAKE_P A0
[10:03:45] [PASSED] ALDERLAKE_P B0
[10:03:45] [PASSED] ALDERLAKE_P C0
[10:03:45] [PASSED] ALDERLAKE_S RPLS D0
[10:03:45] [PASSED] ALDERLAKE_P RPLU E0
[10:03:45] [PASSED] DG2 G10 C0
[10:03:45] [PASSED] DG2 G11 B1
[10:03:45] [PASSED] DG2 G12 A1
[10:03:45] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[10:03:45] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[10:03:45] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[10:03:45] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[10:03:45] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[10:03:45] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[10:03:45] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[10:03:45] ==================== [PASSED] xe_wa_gt =====================
[10:03:45] ====================== [PASSED] xe_wa ======================
[10:03:45] ============================================================
[10:03:45] Testing complete. Ran 318 tests: passed: 300, skipped: 18
[10:03:45] Elapsed time: 35.506s total, 4.210s configuring, 30.930s building, 0.331s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[10:03:45] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:03:46] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[10:04:12] Starting KUnit Kernel (1/1)...
[10:04:12] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:04:12] ============ drm_test_pick_cmdline (2 subtests) ============
[10:04:12] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[10:04:12] =============== drm_test_pick_cmdline_named ===============
[10:04:12] [PASSED] NTSC
[10:04:12] [PASSED] NTSC-J
[10:04:12] [PASSED] PAL
[10:04:12] [PASSED] PAL-M
[10:04:12] =========== [PASSED] drm_test_pick_cmdline_named ===========
[10:04:12] ============== [PASSED] drm_test_pick_cmdline ==============
[10:04:12] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[10:04:12] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[10:04:12] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[10:04:12] =========== drm_validate_clone_mode (2 subtests) ===========
[10:04:12] ============== drm_test_check_in_clone_mode ===============
[10:04:12] [PASSED] in_clone_mode
[10:04:12] [PASSED] not_in_clone_mode
[10:04:12] ========== [PASSED] drm_test_check_in_clone_mode ===========
[10:04:12] =============== drm_test_check_valid_clones ===============
[10:04:12] [PASSED] not_in_clone_mode
[10:04:12] [PASSED] valid_clone
[10:04:12] [PASSED] invalid_clone
[10:04:12] =========== [PASSED] drm_test_check_valid_clones ===========
[10:04:12] ============= [PASSED] drm_validate_clone_mode =============
[10:04:12] ============= drm_validate_modeset (1 subtest) =============
[10:04:12] [PASSED] drm_test_check_connector_changed_modeset
[10:04:12] ============== [PASSED] drm_validate_modeset ===============
[10:04:12] ====== drm_test_bridge_get_current_state (2 subtests) ======
[10:04:12] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[10:04:12] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[10:04:12] ======== [PASSED] drm_test_bridge_get_current_state ========
[10:04:12] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[10:04:12] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[10:04:12] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[10:04:12] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[10:04:12] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[10:04:12] ============== drm_bridge_alloc (2 subtests) ===============
[10:04:12] [PASSED] drm_test_drm_bridge_alloc_basic
[10:04:12] [PASSED] drm_test_drm_bridge_alloc_get_put
[10:04:12] ================ [PASSED] drm_bridge_alloc =================
[10:04:12] ================== drm_buddy (8 subtests) ==================
[10:04:12] [PASSED] drm_test_buddy_alloc_limit
[10:04:12] [PASSED] drm_test_buddy_alloc_optimistic
[10:04:12] [PASSED] drm_test_buddy_alloc_pessimistic
[10:04:12] [PASSED] drm_test_buddy_alloc_pathological
[10:04:12] [PASSED] drm_test_buddy_alloc_contiguous
[10:04:12] [PASSED] drm_test_buddy_alloc_clear
[10:04:12] [PASSED] drm_test_buddy_alloc_range_bias
[10:04:12] [PASSED] drm_test_buddy_fragmentation_performance
[10:04:12] ==================== [PASSED] drm_buddy ====================
[10:04:12] ============= drm_cmdline_parser (40 subtests) =============
[10:04:12] [PASSED] drm_test_cmdline_force_d_only
[10:04:12] [PASSED] drm_test_cmdline_force_D_only_dvi
[10:04:12] [PASSED] drm_test_cmdline_force_D_only_hdmi
[10:04:12] [PASSED] drm_test_cmdline_force_D_only_not_digital
[10:04:12] [PASSED] drm_test_cmdline_force_e_only
[10:04:12] [PASSED] drm_test_cmdline_res
[10:04:12] [PASSED] drm_test_cmdline_res_vesa
[10:04:12] [PASSED] drm_test_cmdline_res_vesa_rblank
[10:04:12] [PASSED] drm_test_cmdline_res_rblank
[10:04:12] [PASSED] drm_test_cmdline_res_bpp
[10:04:12] [PASSED] drm_test_cmdline_res_refresh
[10:04:12] [PASSED] drm_test_cmdline_res_bpp_refresh
[10:04:12] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[10:04:12] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[10:04:12] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[10:04:12] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[10:04:12] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[10:04:12] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[10:04:12] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[10:04:12] [PASSED] drm_test_cmdline_res_margins_force_on
[10:04:12] [PASSED] drm_test_cmdline_res_vesa_margins
[10:04:12] [PASSED] drm_test_cmdline_name
[10:04:12] [PASSED] drm_test_cmdline_name_bpp
[10:04:12] [PASSED] drm_test_cmdline_name_option
[10:04:12] [PASSED] drm_test_cmdline_name_bpp_option
[10:04:12] [PASSED] drm_test_cmdline_rotate_0
[10:04:12] [PASSED] drm_test_cmdline_rotate_90
[10:04:12] [PASSED] drm_test_cmdline_rotate_180
[10:04:12] [PASSED] drm_test_cmdline_rotate_270
[10:04:12] [PASSED] drm_test_cmdline_hmirror
[10:04:12] [PASSED] drm_test_cmdline_vmirror
[10:04:12] [PASSED] drm_test_cmdline_margin_options
[10:04:12] [PASSED] drm_test_cmdline_multiple_options
[10:04:12] [PASSED] drm_test_cmdline_bpp_extra_and_option
[10:04:12] [PASSED] drm_test_cmdline_extra_and_option
[10:04:12] [PASSED] drm_test_cmdline_freestanding_options
[10:04:12] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[10:04:12] [PASSED] drm_test_cmdline_panel_orientation
[10:04:12] ================ drm_test_cmdline_invalid =================
[10:04:12] [PASSED] margin_only
[10:04:12] [PASSED] interlace_only
[10:04:12] [PASSED] res_missing_x
[10:04:12] [PASSED] res_missing_y
[10:04:12] [PASSED] res_bad_y
[10:04:12] [PASSED] res_missing_y_bpp
[10:04:12] [PASSED] res_bad_bpp
[10:04:12] [PASSED] res_bad_refresh
[10:04:12] [PASSED] res_bpp_refresh_force_on_off
[10:04:12] [PASSED] res_invalid_mode
[10:04:12] [PASSED] res_bpp_wrong_place_mode
[10:04:12] [PASSED] name_bpp_refresh
[10:04:12] [PASSED] name_refresh
[10:04:12] [PASSED] name_refresh_wrong_mode
[10:04:12] [PASSED] name_refresh_invalid_mode
[10:04:12] [PASSED] rotate_multiple
[10:04:12] [PASSED] rotate_invalid_val
[10:04:12] [PASSED] rotate_truncated
[10:04:12] [PASSED] invalid_option
[10:04:12] [PASSED] invalid_tv_option
[10:04:12] [PASSED] truncated_tv_option
[10:04:12] ============ [PASSED] drm_test_cmdline_invalid =============
[10:04:12] =============== drm_test_cmdline_tv_options ===============
[10:04:12] [PASSED] NTSC
[10:04:12] [PASSED] NTSC_443
[10:04:12] [PASSED] NTSC_J
[10:04:12] [PASSED] PAL
[10:04:12] [PASSED] PAL_M
[10:04:12] [PASSED] PAL_N
[10:04:12] [PASSED] SECAM
[10:04:12] [PASSED] MONO_525
[10:04:12] [PASSED] MONO_625
[10:04:12] =========== [PASSED] drm_test_cmdline_tv_options ===========
[10:04:12] =============== [PASSED] drm_cmdline_parser ================
[10:04:12] ========== drmm_connector_hdmi_init (20 subtests) ==========
[10:04:12] [PASSED] drm_test_connector_hdmi_init_valid
[10:04:12] [PASSED] drm_test_connector_hdmi_init_bpc_8
[10:04:12] [PASSED] drm_test_connector_hdmi_init_bpc_10
[10:04:12] [PASSED] drm_test_connector_hdmi_init_bpc_12
[10:04:12] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[10:04:12] [PASSED] drm_test_connector_hdmi_init_bpc_null
[10:04:12] [PASSED] drm_test_connector_hdmi_init_formats_empty
[10:04:12] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[10:04:12] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[10:04:12] [PASSED] supported_formats=0x9 yuv420_allowed=1
[10:04:12] [PASSED] supported_formats=0x9 yuv420_allowed=0
[10:04:12] [PASSED] supported_formats=0x3 yuv420_allowed=1
[10:04:12] [PASSED] supported_formats=0x3 yuv420_allowed=0
[10:04:12] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[10:04:12] [PASSED] drm_test_connector_hdmi_init_null_ddc
[10:04:12] [PASSED] drm_test_connector_hdmi_init_null_product
[10:04:12] [PASSED] drm_test_connector_hdmi_init_null_vendor
[10:04:12] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[10:04:12] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[10:04:12] [PASSED] drm_test_connector_hdmi_init_product_valid
[10:04:12] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[10:04:12] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[10:04:12] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[10:04:12] ========= drm_test_connector_hdmi_init_type_valid =========
[10:04:12] [PASSED] HDMI-A
[10:04:12] [PASSED] HDMI-B
[10:04:12] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[10:04:12] ======== drm_test_connector_hdmi_init_type_invalid ========
[10:04:12] [PASSED] Unknown
[10:04:12] [PASSED] VGA
[10:04:12] [PASSED] DVI-I
[10:04:12] [PASSED] DVI-D
[10:04:12] [PASSED] DVI-A
[10:04:12] [PASSED] Composite
[10:04:12] [PASSED] SVIDEO
[10:04:12] [PASSED] LVDS
[10:04:12] [PASSED] Component
[10:04:12] [PASSED] DIN
[10:04:12] [PASSED] DP
[10:04:12] [PASSED] TV
[10:04:12] [PASSED] eDP
[10:04:12] [PASSED] Virtual
[10:04:12] [PASSED] DSI
[10:04:12] [PASSED] DPI
[10:04:12] [PASSED] Writeback
[10:04:12] [PASSED] SPI
[10:04:12] [PASSED] USB
[10:04:12] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[10:04:12] ============ [PASSED] drmm_connector_hdmi_init =============
[10:04:12] ============= drmm_connector_init (3 subtests) =============
[10:04:12] [PASSED] drm_test_drmm_connector_init
[10:04:12] [PASSED] drm_test_drmm_connector_init_null_ddc
[10:04:12] ========= drm_test_drmm_connector_init_type_valid =========
[10:04:12] [PASSED] Unknown
[10:04:12] [PASSED] VGA
[10:04:12] [PASSED] DVI-I
[10:04:12] [PASSED] DVI-D
[10:04:12] [PASSED] DVI-A
[10:04:12] [PASSED] Composite
[10:04:12] [PASSED] SVIDEO
[10:04:12] [PASSED] LVDS
[10:04:12] [PASSED] Component
[10:04:12] [PASSED] DIN
[10:04:12] [PASSED] DP
[10:04:12] [PASSED] HDMI-A
[10:04:12] [PASSED] HDMI-B
[10:04:12] [PASSED] TV
[10:04:12] [PASSED] eDP
[10:04:12] [PASSED] Virtual
[10:04:12] [PASSED] DSI
[10:04:12] [PASSED] DPI
[10:04:12] [PASSED] Writeback
[10:04:12] [PASSED] SPI
[10:04:12] [PASSED] USB
[10:04:12] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[10:04:12] =============== [PASSED] drmm_connector_init ===============
[10:04:12] ========= drm_connector_dynamic_init (6 subtests) ==========
[10:04:12] [PASSED] drm_test_drm_connector_dynamic_init
[10:04:12] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[10:04:12] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[10:04:12] [PASSED] drm_test_drm_connector_dynamic_init_properties
[10:04:12] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[10:04:12] [PASSED] Unknown
[10:04:12] [PASSED] VGA
[10:04:12] [PASSED] DVI-I
[10:04:12] [PASSED] DVI-D
[10:04:12] [PASSED] DVI-A
[10:04:12] [PASSED] Composite
[10:04:12] [PASSED] SVIDEO
[10:04:12] [PASSED] LVDS
[10:04:12] [PASSED] Component
[10:04:12] [PASSED] DIN
[10:04:12] [PASSED] DP
[10:04:12] [PASSED] HDMI-A
[10:04:12] [PASSED] HDMI-B
[10:04:12] [PASSED] TV
[10:04:12] [PASSED] eDP
[10:04:12] [PASSED] Virtual
[10:04:12] [PASSED] DSI
[10:04:12] [PASSED] DPI
[10:04:12] [PASSED] Writeback
[10:04:12] [PASSED] SPI
[10:04:12] [PASSED] USB
[10:04:12] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[10:04:12] ======== drm_test_drm_connector_dynamic_init_name =========
[10:04:12] [PASSED] Unknown
[10:04:12] [PASSED] VGA
[10:04:12] [PASSED] DVI-I
[10:04:12] [PASSED] DVI-D
[10:04:12] [PASSED] DVI-A
[10:04:12] [PASSED] Composite
[10:04:12] [PASSED] SVIDEO
[10:04:12] [PASSED] LVDS
[10:04:12] [PASSED] Component
[10:04:12] [PASSED] DIN
[10:04:12] [PASSED] DP
[10:04:12] [PASSED] HDMI-A
[10:04:12] [PASSED] HDMI-B
[10:04:12] [PASSED] TV
[10:04:12] [PASSED] eDP
[10:04:12] [PASSED] Virtual
[10:04:12] [PASSED] DSI
[10:04:12] [PASSED] DPI
[10:04:12] [PASSED] Writeback
[10:04:12] [PASSED] SPI
[10:04:12] [PASSED] USB
[10:04:12] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[10:04:12] =========== [PASSED] drm_connector_dynamic_init ============
[10:04:12] ==== drm_connector_dynamic_register_early (4 subtests) =====
[10:04:12] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[10:04:12] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[10:04:12] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[10:04:12] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[10:04:12] ====== [PASSED] drm_connector_dynamic_register_early =======
[10:04:12] ======= drm_connector_dynamic_register (7 subtests) ========
[10:04:12] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[10:04:12] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[10:04:12] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[10:04:12] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[10:04:12] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[10:04:12] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[10:04:12] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[10:04:12] ========= [PASSED] drm_connector_dynamic_register ==========
[10:04:12] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[10:04:12] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[10:04:12] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[10:04:12] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[10:04:12] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[10:04:12] ========== drm_test_get_tv_mode_from_name_valid ===========
[10:04:12] [PASSED] NTSC
[10:04:12] [PASSED] NTSC-443
[10:04:12] [PASSED] NTSC-J
[10:04:12] [PASSED] PAL
[10:04:12] [PASSED] PAL-M
[10:04:12] [PASSED] PAL-N
[10:04:12] [PASSED] SECAM
[10:04:12] [PASSED] Mono
[10:04:12] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[10:04:12] [PASSED] drm_test_get_tv_mode_from_name_truncated
[10:04:12] ============ [PASSED] drm_get_tv_mode_from_name ============
[10:04:12] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[10:04:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[10:04:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[10:04:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[10:04:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[10:04:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[10:04:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[10:04:12] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[10:04:12] [PASSED] VIC 96
[10:04:12] [PASSED] VIC 97
[10:04:12] [PASSED] VIC 101
[10:04:12] [PASSED] VIC 102
[10:04:12] [PASSED] VIC 106
[10:04:12] [PASSED] VIC 107
[10:04:12] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[10:04:12] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[10:04:12] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[10:04:12] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[10:04:12] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[10:04:12] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[10:04:12] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[10:04:12] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[10:04:12] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[10:04:12] [PASSED] Automatic
[10:04:12] [PASSED] Full
[10:04:12] [PASSED] Limited 16:235
[10:04:12] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[10:04:12] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[10:04:12] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[10:04:12] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[10:04:12] === drm_test_drm_hdmi_connector_get_output_format_name ====
[10:04:12] [PASSED] RGB
[10:04:12] [PASSED] YUV 4:2:0
[10:04:12] [PASSED] YUV 4:2:2
[10:04:12] [PASSED] YUV 4:4:4
[10:04:12] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[10:04:12] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[10:04:12] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[10:04:12] ============= drm_damage_helper (21 subtests) ==============
[10:04:12] [PASSED] drm_test_damage_iter_no_damage
[10:04:12] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[10:04:12] [PASSED] drm_test_damage_iter_no_damage_src_moved
[10:04:12] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[10:04:12] [PASSED] drm_test_damage_iter_no_damage_not_visible
[10:04:12] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[10:04:12] [PASSED] drm_test_damage_iter_no_damage_no_fb
[10:04:12] [PASSED] drm_test_damage_iter_simple_damage
[10:04:12] [PASSED] drm_test_damage_iter_single_damage
[10:04:12] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[10:04:12] [PASSED] drm_test_damage_iter_single_damage_outside_src
[10:04:12] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[10:04:12] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[10:04:12] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[10:04:12] [PASSED] drm_test_damage_iter_single_damage_src_moved
[10:04:12] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[10:04:12] [PASSED] drm_test_damage_iter_damage
[10:04:12] [PASSED] drm_test_damage_iter_damage_one_intersect
[10:04:12] [PASSED] drm_test_damage_iter_damage_one_outside
[10:04:12] [PASSED] drm_test_damage_iter_damage_src_moved
[10:04:12] [PASSED] drm_test_damage_iter_damage_not_visible
[10:04:12] ================ [PASSED] drm_damage_helper ================
[10:04:12] ============== drm_dp_mst_helper (3 subtests) ==============
[10:04:12] ============== drm_test_dp_mst_calc_pbn_mode ==============
[10:04:12] [PASSED] Clock 154000 BPP 30 DSC disabled
[10:04:12] [PASSED] Clock 234000 BPP 30 DSC disabled
[10:04:12] [PASSED] Clock 297000 BPP 24 DSC disabled
[10:04:12] [PASSED] Clock 332880 BPP 24 DSC enabled
[10:04:12] [PASSED] Clock 324540 BPP 24 DSC enabled
[10:04:12] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[10:04:12] ============== drm_test_dp_mst_calc_pbn_div ===============
[10:04:12] [PASSED] Link rate 2000000 lane count 4
[10:04:12] [PASSED] Link rate 2000000 lane count 2
[10:04:12] [PASSED] Link rate 2000000 lane count 1
[10:04:12] [PASSED] Link rate 1350000 lane count 4
[10:04:12] [PASSED] Link rate 1350000 lane count 2
[10:04:12] [PASSED] Link rate 1350000 lane count 1
[10:04:12] [PASSED] Link rate 1000000 lane count 4
[10:04:12] [PASSED] Link rate 1000000 lane count 2
[10:04:12] [PASSED] Link rate 1000000 lane count 1
[10:04:12] [PASSED] Link rate 810000 lane count 4
[10:04:12] [PASSED] Link rate 810000 lane count 2
[10:04:12] [PASSED] Link rate 810000 lane count 1
[10:04:12] [PASSED] Link rate 540000 lane count 4
[10:04:12] [PASSED] Link rate 540000 lane count 2
[10:04:12] [PASSED] Link rate 540000 lane count 1
[10:04:12] [PASSED] Link rate 270000 lane count 4
[10:04:12] [PASSED] Link rate 270000 lane count 2
[10:04:12] [PASSED] Link rate 270000 lane count 1
[10:04:12] [PASSED] Link rate 162000 lane count 4
[10:04:12] [PASSED] Link rate 162000 lane count 2
[10:04:12] [PASSED] Link rate 162000 lane count 1
[10:04:12] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[10:04:12] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[10:04:12] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[10:04:12] [PASSED] DP_POWER_UP_PHY with port number
[10:04:12] [PASSED] DP_POWER_DOWN_PHY with port number
[10:04:12] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[10:04:12] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[10:04:12] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[10:04:12] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[10:04:12] [PASSED] DP_QUERY_PAYLOAD with port number
[10:04:12] [PASSED] DP_QUERY_PAYLOAD with VCPI
[10:04:12] [PASSED] DP_REMOTE_DPCD_READ with port number
[10:04:12] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[10:04:12] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[10:04:12] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[10:04:12] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[10:04:12] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[10:04:12] [PASSED] DP_REMOTE_I2C_READ with port number
[10:04:12] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[10:04:12] [PASSED] DP_REMOTE_I2C_READ with transactions array
[10:04:12] [PASSED] DP_REMOTE_I2C_WRITE with port number
[10:04:12] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[10:04:12] [PASSED] DP_REMOTE_I2C_WRITE with data array
[10:04:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[10:04:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[10:04:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[10:04:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[10:04:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[10:04:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[10:04:12] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[10:04:12] ================ [PASSED] drm_dp_mst_helper ================
[10:04:12] ================== drm_exec (7 subtests) ===================
[10:04:12] [PASSED] sanitycheck
[10:04:12] [PASSED] test_lock
[10:04:12] [PASSED] test_lock_unlock
[10:04:12] [PASSED] test_duplicates
[10:04:12] [PASSED] test_prepare
[10:04:12] [PASSED] test_prepare_array
[10:04:12] [PASSED] test_multiple_loops
[10:04:12] ==================== [PASSED] drm_exec =====================
[10:04:12] =========== drm_format_helper_test (17 subtests) ===========
[10:04:12] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[10:04:12] [PASSED] single_pixel_source_buffer
[10:04:12] [PASSED] single_pixel_clip_rectangle
[10:04:12] [PASSED] well_known_colors
[10:04:12] [PASSED] destination_pitch
[10:04:12] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[10:04:12] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[10:04:12] [PASSED] single_pixel_source_buffer
[10:04:12] [PASSED] single_pixel_clip_rectangle
[10:04:12] [PASSED] well_known_colors
[10:04:12] [PASSED] destination_pitch
[10:04:12] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[10:04:12] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[10:04:12] [PASSED] single_pixel_source_buffer
[10:04:12] [PASSED] single_pixel_clip_rectangle
[10:04:12] [PASSED] well_known_colors
[10:04:12] [PASSED] destination_pitch
[10:04:12] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[10:04:12] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[10:04:12] [PASSED] single_pixel_source_buffer
[10:04:12] [PASSED] single_pixel_clip_rectangle
[10:04:12] [PASSED] well_known_colors
[10:04:12] [PASSED] destination_pitch
[10:04:12] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[10:04:12] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[10:04:12] [PASSED] single_pixel_source_buffer
[10:04:12] [PASSED] single_pixel_clip_rectangle
[10:04:12] [PASSED] well_known_colors
[10:04:12] [PASSED] destination_pitch
[10:04:12] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[10:04:12] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[10:04:12] [PASSED] single_pixel_source_buffer
[10:04:12] [PASSED] single_pixel_clip_rectangle
[10:04:12] [PASSED] well_known_colors
[10:04:12] [PASSED] destination_pitch
[10:04:12] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[10:04:12] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[10:04:12] [PASSED] single_pixel_source_buffer
[10:04:12] [PASSED] single_pixel_clip_rectangle
[10:04:12] [PASSED] well_known_colors
[10:04:12] [PASSED] destination_pitch
[10:04:12] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[10:04:12] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[10:04:12] [PASSED] single_pixel_source_buffer
[10:04:12] [PASSED] single_pixel_clip_rectangle
[10:04:12] [PASSED] well_known_colors
[10:04:12] [PASSED] destination_pitch
[10:04:12] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[10:04:12] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[10:04:12] [PASSED] single_pixel_source_buffer
[10:04:12] [PASSED] single_pixel_clip_rectangle
[10:04:12] [PASSED] well_known_colors
[10:04:12] [PASSED] destination_pitch
[10:04:12] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[10:04:12] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[10:04:12] [PASSED] single_pixel_source_buffer
[10:04:12] [PASSED] single_pixel_clip_rectangle
[10:04:12] [PASSED] well_known_colors
[10:04:12] [PASSED] destination_pitch
[10:04:12] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[10:04:12] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[10:04:12] [PASSED] single_pixel_source_buffer
[10:04:12] [PASSED] single_pixel_clip_rectangle
[10:04:12] [PASSED] well_known_colors
[10:04:12] [PASSED] destination_pitch
[10:04:12] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[10:04:12] ============== drm_test_fb_xrgb8888_to_mono ===============
[10:04:12] [PASSED] single_pixel_source_buffer
[10:04:12] [PASSED] single_pixel_clip_rectangle
[10:04:12] [PASSED] well_known_colors
[10:04:12] [PASSED] destination_pitch
[10:04:12] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[10:04:12] ==================== drm_test_fb_swab =====================
[10:04:12] [PASSED] single_pixel_source_buffer
[10:04:12] [PASSED] single_pixel_clip_rectangle
[10:04:12] [PASSED] well_known_colors
[10:04:12] [PASSED] destination_pitch
[10:04:12] ================ [PASSED] drm_test_fb_swab =================
[10:04:12] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[10:04:12] [PASSED] single_pixel_source_buffer
[10:04:12] [PASSED] single_pixel_clip_rectangle
[10:04:12] [PASSED] well_known_colors
[10:04:12] [PASSED] destination_pitch
[10:04:12] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[10:04:12] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[10:04:12] [PASSED] single_pixel_source_buffer
[10:04:12] [PASSED] single_pixel_clip_rectangle
[10:04:12] [PASSED] well_known_colors
[10:04:12] [PASSED] destination_pitch
[10:04:12] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[10:04:12] ================= drm_test_fb_clip_offset =================
[10:04:12] [PASSED] pass through
[10:04:12] [PASSED] horizontal offset
[10:04:12] [PASSED] vertical offset
[10:04:12] [PASSED] horizontal and vertical offset
[10:04:12] [PASSED] horizontal offset (custom pitch)
[10:04:12] [PASSED] vertical offset (custom pitch)
[10:04:12] [PASSED] horizontal and vertical offset (custom pitch)
[10:04:12] ============= [PASSED] drm_test_fb_clip_offset =============
[10:04:12] =================== drm_test_fb_memcpy ====================
[10:04:12] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[10:04:12] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[10:04:12] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[10:04:12] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[10:04:12] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[10:04:12] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[10:04:12] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[10:04:12] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[10:04:12] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[10:04:12] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[10:04:12] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[10:04:12] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[10:04:12] =============== [PASSED] drm_test_fb_memcpy ================
[10:04:12] ============= [PASSED] drm_format_helper_test ==============
[10:04:12] ================= drm_format (18 subtests) =================
[10:04:12] [PASSED] drm_test_format_block_width_invalid
[10:04:12] [PASSED] drm_test_format_block_width_one_plane
[10:04:12] [PASSED] drm_test_format_block_width_two_plane
[10:04:12] [PASSED] drm_test_format_block_width_three_plane
[10:04:12] [PASSED] drm_test_format_block_width_tiled
[10:04:12] [PASSED] drm_test_format_block_height_invalid
[10:04:12] [PASSED] drm_test_format_block_height_one_plane
[10:04:12] [PASSED] drm_test_format_block_height_two_plane
[10:04:12] [PASSED] drm_test_format_block_height_three_plane
[10:04:12] [PASSED] drm_test_format_block_height_tiled
[10:04:12] [PASSED] drm_test_format_min_pitch_invalid
[10:04:12] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[10:04:12] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[10:04:12] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[10:04:12] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[10:04:12] [PASSED] drm_test_format_min_pitch_two_plane
[10:04:12] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[10:04:12] [PASSED] drm_test_format_min_pitch_tiled
[10:04:12] =================== [PASSED] drm_format ====================
[10:04:12] ============== drm_framebuffer (10 subtests) ===============
[10:04:12] ========== drm_test_framebuffer_check_src_coords ==========
[10:04:12] [PASSED] Success: source fits into fb
[10:04:12] [PASSED] Fail: overflowing fb with x-axis coordinate
[10:04:12] [PASSED] Fail: overflowing fb with y-axis coordinate
[10:04:12] [PASSED] Fail: overflowing fb with source width
[10:04:12] [PASSED] Fail: overflowing fb with source height
[10:04:12] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[10:04:12] [PASSED] drm_test_framebuffer_cleanup
[10:04:12] =============== drm_test_framebuffer_create ===============
[10:04:12] [PASSED] ABGR8888 normal sizes
[10:04:12] [PASSED] ABGR8888 max sizes
[10:04:12] [PASSED] ABGR8888 pitch greater than min required
[10:04:12] [PASSED] ABGR8888 pitch less than min required
[10:04:12] [PASSED] ABGR8888 Invalid width
[10:04:12] [PASSED] ABGR8888 Invalid buffer handle
[10:04:12] [PASSED] No pixel format
[10:04:12] [PASSED] ABGR8888 Width 0
[10:04:12] [PASSED] ABGR8888 Height 0
[10:04:12] [PASSED] ABGR8888 Out of bound height * pitch combination
[10:04:12] [PASSED] ABGR8888 Large buffer offset
[10:04:12] [PASSED] ABGR8888 Buffer offset for inexistent plane
[10:04:12] [PASSED] ABGR8888 Invalid flag
[10:04:12] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[10:04:12] [PASSED] ABGR8888 Valid buffer modifier
[10:04:12] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[10:04:12] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[10:04:12] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[10:04:12] [PASSED] NV12 Normal sizes
[10:04:12] [PASSED] NV12 Max sizes
[10:04:12] [PASSED] NV12 Invalid pitch
[10:04:12] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[10:04:12] [PASSED] NV12 different modifier per-plane
[10:04:12] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[10:04:12] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[10:04:12] [PASSED] NV12 Modifier for inexistent plane
[10:04:12] [PASSED] NV12 Handle for inexistent plane
[10:04:12] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[10:04:12] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[10:04:12] [PASSED] YVU420 Normal sizes
[10:04:12] [PASSED] YVU420 Max sizes
[10:04:12] [PASSED] YVU420 Invalid pitch
[10:04:12] [PASSED] YVU420 Different pitches
[10:04:12] [PASSED] YVU420 Different buffer offsets/pitches
[10:04:12] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[10:04:12] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[10:04:12] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[10:04:12] [PASSED] YVU420 Valid modifier
[10:04:12] [PASSED] YVU420 Different modifiers per plane
[10:04:12] [PASSED] YVU420 Modifier for inexistent plane
[10:04:12] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[10:04:12] [PASSED] X0L2 Normal sizes
[10:04:12] [PASSED] X0L2 Max sizes
[10:04:12] [PASSED] X0L2 Invalid pitch
[10:04:12] [PASSED] X0L2 Pitch greater than minimum required
[10:04:12] [PASSED] X0L2 Handle for inexistent plane
[10:04:12] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[10:04:12] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[10:04:12] [PASSED] X0L2 Valid modifier
[10:04:12] [PASSED] X0L2 Modifier for inexistent plane
[10:04:12] =========== [PASSED] drm_test_framebuffer_create ===========
[10:04:12] [PASSED] drm_test_framebuffer_free
[10:04:12] [PASSED] drm_test_framebuffer_init
[10:04:12] [PASSED] drm_test_framebuffer_init_bad_format
[10:04:12] [PASSED] drm_test_framebuffer_init_dev_mismatch
[10:04:12] [PASSED] drm_test_framebuffer_lookup
[10:04:12] [PASSED] drm_test_framebuffer_lookup_inexistent
[10:04:12] [PASSED] drm_test_framebuffer_modifiers_not_supported
[10:04:12] ================= [PASSED] drm_framebuffer =================
[10:04:12] ================ drm_gem_shmem (8 subtests) ================
[10:04:12] [PASSED] drm_gem_shmem_test_obj_create
[10:04:12] [PASSED] drm_gem_shmem_test_obj_create_private
[10:04:12] [PASSED] drm_gem_shmem_test_pin_pages
[10:04:12] [PASSED] drm_gem_shmem_test_vmap
[10:04:12] [PASSED] drm_gem_shmem_test_get_pages_sgt
[10:04:12] [PASSED] drm_gem_shmem_test_get_sg_table
[10:04:12] [PASSED] drm_gem_shmem_test_madvise
[10:04:12] [PASSED] drm_gem_shmem_test_purge
[10:04:12] ================== [PASSED] drm_gem_shmem ==================
[10:04:12] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[10:04:12] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[10:04:12] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[10:04:12] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[10:04:12] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[10:04:12] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[10:04:12] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[10:04:12] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[10:04:12] [PASSED] Automatic
[10:04:12] [PASSED] Full
[10:04:12] [PASSED] Limited 16:235
[10:04:12] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[10:04:12] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[10:04:12] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[10:04:12] [PASSED] drm_test_check_disable_connector
[10:04:12] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[10:04:12] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[10:04:12] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[10:04:12] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[10:04:12] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[10:04:12] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[10:04:12] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[10:04:12] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[10:04:12] [PASSED] drm_test_check_output_bpc_dvi
[10:04:12] [PASSED] drm_test_check_output_bpc_format_vic_1
[10:04:12] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[10:04:12] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[10:04:12] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[10:04:12] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[10:04:12] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[10:04:12] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[10:04:12] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[10:04:12] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[10:04:12] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[10:04:12] [PASSED] drm_test_check_broadcast_rgb_value
[10:04:12] [PASSED] drm_test_check_bpc_8_value
[10:04:12] [PASSED] drm_test_check_bpc_10_value
[10:04:12] [PASSED] drm_test_check_bpc_12_value
[10:04:12] [PASSED] drm_test_check_format_value
[10:04:12] [PASSED] drm_test_check_tmds_char_value
[10:04:12] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[10:04:12] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[10:04:12] [PASSED] drm_test_check_mode_valid
[10:04:12] [PASSED] drm_test_check_mode_valid_reject
[10:04:12] [PASSED] drm_test_check_mode_valid_reject_rate
[10:04:12] [PASSED] drm_test_check_mode_valid_reject_max_clock
[10:04:12] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[10:04:12] ================= drm_managed (2 subtests) =================
[10:04:12] [PASSED] drm_test_managed_release_action
[10:04:12] [PASSED] drm_test_managed_run_action
[10:04:12] =================== [PASSED] drm_managed ===================
[10:04:12] =================== drm_mm (6 subtests) ====================
[10:04:12] [PASSED] drm_test_mm_init
[10:04:12] [PASSED] drm_test_mm_debug
[10:04:12] [PASSED] drm_test_mm_align32
[10:04:12] [PASSED] drm_test_mm_align64
[10:04:12] [PASSED] drm_test_mm_lowest
[10:04:12] [PASSED] drm_test_mm_highest
[10:04:12] ===================== [PASSED] drm_mm ======================
[10:04:12] ============= drm_modes_analog_tv (5 subtests) =============
[10:04:12] [PASSED] drm_test_modes_analog_tv_mono_576i
[10:04:12] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[10:04:12] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[10:04:12] [PASSED] drm_test_modes_analog_tv_pal_576i
[10:04:12] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[10:04:12] =============== [PASSED] drm_modes_analog_tv ===============
[10:04:12] ============== drm_plane_helper (2 subtests) ===============
[10:04:12] =============== drm_test_check_plane_state ================
[10:04:12] [PASSED] clipping_simple
[10:04:12] [PASSED] clipping_rotate_reflect
[10:04:12] [PASSED] positioning_simple
[10:04:12] [PASSED] upscaling
[10:04:12] [PASSED] downscaling
[10:04:12] [PASSED] rounding1
[10:04:12] [PASSED] rounding2
[10:04:12] [PASSED] rounding3
[10:04:12] [PASSED] rounding4
[10:04:12] =========== [PASSED] drm_test_check_plane_state ============
[10:04:12] =========== drm_test_check_invalid_plane_state ============
[10:04:12] [PASSED] positioning_invalid
[10:04:12] [PASSED] upscaling_invalid
[10:04:12] [PASSED] downscaling_invalid
[10:04:12] ======= [PASSED] drm_test_check_invalid_plane_state ========
[10:04:12] ================ [PASSED] drm_plane_helper =================
[10:04:12] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[10:04:12] ====== drm_test_connector_helper_tv_get_modes_check =======
[10:04:12] [PASSED] None
[10:04:12] [PASSED] PAL
[10:04:12] [PASSED] NTSC
[10:04:12] [PASSED] Both, NTSC Default
[10:04:12] [PASSED] Both, PAL Default
[10:04:12] [PASSED] Both, NTSC Default, with PAL on command-line
[10:04:12] [PASSED] Both, PAL Default, with NTSC on command-line
[10:04:12] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[10:04:12] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[10:04:12] ================== drm_rect (9 subtests) ===================
[10:04:12] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[10:04:12] [PASSED] drm_test_rect_clip_scaled_not_clipped
[10:04:12] [PASSED] drm_test_rect_clip_scaled_clipped
[10:04:12] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[10:04:12] ================= drm_test_rect_intersect =================
[10:04:12] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[10:04:12] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[10:04:12] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[10:04:12] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[10:04:12] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[10:04:12] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[10:04:12] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[10:04:12] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[10:04:12] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[10:04:12] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[10:04:12] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[10:04:12] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[10:04:12] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[10:04:12] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[10:04:12] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[10:04:12] ============= [PASSED] drm_test_rect_intersect =============
[10:04:12] ================ drm_test_rect_calc_hscale ================
[10:04:12] [PASSED] normal use
[10:04:12] [PASSED] out of max range
[10:04:12] [PASSED] out of min range
[10:04:12] [PASSED] zero dst
[10:04:12] [PASSED] negative src
[10:04:12] [PASSED] negative dst
[10:04:12] ============ [PASSED] drm_test_rect_calc_hscale ============
[10:04:12] ================ drm_test_rect_calc_vscale ================
[10:04:12] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[10:04:12] [PASSED] out of max range
[10:04:12] [PASSED] out of min range
[10:04:12] [PASSED] zero dst
[10:04:12] [PASSED] negative src
[10:04:12] [PASSED] negative dst
[10:04:12] ============ [PASSED] drm_test_rect_calc_vscale ============
[10:04:12] ================== drm_test_rect_rotate ===================
[10:04:12] [PASSED] reflect-x
[10:04:12] [PASSED] reflect-y
[10:04:12] [PASSED] rotate-0
[10:04:12] [PASSED] rotate-90
[10:04:12] [PASSED] rotate-180
[10:04:12] [PASSED] rotate-270
[10:04:12] ============== [PASSED] drm_test_rect_rotate ===============
[10:04:12] ================ drm_test_rect_rotate_inv =================
[10:04:12] [PASSED] reflect-x
[10:04:12] [PASSED] reflect-y
[10:04:12] [PASSED] rotate-0
[10:04:12] [PASSED] rotate-90
[10:04:12] [PASSED] rotate-180
[10:04:12] [PASSED] rotate-270
[10:04:12] ============ [PASSED] drm_test_rect_rotate_inv =============
[10:04:12] ==================== [PASSED] drm_rect =====================
[10:04:12] ============ drm_sysfb_modeset_test (1 subtest) ============
[10:04:12] ============ drm_test_sysfb_build_fourcc_list =============
[10:04:12] [PASSED] no native formats
[10:04:12] [PASSED] XRGB8888 as native format
[10:04:12] [PASSED] remove duplicates
[10:04:12] [PASSED] convert alpha formats
[10:04:12] [PASSED] random formats
[10:04:12] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[10:04:12] ============= [PASSED] drm_sysfb_modeset_test ==============
[10:04:12] ============================================================
[10:04:12] Testing complete. Ran 622 tests: passed: 622
[10:04:12] Elapsed time: 27.564s total, 1.684s configuring, 25.408s building, 0.436s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[10:04:12] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[10:04:14] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[10:04:24] Starting KUnit Kernel (1/1)...
[10:04:24] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[10:04:24] ================= ttm_device (5 subtests) ==================
[10:04:24] [PASSED] ttm_device_init_basic
[10:04:24] [PASSED] ttm_device_init_multiple
[10:04:24] [PASSED] ttm_device_fini_basic
[10:04:24] [PASSED] ttm_device_init_no_vma_man
[10:04:24] ================== ttm_device_init_pools ==================
[10:04:24] [PASSED] No DMA allocations, no DMA32 required
[10:04:24] [PASSED] DMA allocations, DMA32 required
[10:04:24] [PASSED] No DMA allocations, DMA32 required
[10:04:24] [PASSED] DMA allocations, no DMA32 required
[10:04:24] ============== [PASSED] ttm_device_init_pools ==============
[10:04:24] =================== [PASSED] ttm_device ====================
[10:04:24] ================== ttm_pool (8 subtests) ===================
[10:04:24] ================== ttm_pool_alloc_basic ===================
[10:04:24] [PASSED] One page
[10:04:24] [PASSED] More than one page
[10:04:24] [PASSED] Above the allocation limit
[10:04:24] [PASSED] One page, with coherent DMA mappings enabled
[10:04:24] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[10:04:24] ============== [PASSED] ttm_pool_alloc_basic ===============
[10:04:24] ============== ttm_pool_alloc_basic_dma_addr ==============
[10:04:24] [PASSED] One page
[10:04:24] [PASSED] More than one page
[10:04:24] [PASSED] Above the allocation limit
[10:04:24] [PASSED] One page, with coherent DMA mappings enabled
[10:04:24] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[10:04:24] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[10:04:24] [PASSED] ttm_pool_alloc_order_caching_match
[10:04:24] [PASSED] ttm_pool_alloc_caching_mismatch
[10:04:24] [PASSED] ttm_pool_alloc_order_mismatch
[10:04:24] [PASSED] ttm_pool_free_dma_alloc
[10:04:24] [PASSED] ttm_pool_free_no_dma_alloc
[10:04:24] [PASSED] ttm_pool_fini_basic
[10:04:24] ==================== [PASSED] ttm_pool =====================
[10:04:24] ================ ttm_resource (8 subtests) =================
[10:04:24] ================= ttm_resource_init_basic =================
[10:04:24] [PASSED] Init resource in TTM_PL_SYSTEM
[10:04:24] [PASSED] Init resource in TTM_PL_VRAM
[10:04:24] [PASSED] Init resource in a private placement
[10:04:24] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[10:04:24] ============= [PASSED] ttm_resource_init_basic =============
[10:04:24] [PASSED] ttm_resource_init_pinned
[10:04:24] [PASSED] ttm_resource_fini_basic
[10:04:24] [PASSED] ttm_resource_manager_init_basic
[10:04:24] [PASSED] ttm_resource_manager_usage_basic
[10:04:24] [PASSED] ttm_resource_manager_set_used_basic
[10:04:24] [PASSED] ttm_sys_man_alloc_basic
[10:04:24] [PASSED] ttm_sys_man_free_basic
[10:04:24] ================== [PASSED] ttm_resource ===================
[10:04:24] =================== ttm_tt (15 subtests) ===================
[10:04:24] ==================== ttm_tt_init_basic ====================
[10:04:24] [PASSED] Page-aligned size
[10:04:24] [PASSED] Extra pages requested
[10:04:24] ================ [PASSED] ttm_tt_init_basic ================
[10:04:24] [PASSED] ttm_tt_init_misaligned
[10:04:24] [PASSED] ttm_tt_fini_basic
[10:04:24] [PASSED] ttm_tt_fini_sg
[10:04:24] [PASSED] ttm_tt_fini_shmem
[10:04:24] [PASSED] ttm_tt_create_basic
[10:04:24] [PASSED] ttm_tt_create_invalid_bo_type
[10:04:24] [PASSED] ttm_tt_create_ttm_exists
[10:04:24] [PASSED] ttm_tt_create_failed
[10:04:24] [PASSED] ttm_tt_destroy_basic
[10:04:24] [PASSED] ttm_tt_populate_null_ttm
[10:04:24] [PASSED] ttm_tt_populate_populated_ttm
[10:04:24] [PASSED] ttm_tt_unpopulate_basic
[10:04:24] [PASSED] ttm_tt_unpopulate_empty_ttm
[10:04:24] [PASSED] ttm_tt_swapin_basic
[10:04:24] ===================== [PASSED] ttm_tt ======================
[10:04:24] =================== ttm_bo (14 subtests) ===================
[10:04:24] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[10:04:24] [PASSED] Cannot be interrupted and sleeps
[10:04:24] [PASSED] Cannot be interrupted, locks straight away
[10:04:24] [PASSED] Can be interrupted, sleeps
[10:04:24] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[10:04:24] [PASSED] ttm_bo_reserve_locked_no_sleep
[10:04:24] [PASSED] ttm_bo_reserve_no_wait_ticket
[10:04:24] [PASSED] ttm_bo_reserve_double_resv
[10:04:24] [PASSED] ttm_bo_reserve_interrupted
[10:04:24] [PASSED] ttm_bo_reserve_deadlock
[10:04:24] [PASSED] ttm_bo_unreserve_basic
[10:04:24] [PASSED] ttm_bo_unreserve_pinned
[10:04:24] [PASSED] ttm_bo_unreserve_bulk
[10:04:24] [PASSED] ttm_bo_fini_basic
[10:04:24] [PASSED] ttm_bo_fini_shared_resv
[10:04:24] [PASSED] ttm_bo_pin_basic
[10:04:24] [PASSED] ttm_bo_pin_unpin_resource
[10:04:24] [PASSED] ttm_bo_multiple_pin_one_unpin
[10:04:24] ===================== [PASSED] ttm_bo ======================
[10:04:24] ============== ttm_bo_validate (21 subtests) ===============
[10:04:24] ============== ttm_bo_init_reserved_sys_man ===============
[10:04:24] [PASSED] Buffer object for userspace
[10:04:24] [PASSED] Kernel buffer object
[10:04:24] [PASSED] Shared buffer object
[10:04:24] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[10:04:24] ============== ttm_bo_init_reserved_mock_man ==============
[10:04:24] [PASSED] Buffer object for userspace
[10:04:24] [PASSED] Kernel buffer object
[10:04:24] [PASSED] Shared buffer object
[10:04:24] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[10:04:24] [PASSED] ttm_bo_init_reserved_resv
[10:04:24] ================== ttm_bo_validate_basic ==================
[10:04:24] [PASSED] Buffer object for userspace
[10:04:24] [PASSED] Kernel buffer object
[10:04:24] [PASSED] Shared buffer object
[10:04:24] ============== [PASSED] ttm_bo_validate_basic ==============
[10:04:24] [PASSED] ttm_bo_validate_invalid_placement
[10:04:24] ============= ttm_bo_validate_same_placement ==============
[10:04:24] [PASSED] System manager
[10:04:24] [PASSED] VRAM manager
[10:04:24] ========= [PASSED] ttm_bo_validate_same_placement ==========
[10:04:24] [PASSED] ttm_bo_validate_failed_alloc
[10:04:24] [PASSED] ttm_bo_validate_pinned
[10:04:24] [PASSED] ttm_bo_validate_busy_placement
[10:04:24] ================ ttm_bo_validate_multihop =================
[10:04:24] [PASSED] Buffer object for userspace
[10:04:24] [PASSED] Kernel buffer object
[10:04:24] [PASSED] Shared buffer object
[10:04:24] ============ [PASSED] ttm_bo_validate_multihop =============
[10:04:24] ========== ttm_bo_validate_no_placement_signaled ==========
[10:04:24] [PASSED] Buffer object in system domain, no page vector
[10:04:24] [PASSED] Buffer object in system domain with an existing page vector
[10:04:24] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[10:04:24] ======== ttm_bo_validate_no_placement_not_signaled ========
[10:04:24] [PASSED] Buffer object for userspace
[10:04:24] [PASSED] Kernel buffer object
[10:04:24] [PASSED] Shared buffer object
[10:04:24] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[10:04:24] [PASSED] ttm_bo_validate_move_fence_signaled
[10:04:24] ========= ttm_bo_validate_move_fence_not_signaled =========
[10:04:24] [PASSED] Waits for GPU
[10:04:24] [PASSED] Tries to lock straight away
[10:04:24] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[10:04:24] [PASSED] ttm_bo_validate_happy_evict
[10:04:24] [PASSED] ttm_bo_validate_all_pinned_evict
[10:04:24] [PASSED] ttm_bo_validate_allowed_only_evict
[10:04:24] [PASSED] ttm_bo_validate_deleted_evict
[10:04:24] [PASSED] ttm_bo_validate_busy_domain_evict
[10:04:24] [PASSED] ttm_bo_validate_evict_gutting
[10:04:24] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[10:04:24] ================= [PASSED] ttm_bo_validate =================
[10:04:24] ============================================================
[10:04:24] Testing complete. Ran 101 tests: passed: 101
[10:04:24] Elapsed time: 11.402s total, 1.736s configuring, 9.449s building, 0.182s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 21+ messages in thread* ✗ CI.checksparse: warning for Testing PREEMPT_RT with disabling interrupts in the most critical section. (rev3)
2025-10-23 8:55 [FOR CI 0/5] Testing PREEMPT_RT with disabling interrupts in the most critical section Maarten Lankhorst
` (10 preceding siblings ...)
2025-10-27 10:04 ` ✓ CI.KUnit: success " Patchwork
@ 2025-10-27 10:18 ` Patchwork
2025-10-27 10:47 ` ✗ Xe.CI.BAT: failure " Patchwork
2025-10-27 12:52 ` ✗ Xe.CI.Full: " Patchwork
13 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2025-10-27 10:18 UTC (permalink / raw)
To: Maarten Lankhorst; +Cc: intel-xe
== Series Details ==
Series: Testing PREEMPT_RT with disabling interrupts in the most critical section. (rev3)
URL : https://patchwork.freedesktop.org/series/156134/
State : warning
== Summary ==
+ trap cleanup EXIT
+ KERNEL=/kernel
+ MT=/root/linux/maintainer-tools
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools /root/linux/maintainer-tools
Cloning into '/root/linux/maintainer-tools'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ make -C /root/linux/maintainer-tools
make: Entering directory '/root/linux/maintainer-tools'
cc -O2 -g -Wextra -o remap-log remap-log.c
make: Leaving directory '/root/linux/maintainer-tools'
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ /root/linux/maintainer-tools/dim sparse --fast c03916cb446b6eefe91538599775bb54bf98238c
Sparse version: 0.6.4 (Ubuntu: 0.6.4-4ubuntu3)
Fast mode used, each commit won't be checked separately.
-
+drivers/gpu/drm/drm_drv.c:449:6: warning: context imbalance in 'drm_dev_enter' - different lock contexts for basic block
+drivers/gpu/drm/drm_drv.c: note: in included file (through include/linux/notifier.h, arch/x86/include/asm/uprobes.h, include/linux/uprobes.h, include/linux/mm_types.h, include/linux/mmzone.h, include/linux/gfp.h, ...):
+drivers/gpu/drm/drm_gem.c:446:9: warning: context imbalance in 'drm_gem_handle_create_tail' - unexpected unlock
+drivers/gpu/drm/drm_plane.c:213:24: warning: Using plain integer as NULL pointer
+drivers/gpu/drm/drm_syncobj.c:602:24: warning: context imbalance in 'drm_syncobj_get_handle' - unexpected unlock
+drivers/gpu/drm/drm_syncobj.c:727:24: warning: context imbalance in 'drm_syncobj_fd_to_handle' - unexpected unlock
+./include/linux/srcu.h:389:9: warning: context imbalance in 'drm_dev_exit' - unexpected unlock
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 21+ messages in thread* ✗ Xe.CI.BAT: failure for Testing PREEMPT_RT with disabling interrupts in the most critical section. (rev3)
2025-10-23 8:55 [FOR CI 0/5] Testing PREEMPT_RT with disabling interrupts in the most critical section Maarten Lankhorst
` (11 preceding siblings ...)
2025-10-27 10:18 ` ✗ CI.checksparse: warning " Patchwork
@ 2025-10-27 10:47 ` Patchwork
2025-10-27 12:52 ` ✗ Xe.CI.Full: " Patchwork
13 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2025-10-27 10:47 UTC (permalink / raw)
To: Maarten Lankhorst; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 2505 bytes --]
== Series Details ==
Series: Testing PREEMPT_RT with disabling interrupts in the most critical section. (rev3)
URL : https://patchwork.freedesktop.org/series/156134/
State : failure
== Summary ==
CI Bug Log - changes from xe-3988-c03916cb446b6eefe91538599775bb54bf98238c_BAT -> xe-pw-156134v3_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-156134v3_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-156134v3_BAT, 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 (13 -> 13)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-156134v3_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@basic-flip-vs-wf_vblank:
- bat-adlp-7: [PASS][1] -> [ABORT][2] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_force_connector_basic@force-connector-state:
- bat-ptl-1: [PASS][3] -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/bat-ptl-1/igt@kms_force_connector_basic@force-connector-state.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/bat-ptl-1/igt@kms_force_connector_basic@force-connector-state.html
* igt@xe_module_load@load:
- bat-ptl-2: [PASS][5] -> [ABORT][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/bat-ptl-2/igt@xe_module_load@load.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/bat-ptl-2/igt@xe_module_load@load.html
Build changes
-------------
* Linux: xe-3988-c03916cb446b6eefe91538599775bb54bf98238c -> xe-pw-156134v3
IGT_8596: 8596
xe-3988-c03916cb446b6eefe91538599775bb54bf98238c: c03916cb446b6eefe91538599775bb54bf98238c
xe-pw-156134v3: 156134v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/index.html
[-- Attachment #2: Type: text/html, Size: 3163 bytes --]
^ permalink raw reply [flat|nested] 21+ messages in thread* ✗ Xe.CI.Full: failure for Testing PREEMPT_RT with disabling interrupts in the most critical section. (rev3)
2025-10-23 8:55 [FOR CI 0/5] Testing PREEMPT_RT with disabling interrupts in the most critical section Maarten Lankhorst
` (12 preceding siblings ...)
2025-10-27 10:47 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2025-10-27 12:52 ` Patchwork
13 siblings, 0 replies; 21+ messages in thread
From: Patchwork @ 2025-10-27 12:52 UTC (permalink / raw)
To: Maarten Lankhorst; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 47329 bytes --]
== Series Details ==
Series: Testing PREEMPT_RT with disabling interrupts in the most critical section. (rev3)
URL : https://patchwork.freedesktop.org/series/156134/
State : failure
== Summary ==
CI Bug Log - changes from xe-3988-c03916cb446b6eefe91538599775bb54bf98238c_FULL -> xe-pw-156134v3_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-156134v3_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-156134v3_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-156134v3_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-dp-4:
- shard-dg2-set2: [PASS][1] -> [ABORT][2] +19 other tests abort
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-dg2-464/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-dp-4.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-463/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-dp-4.html
* igt@kms_cursor_edge_walk@64x64-right-edge:
- shard-dg2-set2: [PASS][3] -> [DMESG-WARN][4] +4 other tests dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-dg2-466/igt@kms_cursor_edge_walk@64x64-right-edge.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-435/igt@kms_cursor_edge_walk@64x64-right-edge.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic:
- shard-adlp: [PASS][5] -> [ABORT][6] +10 other tests abort
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-adlp-9/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-adlp-1/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-bmg: [PASS][7] -> [ABORT][8] +18 other tests abort
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_cursor_legacy@single-bo@all-pipes:
- shard-lnl: [PASS][9] -> [DMESG-WARN][10] +1 other test dmesg-warn
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-lnl-2/igt@kms_cursor_legacy@single-bo@all-pipes.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-lnl-7/igt@kms_cursor_legacy@single-bo@all-pipes.html
* igt@kms_cursor_legacy@single-move@all-pipes:
- shard-adlp: [PASS][11] -> [DMESG-WARN][12]
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-adlp-3/igt@kms_cursor_legacy@single-move@all-pipes.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-adlp-2/igt@kms_cursor_legacy@single-move@all-pipes.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render:
- shard-lnl: [PASS][13] -> [ABORT][14] +22 other tests abort
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-lnl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-lnl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render.html
* igt@xe_exec_system_allocator@prefetch-benchmark:
- shard-bmg: [PASS][15] -> [TIMEOUT][16]
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-6/igt@xe_exec_system_allocator@prefetch-benchmark.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-8/igt@xe_exec_system_allocator@prefetch-benchmark.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-malloc-race-nomemset:
- shard-bmg: [PASS][17] -> [DMESG-WARN][18] +1 other test dmesg-warn
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-3/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-malloc-race-nomemset.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-7/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-malloc-race-nomemset.html
* igt@xe_pm@d3hot-mmap-system:
- shard-bmg: [PASS][19] -> [DMESG-FAIL][20]
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-3/igt@xe_pm@d3hot-mmap-system.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-7/igt@xe_pm@d3hot-mmap-system.html
* igt@xe_pmu@engine-activity-accuracy-50:
- shard-bmg: [PASS][21] -> [FAIL][22] +6 other tests fail
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-2/igt@xe_pmu@engine-activity-accuracy-50.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-6/igt@xe_pmu@engine-activity-accuracy-50.html
- shard-dg2-set2: [PASS][23] -> [FAIL][24] +1 other test fail
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-dg2-464/igt@xe_pmu@engine-activity-accuracy-50.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-436/igt@xe_pmu@engine-activity-accuracy-50.html
* igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_render0:
- shard-lnl: [PASS][25] -> [FAIL][26] +1 other test fail
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-lnl-3/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_render0.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-lnl-3/igt@xe_pmu@engine-activity-accuracy-50@engine-drm_xe_engine_class_render0.html
* igt@xe_pxp@pxp-stale-bo-bind-post-rpm:
- shard-lnl: [PASS][27] -> [SKIP][28] +7 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-lnl-3/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-lnl-5/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html
#### Warnings ####
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-2:
- shard-bmg: [FAIL][29] ([Intel XE#1178]) -> [ABORT][30] +1 other test abort
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-5/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-5/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-bmg: [SKIP][31] ([Intel XE#2291]) -> [ABORT][32]
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-8/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
New tests
---------
New tests have been introduced between xe-3988-c03916cb446b6eefe91538599775bb54bf98238c_FULL and xe-pw-156134v3_FULL:
### New IGT tests (12) ###
* igt@kms_color@ctm-0-25@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [1.39] s
* igt@kms_color@ctm-0-50@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [1.41] s
* igt@kms_color@ctm-0-75@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [1.82] s
* igt@kms_color@ctm-green-to-red@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.52] s
* igt@kms_color@ctm-max@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.51] s
* igt@kms_color@ctm-negative@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.54] s
* igt@kms_color@ctm-red-to-blue@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.49] s
* igt@kms_color@ctm-signed@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.96] s
* igt@kms_color@degamma@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.50] s
* igt@kms_color@gamma@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.49] s
* igt@kms_color@legacy-gamma-reset@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
* igt@kms_color@legacy-gamma@pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.48] s
Known issues
------------
Here are the changes found in xe-pw-156134v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-adlp: [PASS][33] -> [FAIL][34] ([Intel XE#6078]) +6 other tests fail
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-adlp-6/igt@kms_async_flips@alternate-sync-async-flip.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-adlp-4/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-lnl: [PASS][35] -> [FAIL][36] ([Intel XE#3718])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-lnl-7/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-lnl-2/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-2:
- shard-bmg: [PASS][37] -> [FAIL][38] ([Intel XE#3718] / [Intel XE#6078]) +1 other test fail
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-2.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-dp-2.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2:
- shard-bmg: [PASS][39] -> [FAIL][40] ([Intel XE#6078])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-5/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-c-dp-4:
- shard-dg2-set2: [PASS][41] -> [FAIL][42] ([Intel XE#6078]) +3 other tests fail
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-dg2-466/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-dp-4.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-432/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-dp-4.html
* igt@kms_atomic_interruptible@legacy-pageflip:
- shard-dg2-set2: [PASS][43] -> [INCOMPLETE][44] ([Intel XE#4842]) +1 other test incomplete
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-dg2-432/igt@kms_atomic_interruptible@legacy-pageflip.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-436/igt@kms_atomic_interruptible@legacy-pageflip.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#316]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-463/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#1124])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-463/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-adlp: [PASS][47] -> [DMESG-FAIL][48] ([Intel XE#4543])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#367])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-463/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#787]) +20 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-463/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#2907])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-463/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#455] / [Intel XE#787]) +5 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-463/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#306])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-463/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#373]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#308])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-463/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_legacy@forked-bo@pipe-b:
- shard-lnl: [PASS][56] -> [INCOMPLETE][57] ([Intel XE#3226]) +1 other test incomplete
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-lnl-7/igt@kms_cursor_legacy@forked-bo@pipe-b.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-lnl-2/igt@kms_cursor_legacy@forked-bo@pipe-b.html
* igt@kms_cursor_legacy@forked-bo@pipe-c:
- shard-dg2-set2: [PASS][58] -> [INCOMPLETE][59] ([Intel XE#3226]) +2 other tests incomplete
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-dg2-434/igt@kms_cursor_legacy@forked-bo@pipe-c.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-464/igt@kms_cursor_legacy@forked-bo@pipe-c.html
* igt@kms_cursor_legacy@single-move@pipe-a:
- shard-adlp: [PASS][60] -> [ABORT][61] ([Intel XE#2953]) +1 other test abort
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-adlp-3/igt@kms_cursor_legacy@single-move@pipe-a.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-adlp-2/igt@kms_cursor_legacy@single-move@pipe-a.html
* igt@kms_cursor_legacy@torture-bo@pipe-b:
- shard-adlp: [PASS][62] -> [INCOMPLETE][63] ([Intel XE#3226]) +2 other tests incomplete
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-adlp-1/igt@kms_cursor_legacy@torture-bo@pipe-b.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-adlp-3/igt@kms_cursor_legacy@torture-bo@pipe-b.html
* igt@kms_cursor_legacy@torture-move@pipe-b:
- shard-bmg: [PASS][64] -> [INCOMPLETE][65] ([Intel XE#3226]) +2 other tests incomplete
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-2/igt@kms_cursor_legacy@torture-move@pipe-b.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-6/igt@kms_cursor_legacy@torture-move@pipe-b.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-bmg: [PASS][66] -> [SKIP][67] ([Intel XE#2316])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-adlp: [PASS][68] -> [DMESG-WARN][69] ([Intel XE#4543]) +7 other tests dmesg-warn
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-adlp-4/igt@kms_flip@basic-flip-vs-wf_vblank.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-adlp-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-bmg: [PASS][70] -> [FAIL][71] ([Intel XE#3321]) +3 other tests fail
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4:
- shard-dg2-set2: [PASS][72] -> [FAIL][73] ([Intel XE#301]) +6 other tests fail
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2:
- shard-bmg: NOTRUN -> [FAIL][74] ([Intel XE#3321]) +3 other tests fail
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: [PASS][75] -> [FAIL][76] ([Intel XE#301]) +3 other tests fail
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4:
- shard-dg2-set2: [PASS][77] -> [FAIL][78] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1:
- shard-adlp: [PASS][79] -> [FAIL][80] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-adlp-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-adlp-9/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1:
- shard-adlp: [PASS][81] -> [FAIL][82] ([Intel XE#301]) +4 other tests fail
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-adlp-6/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-adlp-4/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a1.html
* igt@kms_flip@flip-vs-expired-vblank@c-dp4:
- shard-dg2-set2: [PASS][83] -> [FAIL][84] ([Intel XE#301] / [Intel XE#3321])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [PASS][85] -> [FAIL][86] ([Intel XE#301] / [Intel XE#3149]) +3 other tests fail
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@d-dp4:
- shard-dg2-set2: [PASS][87] -> [FAIL][88] ([Intel XE#301] / [Intel XE#3149] / [Intel XE#3321])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@d-dp4.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@d-dp4.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#651]) +4 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#653]) +5 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#6312]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_invalid_mode@overflow-vrefresh:
- shard-dg2-set2: [PASS][92] -> [INCOMPLETE][93] ([Intel XE#2594])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-dg2-432/igt@kms_invalid_mode@overflow-vrefresh.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-436/igt@kms_invalid_mode@overflow-vrefresh.html
* igt@kms_invalid_mode@zero-hdisplay:
- shard-adlp: [PASS][94] -> [DMESG-WARN][95] ([Intel XE#2953] / [Intel XE#4173]) +5 other tests dmesg-warn
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-adlp-1/igt@kms_invalid_mode@zero-hdisplay.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-adlp-3/igt@kms_invalid_mode@zero-hdisplay.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#346])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-463/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-463/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-463/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_vrr@cmrr:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#2168])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-463/igt@kms_vrr@cmrr.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#6360])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-463/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_eudebug@basic-vm-bind-extended-discovery:
- shard-dg2-set2: NOTRUN -> [SKIP][101] ([Intel XE#4837])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-463/igt@xe_eudebug@basic-vm-bind-extended-discovery.html
* igt@xe_exec_fault_mode@many-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#288]) +3 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-463/igt@xe_exec_fault_mode@many-rebind-imm.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
- shard-lnl: [PASS][103] -> [FAIL][104] ([Intel XE#5625])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-malloc:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#4915]) +59 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-463/igt@xe_exec_system_allocator@threads-shared-vm-many-large-malloc.html
* igt@xe_pmu@engine-activity-accuracy-50:
- shard-lnl: [PASS][106] -> [FAIL][107] ([Intel XE#6251])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-lnl-3/igt@xe_pmu@engine-activity-accuracy-50.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-lnl-3/igt@xe_pmu@engine-activity-accuracy-50.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1:
- shard-bmg: [PASS][108] -> [DMESG-WARN][109] ([Intel XE#3876] / [Intel XE#3970]) +1 other test dmesg-warn
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-4/igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-7/igt@xe_pmu@fn-engine-activity-sched-if-idle@engine-drm_xe_engine_class_video_enhance1.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#944])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-463/igt@xe_query@multigpu-query-invalid-size.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-adlp: [FAIL][111] ([Intel XE#3908]) -> [PASS][112] +1 other test pass
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-adlp-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-adlp-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4:
- shard-dg2-set2: [INCOMPLETE][113] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345]) -> [PASS][114] +1 other test pass
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-bmg: [SKIP][115] ([Intel XE#2291]) -> [PASS][116]
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-bmg: [SKIP][117] ([Intel XE#2316]) -> [PASS][118] +1 other test pass
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-8/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6:
- shard-dg2-set2: [FAIL][119] ([Intel XE#301]) -> [PASS][120]
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
- shard-adlp: [DMESG-WARN][121] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][122]
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-adlp-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-adlp-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: [SKIP][123] ([Intel XE#1503]) -> [PASS][124]
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-8/igt@kms_hdr@static-toggle-suspend.html
* igt@xe_exec_threads@threads-bal-mixed-rebind:
- shard-adlp: [DMESG-FAIL][125] ([Intel XE#3876]) -> [PASS][126] +4 other tests pass
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-adlp-8/igt@xe_exec_threads@threads-bal-mixed-rebind.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-adlp-2/igt@xe_exec_threads@threads-bal-mixed-rebind.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [SKIP][151], [PASS][152]) ([Intel XE#2457]) -> ([PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-7/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-6/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-7/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-7/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-6/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-3/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-2/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-2/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-2/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-3/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-5/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-5/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-5/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-4/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-3/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-8/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-4/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-4/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-8/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-6/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-6/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-8/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-1/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-1/igt@xe_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-8/igt@xe_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-1/igt@xe_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-7/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-7/igt@xe_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-7/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-1/igt@xe_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-8/igt@xe_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-7/igt@xe_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-8/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-8/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-8/igt@xe_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-6/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-6/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-3/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-3/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-3/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-2/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-2/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-4/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-4/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-5/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-5/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-5/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-5/igt@xe_module_load@load.html
#### Warnings ####
* igt@kms_flip@flip-vs-expired-vblank:
- shard-adlp: [DMESG-WARN][175] ([Intel XE#4543]) -> [DMESG-FAIL][176] ([Intel XE#4543]) +1 other test dmesg-fail
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-adlp-6/igt@kms_flip@flip-vs-expired-vblank.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-adlp-4/igt@kms_flip@flip-vs-expired-vblank.html
- shard-dg2-set2: [FAIL][177] ([Intel XE#301]) -> [FAIL][178] ([Intel XE#301] / [Intel XE#3149])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a1:
- shard-adlp: [DMESG-WARN][179] ([Intel XE#4543]) -> [FAIL][180] ([Intel XE#301] / [Intel XE#3149])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-adlp-6/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a1.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-adlp-4/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a1.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][181] ([Intel XE#2312]) -> [SKIP][182] ([Intel XE#2311]) +3 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][183] ([Intel XE#2311]) -> [SKIP][184] ([Intel XE#2312]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][185] ([Intel XE#5390]) -> [SKIP][186] ([Intel XE#2312])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][187] ([Intel XE#2312]) -> [SKIP][188] ([Intel XE#2313]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][189] ([Intel XE#2313]) -> [SKIP][190] ([Intel XE#2312]) +2 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: [SKIP][191] ([Intel XE#5021]) -> [SKIP][192] ([Intel XE#4596])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-y.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html
* igt@xe_exec_reset@cm-cat-error:
- shard-adlp: [DMESG-FAIL][193] ([Intel XE#3868]) -> [DMESG-WARN][194] ([Intel XE#3868])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3988-c03916cb446b6eefe91538599775bb54bf98238c/shard-adlp-8/igt@xe_exec_reset@cm-cat-error.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/shard-adlp-2/igt@xe_exec_reset@cm-cat-error.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6360
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-3988-c03916cb446b6eefe91538599775bb54bf98238c -> xe-pw-156134v3
IGT_8596: 8596
xe-3988-c03916cb446b6eefe91538599775bb54bf98238c: c03916cb446b6eefe91538599775bb54bf98238c
xe-pw-156134v3: 156134v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156134v3/index.html
[-- Attachment #2: Type: text/html, Size: 53802 bytes --]
^ permalink raw reply [flat|nested] 21+ messages in thread