* [PATCH v4 0/2] tracing: Move non-trace_printk prototypes into trace_controls.h
@ 2026-06-25 10:40 Steven Rostedt
2026-06-25 10:40 ` [PATCH v4 1/2] " Steven Rostedt
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Steven Rostedt @ 2026-06-25 10:40 UTC (permalink / raw)
To: linux-kernel, linux-trace-kernel
Cc: Masami Hiramatsu, Mark Rutland, Mathieu Desnoyers, Andrew Morton,
Linus Torvalds, Sebastian Andrzej Siewior, John Ogness,
Thomas Gleixner, Peter Zijlstra, Julia Lawall, Yury Norov,
linux-doc, linux-kbuild, linuxppc-dev, dri-devel, linux-stm32,
linux-arm-kernel, linux-rdma, linux-usb, linux-ext4, linux-nfs,
kvm, intel-gfx
Remove trace_printk.h by creating a trace_controls.h for those places that
need access to tracing prototypes like tracing_off() and for the places that
need trace_printk() directly, to have it included directly.
Changse since v3: https://lore.kernel.org/all/20260624081806.120105649@kernel.org/
- Always include trace_controls.h in rcu.h (kernel test robot)
There are other configs that may include tracing_off() in rcu.h besides
the one that had the include of trace_controls.h. Just always include
it in that header to be safe.
Steven Rostedt (2):
tracing: Move non-trace_printk prototypes into trace_controls.h
tracing: Remove trace_printk.h from kernel.h
----
arch/powerpc/kvm/book3s_xics.c | 1 +
arch/powerpc/xmon/xmon.c | 1 +
arch/s390/kernel/ipl.c | 1 +
arch/s390/kernel/machine_kexec.c | 1 +
drivers/gpu/drm/i915/gt/intel_gtt.h | 1 +
drivers/gpu/drm/i915/i915_gem.h | 2 ++
drivers/hwtracing/stm/dummy_stm.c | 1 +
drivers/infiniband/hw/hfi1/trace_dbg.h | 1 +
drivers/tty/sysrq.c | 1 +
drivers/usb/early/xhci-dbc.c | 1 +
fs/ext4/inline.c | 1 +
include/linux/ftrace.h | 2 ++
include/linux/kernel.h | 1 -
include/linux/sunrpc/debug.h | 1 +
include/linux/trace_controls.h | 54 ++++++++++++++++++++++++++++++++
include/linux/trace_printk.h | 56 ++--------------------------------
kernel/debug/debug_core.c | 1 +
kernel/panic.c | 1 +
kernel/rcu/rcu.h | 1 +
kernel/rcu/rcutorture.c | 1 +
kernel/trace/ring_buffer_benchmark.c | 1 +
kernel/trace/trace.h | 1 +
kernel/trace/trace_benchmark.c | 1 +
lib/sys_info.c | 1 +
samples/fprobe/fprobe_example.c | 1 +
samples/ftrace/ftrace-direct-too.c | 1 -
samples/trace_printk/trace-printk.c | 1 +
27 files changed, 82 insertions(+), 55 deletions(-)
create mode 100644 include/linux/trace_controls.h
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v4 1/2] tracing: Move non-trace_printk prototypes into trace_controls.h
2026-06-25 10:40 [PATCH v4 0/2] tracing: Move non-trace_printk prototypes into trace_controls.h Steven Rostedt
@ 2026-06-25 10:40 ` Steven Rostedt
2026-06-25 10:40 ` [PATCH v4 2/2] tracing: Remove trace_printk.h from kernel.h Steven Rostedt
` (3 subsequent siblings)
4 siblings, 0 replies; 9+ messages in thread
From: Steven Rostedt @ 2026-06-25 10:40 UTC (permalink / raw)
To: linux-kernel, linux-trace-kernel
Cc: Masami Hiramatsu, Mark Rutland, Mathieu Desnoyers, Andrew Morton,
Linus Torvalds, Sebastian Andrzej Siewior, John Ogness,
Thomas Gleixner, Peter Zijlstra, Julia Lawall, Yury Norov,
linux-doc, linux-kbuild, linuxppc-dev, dri-devel, linux-stm32,
linux-arm-kernel, linux-rdma, linux-usb, linux-ext4, linux-nfs,
kvm, intel-gfx
From: Steven Rostedt <rostedt@goodmis.org>
Remove the prototypes of the code that is not associated with
trace_printk() from trace_printk.h.
These control functions as well as ftrace_dump() and trace_dump_stack()
are used in cases where things go wrong. The main use case is to do a
trace_dump_stack(); tracing_off(); ftrace_dump(); in a place that detected
that something went wrong, whereas, trace_printk() is added to normal code
during debugging and removed before committing upstream. The dump code is
fine to keep in production.
Suggested-by: Yury Norov <yury.norov@gmail.com>
Acked-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
---
Changes since v3: https://patch.msgid.link/20260624081948.147764194@kernel.org
- Move include out of #if statement in rcu.h
kernel test robot found other configs that could require the
control functions in rcu.h. Just always include it in that file.
arch/powerpc/xmon/xmon.c | 1 +
arch/s390/kernel/ipl.c | 1 +
arch/s390/kernel/machine_kexec.c | 1 +
drivers/gpu/drm/i915/i915_gem.h | 1 +
drivers/tty/sysrq.c | 1 +
include/linux/trace_controls.h | 54 ++++++++++++++++++++++++++++++++
include/linux/trace_printk.h | 51 ------------------------------
kernel/debug/debug_core.c | 1 +
kernel/panic.c | 1 +
kernel/rcu/rcu.h | 1 +
kernel/rcu/rcutorture.c | 1 +
kernel/trace/trace.h | 1 +
kernel/trace/trace_benchmark.c | 1 +
lib/sys_info.c | 1 +
14 files changed, 66 insertions(+), 51 deletions(-)
create mode 100644 include/linux/trace_controls.h
diff --git a/arch/powerpc/xmon/xmon.c b/arch/powerpc/xmon/xmon.c
index cb3a3244ae6f..2135f319e0dd 100644
--- a/arch/powerpc/xmon/xmon.c
+++ b/arch/powerpc/xmon/xmon.c
@@ -27,6 +27,7 @@
#include <linux/highmem.h>
#include <linux/security.h>
#include <linux/debugfs.h>
+#include <linux/trace_controls.h>
#include <asm/ptrace.h>
#include <asm/smp.h>
diff --git a/arch/s390/kernel/ipl.c b/arch/s390/kernel/ipl.c
index 3c346b02ceb9..baac66cc4de4 100644
--- a/arch/s390/kernel/ipl.c
+++ b/arch/s390/kernel/ipl.c
@@ -22,6 +22,7 @@
#include <linux/debug_locks.h>
#include <linux/vmalloc.h>
#include <linux/secure_boot.h>
+#include <linux/trace_controls.h>
#include <asm/asm-extable.h>
#include <asm/machine.h>
#include <asm/diag.h>
diff --git a/arch/s390/kernel/machine_kexec.c b/arch/s390/kernel/machine_kexec.c
index baeb3dcfc1c8..33f9a89eb3ad 100644
--- a/arch/s390/kernel/machine_kexec.c
+++ b/arch/s390/kernel/machine_kexec.c
@@ -12,6 +12,7 @@
#include <linux/delay.h>
#include <linux/reboot.h>
#include <linux/ftrace.h>
+#include <linux/trace_controls.h>
#include <linux/debug_locks.h>
#include <linux/cpufeature.h>
#include <asm/guarded_storage.h>
diff --git a/drivers/gpu/drm/i915/i915_gem.h b/drivers/gpu/drm/i915/i915_gem.h
index 20b3cb29cfff..1da8fb61c09e 100644
--- a/drivers/gpu/drm/i915/i915_gem.h
+++ b/drivers/gpu/drm/i915/i915_gem.h
@@ -116,6 +116,7 @@ int i915_gem_open(struct drm_i915_private *i915, struct drm_file *file);
#endif
#if IS_ENABLED(CONFIG_DRM_I915_TRACE_GEM)
+#include <linux/trace_controls.h>
#define GEM_TRACE(...) trace_printk(__VA_ARGS__)
#define GEM_TRACE_ERR(...) do { \
pr_err(__VA_ARGS__); \
diff --git a/drivers/tty/sysrq.c b/drivers/tty/sysrq.c
index c2e4b31b699a..d3f72dc430b8 100644
--- a/drivers/tty/sysrq.c
+++ b/drivers/tty/sysrq.c
@@ -324,6 +324,7 @@ static const struct sysrq_key_op sysrq_showstate_blocked_op = {
};
#ifdef CONFIG_TRACING
+#include <linux/trace_controls.h>
#include <linux/ftrace.h>
static void sysrq_ftrace_dump(u8 key)
diff --git a/include/linux/trace_controls.h b/include/linux/trace_controls.h
new file mode 100644
index 000000000000..995b97e963b4
--- /dev/null
+++ b/include/linux/trace_controls.h
@@ -0,0 +1,54 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+#ifndef _LINUX_TRACE_CONTROLS_H
+#define _LINUX_TRACE_CONTROLS_H
+
+
+/*
+ * General tracing related utility functions - trace_printk(),
+ * tracing_on/tracing_off and tracing_start()/tracing_stop
+ *
+ * Use tracing_on/tracing_off when you want to quickly turn on or off
+ * tracing. It simply enables or disables the recording of the trace events.
+ * This also corresponds to the user space /sys/kernel/tracing/tracing_on
+ * file, which gives a means for the kernel and userspace to interact.
+ * Place a tracing_off() in the kernel where you want tracing to end.
+ * From user space, examine the trace, and then echo 1 > tracing_on
+ * to continue tracing.
+ *
+ * tracing_stop/tracing_start has slightly more overhead. It is used
+ * by things like suspend to ram where disabling the recording of the
+ * trace is not enough, but tracing must actually stop because things
+ * like calling smp_processor_id() may crash the system.
+ *
+ * Most likely, you want to use tracing_on/tracing_off.
+ */
+enum ftrace_dump_mode {
+ DUMP_NONE,
+ DUMP_ALL,
+ DUMP_ORIG,
+ DUMP_PARAM,
+};
+
+#ifdef CONFIG_TRACING
+void tracing_on(void);
+void tracing_off(void);
+int tracing_is_on(void);
+void tracing_snapshot(void);
+void tracing_snapshot_alloc(void);
+void tracing_start(void);
+void tracing_stop(void);
+void trace_dump_stack(int skip);
+void ftrace_dump(enum ftrace_dump_mode oops_dump_mode);
+#else
+static inline void tracing_start(void) { }
+static inline void tracing_stop(void) { }
+static inline void tracing_on(void) { }
+static inline void tracing_off(void) { }
+static inline int tracing_is_on(void) { return 0; }
+static inline void tracing_snapshot(void) { }
+static inline void tracing_snapshot_alloc(void) { }
+static inline void trace_dump_stack(int skip) { }
+static inline void ftrace_dump(enum ftrace_dump_mode oops_dump_mode) { }
+#endif
+
+#endif /* _LINUX_TRACE_CONTROLS_H */
diff --git a/include/linux/trace_printk.h b/include/linux/trace_printk.h
index 3d54f440dccf..a488ea9e9f85 100644
--- a/include/linux/trace_printk.h
+++ b/include/linux/trace_printk.h
@@ -7,43 +7,7 @@
#include <linux/stddef.h>
#include <linux/stringify.h>
-/*
- * General tracing related utility functions - trace_printk(),
- * tracing_on/tracing_off and tracing_start()/tracing_stop
- *
- * Use tracing_on/tracing_off when you want to quickly turn on or off
- * tracing. It simply enables or disables the recording of the trace events.
- * This also corresponds to the user space /sys/kernel/tracing/tracing_on
- * file, which gives a means for the kernel and userspace to interact.
- * Place a tracing_off() in the kernel where you want tracing to end.
- * From user space, examine the trace, and then echo 1 > tracing_on
- * to continue tracing.
- *
- * tracing_stop/tracing_start has slightly more overhead. It is used
- * by things like suspend to ram where disabling the recording of the
- * trace is not enough, but tracing must actually stop because things
- * like calling smp_processor_id() may crash the system.
- *
- * Most likely, you want to use tracing_on/tracing_off.
- */
-
-enum ftrace_dump_mode {
- DUMP_NONE,
- DUMP_ALL,
- DUMP_ORIG,
- DUMP_PARAM,
-};
-
#ifdef CONFIG_TRACING
-void tracing_on(void);
-void tracing_off(void);
-int tracing_is_on(void);
-void tracing_snapshot(void);
-void tracing_snapshot_alloc(void);
-
-extern void tracing_start(void);
-extern void tracing_stop(void);
-
static inline __printf(1, 2)
void ____trace_printk_check_format(const char *fmt, ...)
{
@@ -149,8 +113,6 @@ int __trace_printk(unsigned long ip, const char *fmt, ...);
extern int __trace_bputs(unsigned long ip, const char *str);
extern int __trace_puts(unsigned long ip, const char *str);
-extern void trace_dump_stack(int skip);
-
/*
* The double __builtin_constant_p is because gcc will give us an error
* if we try to allocate the static variable to fmt if it is not a
@@ -173,19 +135,7 @@ __ftrace_vbprintk(unsigned long ip, const char *fmt, va_list ap);
extern __printf(2, 0) int
__ftrace_vprintk(unsigned long ip, const char *fmt, va_list ap);
-
-extern void ftrace_dump(enum ftrace_dump_mode oops_dump_mode);
#else
-static inline void tracing_start(void) { }
-static inline void tracing_stop(void) { }
-static inline void trace_dump_stack(int skip) { }
-
-static inline void tracing_on(void) { }
-static inline void tracing_off(void) { }
-static inline int tracing_is_on(void) { return 0; }
-static inline void tracing_snapshot(void) { }
-static inline void tracing_snapshot_alloc(void) { }
-
static inline __printf(1, 2)
int trace_printk(const char *fmt, ...)
{
@@ -196,7 +146,6 @@ ftrace_vprintk(const char *fmt, va_list ap)
{
return 0;
}
-static inline void ftrace_dump(enum ftrace_dump_mode oops_dump_mode) { }
#endif /* CONFIG_TRACING */
#endif
diff --git a/kernel/debug/debug_core.c b/kernel/debug/debug_core.c
index b276504c1c6b..f9c83a470c98 100644
--- a/kernel/debug/debug_core.c
+++ b/kernel/debug/debug_core.c
@@ -27,6 +27,7 @@
#define pr_fmt(fmt) "KGDB: " fmt
+#include <linux/trace_controls.h>
#include <linux/pid_namespace.h>
#include <linux/clocksource.h>
#include <linux/serial_core.h>
diff --git a/kernel/panic.c b/kernel/panic.c
index 213725b612aa..1415e910371d 100644
--- a/kernel/panic.c
+++ b/kernel/panic.c
@@ -9,6 +9,7 @@
* This function is used through-out the kernel (including mm and fs)
* to indicate a major problem.
*/
+#include <linux/trace_controls.h>
#include <linux/debug_locks.h>
#include <linux/sched/debug.h>
#include <linux/interrupt.h>
diff --git a/kernel/rcu/rcu.h b/kernel/rcu/rcu.h
index fa6d30ce73d1..735a80df0b30 100644
--- a/kernel/rcu/rcu.h
+++ b/kernel/rcu/rcu.h
@@ -12,6 +12,7 @@
#include <linux/slab.h>
#include <trace/events/rcu.h>
+#include <linux/trace_controls.h>
/*
* Grace-period counter management.
diff --git a/kernel/rcu/rcutorture.c b/kernel/rcu/rcutorture.c
index 882a158ada7b..76bf0184b267 100644
--- a/kernel/rcu/rcutorture.c
+++ b/kernel/rcu/rcutorture.c
@@ -39,6 +39,7 @@
#include <linux/srcu.h>
#include <linux/slab.h>
#include <linux/trace_clock.h>
+#include <linux/trace_controls.h>
#include <asm/byteorder.h>
#include <linux/torture.h>
#include <linux/vmalloc.h>
diff --git a/kernel/trace/trace.h b/kernel/trace/trace.h
index 80fe152af1dd..2537c33ddd49 100644
--- a/kernel/trace/trace.h
+++ b/kernel/trace/trace.h
@@ -22,6 +22,7 @@
#include <linux/ctype.h>
#include <linux/once_lite.h>
#include <linux/ftrace_regs.h>
+#include <linux/trace_controls.h>
#include <linux/llist.h>
#include "pid_list.h"
diff --git a/kernel/trace/trace_benchmark.c b/kernel/trace/trace_benchmark.c
index e19c32f2a938..69cc39008c36 100644
--- a/kernel/trace/trace_benchmark.c
+++ b/kernel/trace/trace_benchmark.c
@@ -3,6 +3,7 @@
#include <linux/module.h>
#include <linux/kthread.h>
#include <linux/trace_clock.h>
+#include <linux/trace_controls.h>
#define CREATE_TRACE_POINTS
#include "trace_benchmark.h"
diff --git a/lib/sys_info.c b/lib/sys_info.c
index f32a06ec9ed4..e3c9ca05601b 100644
--- a/lib/sys_info.c
+++ b/lib/sys_info.c
@@ -8,6 +8,7 @@
#include <linux/ftrace.h>
#include <linux/nmi.h>
#include <linux/sched/debug.h>
+#include <linux/trace_controls.h>
#include <linux/string.h>
#include <linux/sysctl.h>
--
2.53.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v4 2/2] tracing: Remove trace_printk.h from kernel.h
2026-06-25 10:40 [PATCH v4 0/2] tracing: Move non-trace_printk prototypes into trace_controls.h Steven Rostedt
2026-06-25 10:40 ` [PATCH v4 1/2] " Steven Rostedt
@ 2026-06-25 10:40 ` Steven Rostedt
2026-06-25 23:41 ` Nathan Chancellor
2026-06-25 11:05 ` [PATCH v4 0/2] tracing: Move non-trace_printk prototypes into trace_controls.h Jani Nikula
` (2 subsequent siblings)
4 siblings, 1 reply; 9+ messages in thread
From: Steven Rostedt @ 2026-06-25 10:40 UTC (permalink / raw)
To: linux-kernel, linux-trace-kernel
Cc: Masami Hiramatsu, Mark Rutland, Mathieu Desnoyers, Andrew Morton,
Linus Torvalds, Sebastian Andrzej Siewior, John Ogness,
Thomas Gleixner, Peter Zijlstra, Julia Lawall, Yury Norov,
linux-doc, linux-kbuild, linuxppc-dev, dri-devel, linux-stm32,
linux-arm-kernel, linux-rdma, linux-usb, linux-ext4, linux-nfs,
kvm, intel-gfx
From: Steven Rostedt <rostedt@goodmis.org>
There have been complaints about trace_printk.h causing more build time
for being in kernel.h if it changes. There is also an effort to clean up
kernel.h to have it not include unneeded header files. Move trace_printk.h
out of kernel.h and place it in the headers and C files that use it.
Link: https://lore.kernel.org/all/CAHk-=wikCBeVFjVXiY4o-oepdbjAoir5+TcAgtL12c4u1TpZLQ@mail.gmail.com/
Suggested-by: Yury Norov <yury.norov@gmail.com>
Acked-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
---
arch/powerpc/kvm/book3s_xics.c | 1 +
drivers/gpu/drm/i915/gt/intel_gtt.h | 1 +
drivers/gpu/drm/i915/i915_gem.h | 1 +
drivers/hwtracing/stm/dummy_stm.c | 1 +
drivers/infiniband/hw/hfi1/trace_dbg.h | 1 +
drivers/usb/early/xhci-dbc.c | 1 +
fs/ext4/inline.c | 1 +
include/linux/ftrace.h | 2 ++
include/linux/kernel.h | 1 -
include/linux/sunrpc/debug.h | 1 +
include/linux/trace_printk.h | 5 +++--
kernel/trace/ring_buffer_benchmark.c | 1 +
samples/fprobe/fprobe_example.c | 1 +
samples/ftrace/ftrace-direct-too.c | 1 -
samples/trace_printk/trace-printk.c | 1 +
15 files changed, 16 insertions(+), 4 deletions(-)
diff --git a/arch/powerpc/kvm/book3s_xics.c b/arch/powerpc/kvm/book3s_xics.c
index 74a44fa702b0..ef5eb596a56e 100644
--- a/arch/powerpc/kvm/book3s_xics.c
+++ b/arch/powerpc/kvm/book3s_xics.c
@@ -26,6 +26,7 @@
#if 1
#define XICS_DBG(fmt...) do { } while (0)
#else
+#include <linux/trace_printk.h>
#define XICS_DBG(fmt...) trace_printk(fmt)
#endif
diff --git a/drivers/gpu/drm/i915/gt/intel_gtt.h b/drivers/gpu/drm/i915/gt/intel_gtt.h
index b54ee4f25af1..f6f223090760 100644
--- a/drivers/gpu/drm/i915/gt/intel_gtt.h
+++ b/drivers/gpu/drm/i915/gt/intel_gtt.h
@@ -35,6 +35,7 @@
#define I915_GFP_ALLOW_FAIL (GFP_KERNEL | __GFP_RETRY_MAYFAIL | __GFP_NOWARN)
#if IS_ENABLED(CONFIG_DRM_I915_TRACE_GTT)
+#include <linux/trace_printk.h>
#define GTT_TRACE(...) trace_printk(__VA_ARGS__)
#else
#define GTT_TRACE(...)
diff --git a/drivers/gpu/drm/i915/i915_gem.h b/drivers/gpu/drm/i915/i915_gem.h
index 1da8fb61c09e..f490052e8964 100644
--- a/drivers/gpu/drm/i915/i915_gem.h
+++ b/drivers/gpu/drm/i915/i915_gem.h
@@ -117,6 +117,7 @@ int i915_gem_open(struct drm_i915_private *i915, struct drm_file *file);
#if IS_ENABLED(CONFIG_DRM_I915_TRACE_GEM)
#include <linux/trace_controls.h>
+#include <linux/trace_printk.h>
#define GEM_TRACE(...) trace_printk(__VA_ARGS__)
#define GEM_TRACE_ERR(...) do { \
pr_err(__VA_ARGS__); \
diff --git a/drivers/hwtracing/stm/dummy_stm.c b/drivers/hwtracing/stm/dummy_stm.c
index 38528ffdc0b3..7c5e48ebfb9f 100644
--- a/drivers/hwtracing/stm/dummy_stm.c
+++ b/drivers/hwtracing/stm/dummy_stm.c
@@ -8,6 +8,7 @@
*/
#undef DEBUG
+#include <linux/trace_printk.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/slab.h>
diff --git a/drivers/infiniband/hw/hfi1/trace_dbg.h b/drivers/infiniband/hw/hfi1/trace_dbg.h
index 58304b91380f..30df5e246586 100644
--- a/drivers/infiniband/hw/hfi1/trace_dbg.h
+++ b/drivers/infiniband/hw/hfi1/trace_dbg.h
@@ -103,6 +103,7 @@ __hfi1_trace_def(IOCTL);
*/
#ifdef HFI1_EARLY_DBG
+#include <linux/trace_printk.h>
#define hfi1_dbg_early(fmt, ...) \
trace_printk(fmt, ##__VA_ARGS__)
#else
diff --git a/drivers/usb/early/xhci-dbc.c b/drivers/usb/early/xhci-dbc.c
index 41118bba9197..955c73bd601f 100644
--- a/drivers/usb/early/xhci-dbc.c
+++ b/drivers/usb/early/xhci-dbc.c
@@ -30,6 +30,7 @@ static struct xdbc_state xdbc;
static bool early_console_keep;
#ifdef XDBC_TRACE
+#include <linux/trace_printk.h>
#define xdbc_trace trace_printk
#else
static inline void xdbc_trace(const char *fmt, ...) { }
diff --git a/fs/ext4/inline.c b/fs/ext4/inline.c
index 8045e4ff270c..0eff4a0c6a6c 100644
--- a/fs/ext4/inline.c
+++ b/fs/ext4/inline.c
@@ -934,6 +934,7 @@ static int ext4_da_convert_inline_data_to_extent(struct address_space *mapping,
}
#ifdef INLINE_DIR_DEBUG
+#include <linux/trace_printk.h>
void ext4_show_inline_dir(struct inode *dir, struct buffer_head *bh,
void *inline_start, int inline_size)
{
diff --git a/include/linux/ftrace.h b/include/linux/ftrace.h
index 02bc5027523a..b5336a81e619 100644
--- a/include/linux/ftrace.h
+++ b/include/linux/ftrace.h
@@ -8,6 +8,8 @@
#define _LINUX_FTRACE_H
#include <linux/trace_recursion.h>
+#include <linux/trace_controls.h>
+#include <linux/trace_printk.h>
#include <linux/trace_clock.h>
#include <linux/jump_label.h>
#include <linux/kallsyms.h>
diff --git a/include/linux/kernel.h b/include/linux/kernel.h
index e5570a16cbb1..e87a40fbd152 100644
--- a/include/linux/kernel.h
+++ b/include/linux/kernel.h
@@ -31,7 +31,6 @@
#include <linux/build_bug.h>
#include <linux/sprintf.h>
#include <linux/static_call_types.h>
-#include <linux/trace_printk.h>
#include <linux/util_macros.h>
#include <linux/wordpart.h>
diff --git a/include/linux/sunrpc/debug.h b/include/linux/sunrpc/debug.h
index ab61bed2f7af..7524f5d82fba 100644
--- a/include/linux/sunrpc/debug.h
+++ b/include/linux/sunrpc/debug.h
@@ -29,6 +29,7 @@ extern unsigned int nlm_debug;
# define ifdebug(fac) if (unlikely(rpc_debug & RPCDBG_##fac))
# if IS_ENABLED(CONFIG_SUNRPC_DEBUG_TRACE)
+# include <linux/trace_printk.h>
# define __sunrpc_printk(fmt, ...) trace_printk(fmt, ##__VA_ARGS__)
# else
# define __sunrpc_printk(fmt, ...) printk(KERN_DEFAULT fmt, ##__VA_ARGS__)
diff --git a/include/linux/trace_printk.h b/include/linux/trace_printk.h
index a488ea9e9f85..74ce4f8995c4 100644
--- a/include/linux/trace_printk.h
+++ b/include/linux/trace_printk.h
@@ -1,11 +1,12 @@
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _LINUX_TRACE_PRINTK_H
#define _LINUX_TRACE_PRINTK_H
+#if !defined(__ASSEMBLY__) && !defined(__GENKSYMS__) && !defined(BUILD_VDSO)
-#include <linux/compiler_attributes.h>
#include <linux/instruction_pointer.h>
#include <linux/stddef.h>
#include <linux/stringify.h>
+#include <linux/stdarg.h>
#ifdef CONFIG_TRACING
static inline __printf(1, 2)
@@ -147,5 +148,5 @@ ftrace_vprintk(const char *fmt, va_list ap)
return 0;
}
#endif /* CONFIG_TRACING */
-
+#endif /* !defined(__ASSEMBLY__) && !defined(__GENKSYMS__) && !defined(BUILD_VDSO) */
#endif
diff --git a/kernel/trace/ring_buffer_benchmark.c b/kernel/trace/ring_buffer_benchmark.c
index 593e3b59e42e..2bb25caebb75 100644
--- a/kernel/trace/ring_buffer_benchmark.c
+++ b/kernel/trace/ring_buffer_benchmark.c
@@ -5,6 +5,7 @@
* Copyright (C) 2009 Steven Rostedt <srostedt@redhat.com>
*/
#include <linux/ring_buffer.h>
+#include <linux/trace_printk.h>
#include <linux/completion.h>
#include <linux/kthread.h>
#include <uapi/linux/sched/types.h>
diff --git a/samples/fprobe/fprobe_example.c b/samples/fprobe/fprobe_example.c
index bfe98ce826f3..de81b9b4ca7d 100644
--- a/samples/fprobe/fprobe_example.c
+++ b/samples/fprobe/fprobe_example.c
@@ -12,6 +12,7 @@
#define pr_fmt(fmt) "%s: " fmt, __func__
+#include <linux/trace_printk.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/fprobe.h>
diff --git a/samples/ftrace/ftrace-direct-too.c b/samples/ftrace/ftrace-direct-too.c
index bf2411aa6fd7..159190f4103f 100644
--- a/samples/ftrace/ftrace-direct-too.c
+++ b/samples/ftrace/ftrace-direct-too.c
@@ -1,6 +1,5 @@
// SPDX-License-Identifier: GPL-2.0-only
#include <linux/module.h>
-
#include <linux/mm.h> /* for handle_mm_fault() */
#include <linux/ftrace.h>
#if !defined(CONFIG_ARM64) && !defined(CONFIG_PPC32)
diff --git a/samples/trace_printk/trace-printk.c b/samples/trace_printk/trace-printk.c
index cfc159580263..ff37aeb8523e 100644
--- a/samples/trace_printk/trace-printk.c
+++ b/samples/trace_printk/trace-printk.c
@@ -1,4 +1,5 @@
// SPDX-License-Identifier: GPL-2.0-only
+#include <linux/trace_printk.h>
#include <linux/module.h>
#include <linux/kthread.h>
#include <linux/irq_work.h>
--
2.53.0
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH v4 0/2] tracing: Move non-trace_printk prototypes into trace_controls.h
2026-06-25 10:40 [PATCH v4 0/2] tracing: Move non-trace_printk prototypes into trace_controls.h Steven Rostedt
2026-06-25 10:40 ` [PATCH v4 1/2] " Steven Rostedt
2026-06-25 10:40 ` [PATCH v4 2/2] tracing: Remove trace_printk.h from kernel.h Steven Rostedt
@ 2026-06-25 11:05 ` Jani Nikula
2026-07-01 18:51 ` ✓ i915.CI.BAT: success for " Patchwork
2026-07-02 12:41 ` ✓ i915.CI.Full: " Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Jani Nikula @ 2026-06-25 11:05 UTC (permalink / raw)
To: Steven Rostedt, linux-kernel, linux-trace-kernel
Cc: Masami Hiramatsu, Mark Rutland, Mathieu Desnoyers, Andrew Morton,
Linus Torvalds, Sebastian Andrzej Siewior, John Ogness,
Thomas Gleixner, Peter Zijlstra, Julia Lawall, Yury Norov,
linux-doc, linux-kbuild, linuxppc-dev, dri-devel, linux-stm32,
linux-arm-kernel, linux-rdma, linux-usb, linux-ext4, linux-nfs,
kvm, intel-gfx
On Thu, 25 Jun 2026, Steven Rostedt <rostedt@kernel.org> wrote:
> Remove trace_printk.h by creating a trace_controls.h for those places that
> need access to tracing prototypes like tracing_off() and for the places that
> need trace_printk() directly, to have it included directly.
>
> Changse since v3: https://lore.kernel.org/all/20260624081806.120105649@kernel.org/
>
> - Always include trace_controls.h in rcu.h (kernel test robot)
>
> There are other configs that may include tracing_off() in rcu.h besides
> the one that had the include of trace_controls.h. Just always include
> it in that header to be safe.
>
> Steven Rostedt (2):
> tracing: Move non-trace_printk prototypes into trace_controls.h
> tracing: Remove trace_printk.h from kernel.h
>
> ----
> arch/powerpc/kvm/book3s_xics.c | 1 +
> arch/powerpc/xmon/xmon.c | 1 +
> arch/s390/kernel/ipl.c | 1 +
> arch/s390/kernel/machine_kexec.c | 1 +
> drivers/gpu/drm/i915/gt/intel_gtt.h | 1 +
> drivers/gpu/drm/i915/i915_gem.h | 2 ++
For the i915 parts,
Acked-by: Jani Nikula <jani.nikula@intel.com>
for merging via whichever tree.
> drivers/hwtracing/stm/dummy_stm.c | 1 +
> drivers/infiniband/hw/hfi1/trace_dbg.h | 1 +
> drivers/tty/sysrq.c | 1 +
> drivers/usb/early/xhci-dbc.c | 1 +
> fs/ext4/inline.c | 1 +
> include/linux/ftrace.h | 2 ++
> include/linux/kernel.h | 1 -
> include/linux/sunrpc/debug.h | 1 +
> include/linux/trace_controls.h | 54 ++++++++++++++++++++++++++++++++
> include/linux/trace_printk.h | 56 ++--------------------------------
> kernel/debug/debug_core.c | 1 +
> kernel/panic.c | 1 +
> kernel/rcu/rcu.h | 1 +
> kernel/rcu/rcutorture.c | 1 +
> kernel/trace/ring_buffer_benchmark.c | 1 +
> kernel/trace/trace.h | 1 +
> kernel/trace/trace_benchmark.c | 1 +
> lib/sys_info.c | 1 +
> samples/fprobe/fprobe_example.c | 1 +
> samples/ftrace/ftrace-direct-too.c | 1 -
> samples/trace_printk/trace-printk.c | 1 +
> 27 files changed, 82 insertions(+), 55 deletions(-)
> create mode 100644 include/linux/trace_controls.h
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v4 2/2] tracing: Remove trace_printk.h from kernel.h
2026-06-25 10:40 ` [PATCH v4 2/2] tracing: Remove trace_printk.h from kernel.h Steven Rostedt
@ 2026-06-25 23:41 ` Nathan Chancellor
2026-06-26 8:51 ` Steven Rostedt
0 siblings, 1 reply; 9+ messages in thread
From: Nathan Chancellor @ 2026-06-25 23:41 UTC (permalink / raw)
To: Steven Rostedt
Cc: linux-kernel, linux-trace-kernel, Masami Hiramatsu, Mark Rutland,
Mathieu Desnoyers, Andrew Morton, Linus Torvalds,
Sebastian Andrzej Siewior, John Ogness, Thomas Gleixner,
Peter Zijlstra, Julia Lawall, Yury Norov, linux-doc, linux-kbuild,
linuxppc-dev, dri-devel, linux-stm32, linux-arm-kernel,
linux-rdma, linux-usb, linux-ext4, linux-nfs, kvm, intel-gfx
Hi Steve,
On Thu, Jun 25, 2026 at 06:40:09AM -0400, Steven Rostedt wrote:
> From: Steven Rostedt <rostedt@goodmis.org>
>
> There have been complaints about trace_printk.h causing more build time
> for being in kernel.h if it changes. There is also an effort to clean up
> kernel.h to have it not include unneeded header files. Move trace_printk.h
> out of kernel.h and place it in the headers and C files that use it.
>
> Link: https://lore.kernel.org/all/CAHk-=wikCBeVFjVXiY4o-oepdbjAoir5+TcAgtL12c4u1TpZLQ@mail.gmail.com/
>
> Suggested-by: Yury Norov <yury.norov@gmail.com>
> Acked-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
> Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
This patch breaks lib/test_context-analysis.c for me in several
configurations:
In file included from lib/test_context-analysis.c:9:
In file included from include/linux/local_lock.h:5:
include/linux/local_lock_internal.h:46:2: error: use of undeclared identifier '_THIS_IP_'
46 | lock_map_acquire(&l->dep_map);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
include/linux/lockdep.h:541:69: note: expanded from macro 'lock_map_acquire'
541 | #define lock_map_acquire(l) lock_acquire_exclusive(l, 0, 0, NULL, _THIS_IP_)
| ^~~~~~~~~
In file included from lib/test_context-analysis.c:9:
In file included from include/linux/local_lock.h:5:
include/linux/local_lock_internal.h:53:2: error: use of undeclared identifier '_THIS_IP_'
53 | lock_map_acquire_try(&l->dep_map);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
include/linux/lockdep.h:542:73: note: expanded from macro 'lock_map_acquire_try'
542 | #define lock_map_acquire_try(l) lock_acquire_exclusive(l, 0, 1, NULL, _THIS_IP_)
| ^~~~~~~~~
In file included from lib/test_context-analysis.c:9:
In file included from include/linux/local_lock.h:5:
include/linux/local_lock_internal.h:62:2: error: use of undeclared identifier '_THIS_IP_'
62 | lock_map_release(&l->dep_map);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
include/linux/lockdep.h:545:47: note: expanded from macro 'lock_map_release'
545 | #define lock_map_release(l) lock_release(l, _THIS_IP_)
| ^~~~~~~~~
3 errors generated.
The following diff resolves it for me, should I send it as a separate
patch or do you want to just fold it in with a note?
diff --git a/include/linux/lockdep.h b/include/linux/lockdep.h
index 621566345406..2301a701ffbb 100644
--- a/include/linux/lockdep.h
+++ b/include/linux/lockdep.h
@@ -10,6 +10,7 @@
#ifndef __LINUX_LOCKDEP_H
#define __LINUX_LOCKDEP_H
+#include <linux/instruction_pointer.h>
#include <linux/lockdep_types.h>
#include <linux/smp.h>
#include <asm/percpu.h>
--
Cheers,
Nathan
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH v4 2/2] tracing: Remove trace_printk.h from kernel.h
2026-06-25 23:41 ` Nathan Chancellor
@ 2026-06-26 8:51 ` Steven Rostedt
2026-06-26 19:03 ` Nathan Chancellor
0 siblings, 1 reply; 9+ messages in thread
From: Steven Rostedt @ 2026-06-26 8:51 UTC (permalink / raw)
To: Nathan Chancellor
Cc: linux-kernel, linux-trace-kernel, Masami Hiramatsu, Mark Rutland,
Mathieu Desnoyers, Andrew Morton, Linus Torvalds,
Sebastian Andrzej Siewior, John Ogness, Thomas Gleixner,
Peter Zijlstra, Julia Lawall, Yury Norov, linux-doc, linux-kbuild,
linuxppc-dev, dri-devel, linux-stm32, linux-arm-kernel,
linux-rdma, linux-usb, linux-ext4, linux-nfs, kvm, intel-gfx
On Thu, 25 Jun 2026 16:41:58 -0700
Nathan Chancellor <nathan@kernel.org> wrote:
> The following diff resolves it for me, should I send it as a separate
> patch or do you want to just fold it in with a note?
>
> diff --git a/include/linux/lockdep.h b/include/linux/lockdep.h
> index 621566345406..2301a701ffbb 100644
> --- a/include/linux/lockdep.h
> +++ b/include/linux/lockdep.h
> @@ -10,6 +10,7 @@
> #ifndef __LINUX_LOCKDEP_H
> #define __LINUX_LOCKDEP_H
>
> +#include <linux/instruction_pointer.h>
Ah, so the reason for this breakage is because lockdep was relying on
instruction_pointer.h, that just happened to be included in kernel.h
via trace_printk.h.
This is a separate issue, so it should be a separate patch. I'll add it
as patch 1 of this series.
Can you send me the config you used. This didn't trigger in my tests.
Thanks,
-- Steve
> #include <linux/lockdep_types.h>
> #include <linux/smp.h>
> #include <asm/percpu.h>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v4 2/2] tracing: Remove trace_printk.h from kernel.h
2026-06-26 8:51 ` Steven Rostedt
@ 2026-06-26 19:03 ` Nathan Chancellor
0 siblings, 0 replies; 9+ messages in thread
From: Nathan Chancellor @ 2026-06-26 19:03 UTC (permalink / raw)
To: Steven Rostedt
Cc: linux-kernel, linux-trace-kernel, Masami Hiramatsu, Mark Rutland,
Mathieu Desnoyers, Andrew Morton, Linus Torvalds,
Sebastian Andrzej Siewior, John Ogness, Thomas Gleixner,
Peter Zijlstra, Julia Lawall, Yury Norov, linux-doc, linux-kbuild,
linuxppc-dev, dri-devel, linux-stm32, linux-arm-kernel,
linux-rdma, linux-usb, linux-ext4, linux-nfs, kvm, intel-gfx
On Fri, Jun 26, 2026 at 04:51:19AM -0400, Steven Rostedt wrote:
> On Thu, 25 Jun 2026 16:41:58 -0700
> Nathan Chancellor <nathan@kernel.org> wrote:
>
>
> > The following diff resolves it for me, should I send it as a separate
> > patch or do you want to just fold it in with a note?
> >
> > diff --git a/include/linux/lockdep.h b/include/linux/lockdep.h
> > index 621566345406..2301a701ffbb 100644
> > --- a/include/linux/lockdep.h
> > +++ b/include/linux/lockdep.h
> > @@ -10,6 +10,7 @@
> > #ifndef __LINUX_LOCKDEP_H
> > #define __LINUX_LOCKDEP_H
> >
> > +#include <linux/instruction_pointer.h>
>
> Ah, so the reason for this breakage is because lockdep was relying on
> instruction_pointer.h, that just happened to be included in kernel.h
> via trace_printk.h.
Correct.
> This is a separate issue, so it should be a separate patch. I'll add it
> as patch 1 of this series.
Sounds good, thanks!
> Can you send me the config you used. This didn't trigger in my tests.
It is a plain allmodconfig, for example on arm:
$ make -skj"$(nproc)" ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- allmodconfig lib/test_context-analysis.o
In file included from include/linux/local_lock_internal.h:8,
from include/linux/local_lock.h:5,
from lib/test_context-analysis.c:9:
include/linux/local_lock_internal.h: In function 'local_lock_acquire':
include/linux/lockdep.h:541:87: error: '_THIS_IP_' undeclared (first use in this function)
541 | #define lock_map_acquire(l) lock_acquire_exclusive(l, 0, 0, NULL, _THIS_IP_)
| ^~~~~~~~~
include/linux/lockdep.h:509:88: note: in definition of macro 'lock_acquire_exclusive'
509 | #define lock_acquire_exclusive(l, s, t, n, i) lock_acquire(l, s, t, 0, 1, n, i)
| ^
include/linux/local_lock_internal.h:46:9: note: in expansion of macro 'lock_map_acquire'
46 | lock_map_acquire(&l->dep_map);
| ^~~~~~~~~~~~~~~~
include/linux/lockdep.h:541:87: note: each undeclared identifier is reported only once for each function it appears in
...
I also reproduced it on top of allnoconfig:
$ cat allno.config
CONFIG_CONTEXT_ANALYSIS_TEST=y
CONFIG_DEBUG_KERNEL=y
CONFIG_DEBUG_LOCK_ALLOC=y
CONFIG_EXPERT=y
CONFIG_MMU=y
CONFIG_RUNTIME_TESTING_MENU=y
$ make -skj"$(nproc)" ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- KCONFIG_ALLCONFIG=1 clean allnoconfig lib/test_context-analysis.o
<same error as above>
--
Cheers,
Nathan
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for tracing: Move non-trace_printk prototypes into trace_controls.h
2026-06-25 10:40 [PATCH v4 0/2] tracing: Move non-trace_printk prototypes into trace_controls.h Steven Rostedt
` (2 preceding siblings ...)
2026-06-25 11:05 ` [PATCH v4 0/2] tracing: Move non-trace_printk prototypes into trace_controls.h Jani Nikula
@ 2026-07-01 18:51 ` Patchwork
2026-07-02 12:41 ` ✓ i915.CI.Full: " Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-07-01 18:51 UTC (permalink / raw)
To: Steven Rostedt; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 2083 bytes --]
== Series Details ==
Series: tracing: Move non-trace_printk prototypes into trace_controls.h
URL : https://patchwork.freedesktop.org/series/169230/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_18745 -> Patchwork_169230v1
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/index.html
Participating hosts (42 -> 39)
------------------------------
Missing (3): bat-dg2-13 fi-snb-2520m bat-adls-6
Known issues
------------
Here are the changes found in Patchwork_169230v1 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_hdmi_inject@inject-audio:
- fi-tgl-1115g4: [PASS][1] -> [FAIL][2] ([i915#16115])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/fi-tgl-1115g4/igt@kms_hdmi_inject@inject-audio.html
#### Possible fixes ####
* igt@i915_module_load@load:
- fi-bsw-n3050: [DMESG-WARN][3] ([i915#16057]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/fi-bsw-n3050/igt@i915_module_load@load.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/fi-bsw-n3050/igt@i915_module_load@load.html
[i915#16057]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16057
[i915#16115]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16115
Build changes
-------------
* Linux: CI_DRM_18745 -> Patchwork_169230v1
CI-20190529: 20190529
CI_DRM_18745: 0cafeac0ca1baa5846a52337c6b7cd94f830da72 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8989: a8e2cbd2854d7980a9eccecc6e0c801d0824b88f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_169230v1: 0cafeac0ca1baa5846a52337c6b7cd94f830da72 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/index.html
[-- Attachment #2: Type: text/html, Size: 2693 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ i915.CI.Full: success for tracing: Move non-trace_printk prototypes into trace_controls.h
2026-06-25 10:40 [PATCH v4 0/2] tracing: Move non-trace_printk prototypes into trace_controls.h Steven Rostedt
` (3 preceding siblings ...)
2026-07-01 18:51 ` ✓ i915.CI.BAT: success for " Patchwork
@ 2026-07-02 12:41 ` Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2026-07-02 12:41 UTC (permalink / raw)
To: Steven Rostedt; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 92286 bytes --]
== Series Details ==
Series: tracing: Move non-trace_printk prototypes into trace_controls.h
URL : https://patchwork.freedesktop.org/series/169230/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_18745_full -> Patchwork_169230v1_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in Patchwork_169230v1_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ccs@block-copy-compressed:
- shard-rkl: NOTRUN -> [SKIP][1] ([i915#3555] / [i915#9323])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-tglu: NOTRUN -> [SKIP][2] ([i915#3555] / [i915#9323])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-6/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][3] ([i915#6335])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-10/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: NOTRUN -> [ABORT][4] ([i915#15131]) +1 other test abort
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-1/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][5] ([i915#8555])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu: NOTRUN -> [SKIP][6] ([i915#280]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-6/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@suspend:
- shard-dg1: [PASS][7] -> [DMESG-WARN][8] ([i915#4423])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-dg1-16/igt@gem_eio@suspend.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg1-13/igt@gem_eio@suspend.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#4525])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#3539] / [i915#4852])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_reloc@basic-gtt-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#14544] / [i915#3281])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
* igt@gem_exec_reloc@basic-range-active:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#3281]) +4 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-5/igt@gem_exec_reloc@basic-range-active.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#3281]) +3 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#4537] / [i915#4812])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_suspend@basic-s3:
- shard-glk: NOTRUN -> [INCOMPLETE][15] ([i915#13196] / [i915#13356]) +1 other test incomplete
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-glk2/igt@gem_exec_suspend@basic-s3.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#4860])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-5/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-tglu-1: NOTRUN -> [SKIP][17] ([i915#4613]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#14544] / [i915#4613]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@random:
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#4613]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@gem_lmem_swapping@random.html
* igt@gem_lmem_swapping@smem-oom:
- shard-glk: NOTRUN -> [SKIP][20] ([i915#4613]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-glk2/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#4077]) +6 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_wc@write-read:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#4083])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-5/igt@gem_mmap_wc@write-read.html
* igt@gem_partial_pwrite_pread@write-snoop:
- shard-rkl: NOTRUN -> [SKIP][23] ([i915#3282]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@gem_partial_pwrite_pread@write-snoop.html
* igt@gem_pread@exhaustion:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#3282]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-5/igt@gem_pread@exhaustion.html
- shard-glk11: NOTRUN -> [WARN][25] ([i915#2658])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-glk11/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-random:
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#14544] / [i915#3282]) +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#4270])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#5190] / [i915#8428]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_tiled_pread_pwrite:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#4079]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-5/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@access-control:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#3297])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-tglu: NOTRUN -> [SKIP][31] ([i915#3297]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-10/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#14544] / [i915#3297] / [i915#3323])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#3297] / [i915#4880])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-rkl: NOTRUN -> [SKIP][34] ([i915#14544] / [i915#3297])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@relocations:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#3281] / [i915#3297])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@gem_userptr_blits@relocations.html
* igt@gen9_exec_parse@allowed-all:
- shard-tglu: NOTRUN -> [SKIP][36] ([i915#2527] / [i915#2856])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-10/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@allowed-single:
- shard-rkl: NOTRUN -> [SKIP][37] ([i915#2527]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#2856]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-start-param:
- shard-tglu-1: NOTRUN -> [SKIP][39] ([i915#2527] / [i915#2856]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-1/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#14544] / [i915#2527])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_drm_fdinfo@busy-check-all@vecs0:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#11527]) +7 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@i915_drm_fdinfo@busy-check-all@vecs0.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu: NOTRUN -> [SKIP][42] ([i915#8399])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-6/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-tglu: NOTRUN -> [SKIP][43] ([i915#6590]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-10/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu-1: NOTRUN -> [INCOMPLETE][44] ([i915#4817] / [i915#7443])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-1/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@forcewake:
- shard-rkl: [PASS][45] -> [INCOMPLETE][46] ([i915#4817])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@i915_suspend@forcewake.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@i915_suspend@forcewake.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu: NOTRUN -> [SKIP][47] ([i915#7707])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-10/igt@intel_hwmon@hwmon-write.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-rkl: [PASS][48] -> [INCOMPLETE][49] ([i915#12761])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-8/igt@kms_async_flips@async-flip-suspend-resume.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][50] ([i915#12761])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][51] ([i915#5286]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-10/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-tglu-1: NOTRUN -> [SKIP][52] ([i915#5286]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#14544] / [i915#5286]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#14544] / [i915#3828])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-tglu: NOTRUN -> [SKIP][55] ([i915#3828])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#3638])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-1/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4538] / [i915#5190]) +4 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-glk10: NOTRUN -> [SKIP][58] +93 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-glk10/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][59] ([i915#6095]) +39 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-10/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][60] +370 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-glk4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][61] ([i915#12313]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#12313] / [i915#14544])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#12313])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#6095]) +51 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][65] ([i915#6095]) +19 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#6095]) +8 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-glk: NOTRUN -> [INCOMPLETE][67] ([i915#15582]) +1 other test incomplete
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-glk2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][68] ([i915#12313])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#6095]) +147 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg1-16/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-4.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#14544] / [i915#6095]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#14098] / [i915#6095]) +30 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#10307] / [i915#6095]) +39 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-6/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling:
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#3742])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-1/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@degamma:
- shard-dg2: NOTRUN -> [SKIP][75] +4 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-5/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_color_pipeline@plane-lut1d:
- shard-tglu: NOTRUN -> [SKIP][76] ([i915#16471])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-10/igt@kms_chamelium_color_pipeline@plane-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d:
- shard-tglu-1: NOTRUN -> [SKIP][77] ([i915#16471])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-1/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4:
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#14544] / [i915#16471])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html
* igt@kms_chamelium_color_pipeline@plane-lut3d-green-only:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#16471])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html
* igt@kms_chamelium_edid@dp-edid-read:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#11151] / [i915#7828]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@kms_chamelium_edid@dp-edid-read.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#11151] / [i915#7828]) +3 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-5/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-tglu: NOTRUN -> [SKIP][82] ([i915#11151] / [i915#7828]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-6/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#11151] / [i915#14544] / [i915#7828])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-tglu-1: NOTRUN -> [SKIP][84] ([i915#11151] / [i915#7828]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][85] ([i915#15330] / [i915#3116] / [i915#3299])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-6/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-tglu-1: NOTRUN -> [SKIP][86] ([i915#15330] / [i915#3116] / [i915#3299])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][87] ([i915#15330])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-10/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#15865])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-1/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@uevent:
- shard-rkl: NOTRUN -> [SKIP][89] ([i915#14544] / [i915#15865]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#13049])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#3555])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: NOTRUN -> [FAIL][92] ([i915#13566]) +1 other test fail
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#13049] / [i915#14544]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-tglu: NOTRUN -> [SKIP][94] ([i915#3555]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-10/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#3555])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-5/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][96] ([i915#13566])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][97] ([i915#12358] / [i915#14152] / [i915#7882])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-glk1/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][98] ([i915#12358] / [i915#14152])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-glk1/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#14544]) +20 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#13046] / [i915#5354]) +2 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-tglu-1: NOTRUN -> [SKIP][101] ([i915#9067])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#4103])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][103] ([i915#4103])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_display_modes@extended-mode-basic:
- shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#13691])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-1/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-tglu: NOTRUN -> [SKIP][105] ([i915#13749])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-10/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#13707])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-basic-ultrajoiner:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#16361])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-5/igt@kms_dsc@dsc-basic-ultrajoiner.html
* igt@kms_dsc@dsc-with-bpc-ultrajoiner:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#14544] / [i915#16361]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-ultrajoiner.html
* igt@kms_dsc@dsc-with-output-formats-bigjoiner:
- shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#16361]) +2 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner:
- shard-tglu: NOTRUN -> [SKIP][110] ([i915#16361]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-10/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-rkl: [PASS][111] -> [INCOMPLETE][112] ([i915#9878])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-5/igt@kms_fbcon_fbt@fbc-suspend.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-3/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#16084])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#16081])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#16081])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-5/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#9337])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-1/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#9934]) +4 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-tglu-1: NOTRUN -> [SKIP][118] ([i915#3637] / [i915#9934]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-1/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#3637] / [i915#9934]) +2 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#14544] / [i915#9934]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#9934]) +3 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][122] ([i915#12745] / [i915#4839])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-glk4/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][123] ([i915#12745])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-glk4/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip@plain-flip-ts-check:
- shard-dg2: [PASS][124] -> [FAIL][125] ([i915#14600]) +1 other test fail
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-dg2-4/igt@kms_flip@plain-flip-ts-check.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-4/igt@kms_flip@plain-flip-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#15643]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#14544] / [i915#15643])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][128] ([i915#15643]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#15643]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][130] +41 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#1825]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#5439])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-glk: [PASS][133] -> [SKIP][134] +4 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-glk1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-render:
- shard-rkl: [PASS][135] -> [SKIP][136] ([i915#15989]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-render.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][137] +23 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#15989]) +8 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-5/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#14544] / [i915#1825]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#15991] / [i915#5354]) +12 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#15102] / [i915#3023]) +4 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#5439])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-indfb-fliptrack-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#15102]) +25 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#15102]) +8 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte:
- shard-rkl: NOTRUN -> [SKIP][145] ([i915#14544] / [i915#15102]) +6 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#15990]) +4 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#5439])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-4.html
* igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#15989]) +10 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-10/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite:
- shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#15989]) +8 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite.html
* igt@kms_frontbuffer_tracking@hdr-rgb565-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#15989]) +3 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-pwrite.html
* igt@kms_frontbuffer_tracking@hdr-suspend:
- shard-glk11: NOTRUN -> [INCOMPLETE][151] ([i915#16056])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-glk11/igt@kms_frontbuffer_tracking@hdr-suspend.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#15102]) +14 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#15990] / [i915#8708]) +7 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][154] +49 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#14544] / [i915#15102] / [i915#3023]) +4 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#15102]) +18 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][157] ([i915#15991]) +22 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-mmap-gtt:
- shard-glk11: NOTRUN -> [SKIP][158] +144 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-glk11/igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-mmap-gtt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#12713] / [i915#16518])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle-dpms:
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#8228])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-6/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#15458])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-1/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#15458])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-5/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#14544] / [i915#15460])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_mst@mst-suspend-read-crc:
- shard-tglu: NOTRUN -> [SKIP][164] ([i915#16451])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-6/igt@kms_mst@mst-suspend-read-crc.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#6301])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-5/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1:
- shard-glk11: NOTRUN -> [INCOMPLETE][166] ([i915#12756] / [i915#13409] / [i915#13476]) +1 other test incomplete
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-glk11/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#15709]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-5/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#15709]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-10/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#14544] / [i915#15709])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#15709]) +2 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#16386]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#15709])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#13958])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#13958])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-10/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#13958] / [i915#14544])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_pm_dc@dc5-psr:
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#15948])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-6/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#15739])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-10/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [PASS][178] -> [SKIP][179] ([i915#9340])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-6/igt@kms_pm_lpsp@kms-lpsp.html
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#14544] / [i915#9340])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2: [PASS][181] -> [SKIP][182] ([i915#15073])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-dg2-3/igt@kms_pm_rpm@dpms-non-lpsp.html
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [PASS][183] -> [SKIP][184] ([i915#15073])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg1: [PASS][185] -> [SKIP][186] ([i915#15073]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress.html
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@package-g7:
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#15403])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-10/igt@kms_pm_rpm@package-g7.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#6524] / [i915#6805])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@kms_prime@basic-crc-vgem.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][189] ([i915#11520]) +9 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-glk6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#11520] / [i915#14544]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#11520]) +2 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#11520]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-1/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][193] ([i915#11520]) +3 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-glk10: NOTRUN -> [SKIP][194] ([i915#11520]) +2 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-glk10/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][195] ([i915#11520]) +4 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-10/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-glk11: NOTRUN -> [SKIP][196] ([i915#11520]) +5 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-glk11/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#9683])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-10/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][198] ([i915#9683])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-1/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-suspend:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#1072] / [i915#9732]) +5 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@kms_psr@fbc-pr-suspend.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@pr-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#1072] / [i915#9732]) +9 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@kms_psr@pr-cursor-blt.html
* igt@kms_psr@pr-dpms:
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#9732]) +8 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-6/igt@kms_psr@pr-dpms.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#9732]) +7 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#15949])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-10/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-glk: NOTRUN -> [INCOMPLETE][205] ([i915#15492] / [i915#16184])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-glk2/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#5289])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#12755] / [i915#15867] / [i915#5190])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#5289])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#14544] / [i915#3555])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_selftest@drm_framebuffer:
- shard-glk10: NOTRUN -> [ABORT][210] ([i915#13179]) +1 other test abort
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-glk10/igt@kms_selftest@drm_framebuffer.html
* igt@kms_vrr@max-min:
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#14544] / [i915#9906])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#9906])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-6/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf_pmu@rc6-suspend:
- shard-glk: [PASS][213] -> [INCOMPLETE][214] ([i915#13356] / [i915#16236])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-glk9/igt@perf_pmu@rc6-suspend.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-glk8/igt@perf_pmu@rc6-suspend.html
* igt@prime_vgem@basic-fence-read:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#3291] / [i915#3708])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-5/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#3291] / [i915#3708])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#14544] / [i915#3708])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#3708])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-1/igt@prime_vgem@fence-flip-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#9917])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-8/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-tglu: NOTRUN -> [SKIP][220] ([i915#16066]) +9 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-tglu-10/igt@sriov_basic@enable-vfs-autoprobe-on.html
#### Possible fixes ####
* igt@gem_eio@hibernate:
- shard-rkl: [ABORT][221] ([i915#7975]) -> [PASS][222]
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-1/igt@gem_eio@hibernate.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@gem_eio@hibernate.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-rkl: [INCOMPLETE][223] ([i915#12358] / [i915#14152]) -> [PASS][224]
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-6/igt@kms_cursor_crc@cursor-suspend.html
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-indfb-fliptrack-mmap-gtt:
- shard-glk: [SKIP][225] -> [PASS][226] +10 other tests pass
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-glk9/igt@kms_frontbuffer_tracking@fbchdr-2p-indfb-fliptrack-mmap-gtt.html
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbchdr-modesetfrombusy:
- shard-rkl: [SKIP][227] ([i915#15989]) -> [PASS][228] +4 other tests pass
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@kms_frontbuffer_tracking@fbchdr-modesetfrombusy.html
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-modesetfrombusy.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg1: [SKIP][229] ([i915#15073]) -> [PASS][230]
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-dg1-14/igt@kms_pm_rpm@dpms-non-lpsp.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg1-17/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [SKIP][231] ([i915#15073]) -> [PASS][232]
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp-stress.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [SKIP][233] ([i915#15073]) -> [PASS][234] +1 other test pass
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_properties@crtc-properties-legacy:
- shard-dg1: [DMESG-WARN][235] ([i915#4423]) -> [PASS][236] +1 other test pass
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-dg1-17/igt@kms_properties@crtc-properties-legacy.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg1-18/igt@kms_properties@crtc-properties-legacy.html
* igt@perf_pmu@gt-awake:
- shard-rkl: [FAIL][237] -> [PASS][238]
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-2/igt@perf_pmu@gt-awake.html
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-7/igt@perf_pmu@gt-awake.html
#### Warnings ####
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: [SKIP][239] ([i915#9323]) -> [SKIP][240] ([i915#14544] / [i915#9323])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@gem_ccs@block-multicopy-compressed.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: [SKIP][241] ([i915#14544] / [i915#6344]) -> [SKIP][242] ([i915#6344])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-rkl: [SKIP][243] ([i915#3281]) -> [SKIP][244] ([i915#14544] / [i915#3281]) +4 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-cpu-active.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: [SKIP][245] ([i915#14544] / [i915#4613]) -> [SKIP][246] ([i915#4613])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-6/igt@gem_lmem_swapping@parallel-multi.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@random-engines:
- shard-rkl: [SKIP][247] ([i915#4613]) -> [SKIP][248] ([i915#14544] / [i915#4613]) +1 other test skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@gem_lmem_swapping@random-engines.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@gem_lmem_swapping@random-engines.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: [SKIP][249] ([i915#8411]) -> [SKIP][250] ([i915#14544] / [i915#8411]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-rkl: [SKIP][251] ([i915#3297]) -> [SKIP][252] ([i915#14544] / [i915#3297])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@gem_userptr_blits@unsync-overlap.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@gem_userptr_blits@unsync-overlap.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-rkl: [SKIP][253] ([i915#2527]) -> [SKIP][254] ([i915#14544] / [i915#2527])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@gen9_exec_parse@unaligned-jump.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-rkl: [SKIP][255] ([i915#16080] / [i915#16166]) -> [SKIP][256] ([i915#14544] / [i915#16080] / [i915#16166])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-rkl: [SKIP][257] ([i915#5286]) -> [SKIP][258] ([i915#14544] / [i915#5286]) +3 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: [SKIP][259] ([i915#14544] / [i915#5286]) -> [SKIP][260] ([i915#5286])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][261] ([i915#3638]) -> [SKIP][262] ([i915#14544] / [i915#3638]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs:
- shard-rkl: [SKIP][263] ([i915#14098] / [i915#6095]) -> [SKIP][264] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][265] ([i915#12313]) -> [SKIP][266] ([i915#12313] / [i915#14544])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][267] ([i915#6095]) -> [SKIP][268] ([i915#14544] / [i915#6095]) +5 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d:
- shard-rkl: [SKIP][269] ([i915#16471]) -> [SKIP][270] ([i915#14544] / [i915#16471]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html
* igt@kms_chamelium_hpd@dp-hpd-fast:
- shard-rkl: [SKIP][271] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][272] ([i915#11151] / [i915#7828]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-fast.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: [SKIP][273] ([i915#11151] / [i915#7828]) -> [SKIP][274] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-fast.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: [SKIP][275] ([i915#15330] / [i915#3116]) -> [SKIP][276] ([i915#14544] / [i915#15330] / [i915#3116])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-rkl: [SKIP][277] ([i915#3555]) -> [SKIP][278] ([i915#14544] / [i915#3555])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@kms_cursor_crc@cursor-offscreen-max-size.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-rkl: [SKIP][279] ([i915#13049] / [i915#14544]) -> [SKIP][280] ([i915#13049])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x512.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: [SKIP][281] ([i915#4103]) -> [SKIP][282] ([i915#14544] / [i915#4103])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_dsc@dsc-fractional-bpp-ultrajoiner:
- shard-rkl: [SKIP][283] ([i915#16361]) -> [SKIP][284] ([i915#14544] / [i915#16361]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp-ultrajoiner.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-ultrajoiner.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-rkl: [SKIP][285] ([i915#9934]) -> [SKIP][286] ([i915#14544] / [i915#9934]) +4 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@kms_flip@2x-blocking-wf_vblank.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: [INCOMPLETE][287] ([i915#12314] / [i915#12745] / [i915#4839]) -> [INCOMPLETE][288] ([i915#12745] / [i915#4839] / [i915#6113])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-glk8/igt@kms_flip@2x-flip-vs-suspend.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-glk1/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2:
- shard-glk: [INCOMPLETE][289] ([i915#12314] / [i915#12745]) -> [INCOMPLETE][290] ([i915#12745])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-glk8/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-glk1/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: [INCOMPLETE][291] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][292] ([i915#12745] / [i915#4839])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-glk3/igt@kms_flip@flip-vs-suspend.html
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-glk6/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: [INCOMPLETE][293] ([i915#12745] / [i915#6113]) -> [INCOMPLETE][294] ([i915#12745])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-glk3/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-glk6/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-rkl: [SKIP][295] ([i915#15643]) -> [SKIP][296] ([i915#14544] / [i915#15643]) +1 other test skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-pwrite:
- shard-rkl: [SKIP][297] -> [SKIP][298] ([i915#14544]) +29 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-pwrite.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][299] ([i915#10433] / [i915#15102]) -> [SKIP][300] ([i915#15102])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][301] ([i915#1825]) -> [SKIP][302] ([i915#14544] / [i915#1825]) +2 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-dg1: [SKIP][303] ([i915#4423]) -> [SKIP][304]
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-dg1-17/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-draw-pwrite.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-dg1-18/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][305] ([i915#15102]) -> [SKIP][306] ([i915#14544] / [i915#15102]) +6 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-rkl: [SKIP][307] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][308] ([i915#15102] / [i915#3023]) +2 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt:
- shard-rkl: [SKIP][309] ([i915#15102] / [i915#3023]) -> [SKIP][310] ([i915#14544] / [i915#15102] / [i915#3023]) +11 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][311] ([i915#14544] / [i915#15102]) -> [SKIP][312] ([i915#15102]) +2 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: [SKIP][313] ([i915#14544]) -> [SKIP][314] +8 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: [SKIP][315] ([i915#1187] / [i915#12713] / [i915#16490]) -> [SKIP][316] ([i915#12713] / [i915#16490])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-mtlp-4/igt@kms_hdr@brightness-with-hdr.html
- shard-rkl: [SKIP][317] ([i915#12713]) -> [SKIP][318] ([i915#1187] / [i915#12713])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-5/igt@kms_hdr@brightness-with-hdr.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-rkl: [SKIP][319] ([i915#15459]) -> [SKIP][320] ([i915#14544] / [i915#15459])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-rkl: [SKIP][321] ([i915#14544] / [i915#15709]) -> [SKIP][322] ([i915#15709])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-rkl: [SKIP][323] ([i915#13958]) -> [SKIP][324] ([i915#13958] / [i915#14544])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@kms_plane_multiple@2x-tiling-yf.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-rkl: [SKIP][325] ([i915#11520]) -> [SKIP][326] ([i915#11520] / [i915#14544]) +1 other test skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr@fbc-psr-cursor-blt:
- shard-rkl: [SKIP][327] ([i915#1072] / [i915#9732]) -> [SKIP][328] ([i915#1072] / [i915#14544] / [i915#9732]) +5 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@kms_psr@fbc-psr-cursor-blt.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-blt.html
* igt@kms_psr@psr2-cursor-plane-move:
- shard-rkl: [SKIP][329] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][330] ([i915#1072] / [i915#9732]) +3 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-6/igt@kms_psr@psr2-cursor-plane-move.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@kms_psr@psr2-cursor-plane-move.html
* igt@kms_vrr@flip-basic:
- shard-rkl: [SKIP][331] ([i915#15243] / [i915#3555]) -> [SKIP][332] ([i915#14544] / [i915#15243] / [i915#3555])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@kms_vrr@flip-basic.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-rkl: [SKIP][333] ([i915#14544] / [i915#9906]) -> [SKIP][334] ([i915#9906])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-virtual.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: [SKIP][335] ([i915#14544] / [i915#2436]) -> [SKIP][336] ([i915#2436])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-2/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: [SKIP][337] ([i915#2433]) -> [SKIP][338] ([i915#14544] / [i915#2433])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18745/shard-rkl-4/igt@perf@unprivileged-single-ctx-counters.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
[i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
[i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989
[i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990
[i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991
[i915#16056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16056
[i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066
[i915#16080]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16080
[i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081
[i915#16084]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16084
[i915#16166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16166
[i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184
[i915#16236]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16236
[i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361
[i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386
[i915#16451]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16451
[i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471
[i915#16490]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16490
[i915#16518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16518
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* Linux: CI_DRM_18745 -> Patchwork_169230v1
CI-20190529: 20190529
CI_DRM_18745: 0cafeac0ca1baa5846a52337c6b7cd94f830da72 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8989: a8e2cbd2854d7980a9eccecc6e0c801d0824b88f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_169230v1: 0cafeac0ca1baa5846a52337c6b7cd94f830da72 @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_169230v1/index.html
[-- Attachment #2: Type: text/html, Size: 123144 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-07-02 12:41 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-25 10:40 [PATCH v4 0/2] tracing: Move non-trace_printk prototypes into trace_controls.h Steven Rostedt
2026-06-25 10:40 ` [PATCH v4 1/2] " Steven Rostedt
2026-06-25 10:40 ` [PATCH v4 2/2] tracing: Remove trace_printk.h from kernel.h Steven Rostedt
2026-06-25 23:41 ` Nathan Chancellor
2026-06-26 8:51 ` Steven Rostedt
2026-06-26 19:03 ` Nathan Chancellor
2026-06-25 11:05 ` [PATCH v4 0/2] tracing: Move non-trace_printk prototypes into trace_controls.h Jani Nikula
2026-07-01 18:51 ` ✓ i915.CI.BAT: success for " Patchwork
2026-07-02 12:41 ` ✓ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox