* [PATCH] drm/xe/xe_ggtt: No need to use xe_pm_runtime_get_noresume
@ 2024-04-29 16:29 Ashutosh Dixit
2024-04-29 16:34 ` ✓ CI.Patch_applied: success for " Patchwork
` (6 more replies)
0 siblings, 7 replies; 9+ messages in thread
From: Ashutosh Dixit @ 2024-04-29 16:29 UTC (permalink / raw)
To: intel-xe; +Cc: Rodrigo Vivi, Matthew Auld, intel-gfx
Switching from xe_device_mem_access_get/put to xe_pm_runtime_get/put
results in the following WARNING in xe_oa:
[11614.356168] xe 0000:00:02.0: Missing outer runtime PM protection
[11614.356187] WARNING: CPU: 1 PID: 13075 at drivers/gpu/drm/xe/xe_pm.c:549 xe_pm_runtime_get_noresume+0x60/0x80 [xe]
...
[11614.356377] Call Trace:
[11614.356379] <TASK>
[11614.356381] ? __warn+0x7e/0x180
[11614.356387] ? xe_pm_runtime_get_noresume+0x60/0x80 [xe]
[11614.356507] xe_ggtt_remove_node+0x22/0x80 [xe]
[11614.356546] xe_ttm_bo_destroy+0xea/0xf0 [xe]
[11614.356579] xe_oa_stream_destroy+0xf7/0x120 [xe]
[11614.356627] xe_oa_release+0x35/0xc0 [xe]
[11614.356673] __fput+0xa1/0x2d0
[11614.356679] __x64_sys_close+0x37/0x80
[11614.356697] do_syscall_64+0x6d/0x140
[11614.356700] entry_SYSCALL_64_after_hwframe+0x71/0x79
[11614.356702] RIP: 0033:0x7f2b37314f67
There seems to be no reason to use xe_pm_runtime_get_noresume in xe_ggtt
functions. Just use xe_pm_runtime_get.
Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
---
drivers/gpu/drm/xe/xe_ggtt.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_ggtt.c b/drivers/gpu/drm/xe/xe_ggtt.c
index 0d541f55b4fc..8548a2eb3b32 100644
--- a/drivers/gpu/drm/xe/xe_ggtt.c
+++ b/drivers/gpu/drm/xe/xe_ggtt.c
@@ -404,7 +404,7 @@ static int __xe_ggtt_insert_bo_at(struct xe_ggtt *ggtt, struct xe_bo *bo,
if (err)
return err;
- xe_pm_runtime_get_noresume(tile_to_xe(ggtt->tile));
+ xe_pm_runtime_get(tile_to_xe(ggtt->tile));
mutex_lock(&ggtt->lock);
err = drm_mm_insert_node_in_range(&ggtt->mm, &bo->ggtt_node, bo->size,
alignment, 0, start, end, 0);
@@ -433,7 +433,7 @@ int xe_ggtt_insert_bo(struct xe_ggtt *ggtt, struct xe_bo *bo)
void xe_ggtt_remove_node(struct xe_ggtt *ggtt, struct drm_mm_node *node,
bool invalidate)
{
- xe_pm_runtime_get_noresume(tile_to_xe(ggtt->tile));
+ xe_pm_runtime_get(tile_to_xe(ggtt->tile));
mutex_lock(&ggtt->lock);
xe_ggtt_clear(ggtt, node->start, node->size);
--
2.41.0
^ permalink raw reply related [flat|nested] 9+ messages in thread* ✓ CI.Patch_applied: success for drm/xe/xe_ggtt: No need to use xe_pm_runtime_get_noresume 2024-04-29 16:29 [PATCH] drm/xe/xe_ggtt: No need to use xe_pm_runtime_get_noresume Ashutosh Dixit @ 2024-04-29 16:34 ` Patchwork 2024-04-29 16:34 ` ✓ CI.checkpatch: " Patchwork ` (5 subsequent siblings) 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-04-29 16:34 UTC (permalink / raw) To: Ashutosh Dixit; +Cc: intel-xe == Series Details == Series: drm/xe/xe_ggtt: No need to use xe_pm_runtime_get_noresume URL : https://patchwork.freedesktop.org/series/133031/ State : success == Summary == === Applying kernel patches on branch 'drm-tip' with base: === Base commit: acf512bb5ff4 drm-tip: 2024y-04m-29d-15h-11m-22s UTC integration manifest === git am output follows === Applying: drm/xe/xe_ggtt: No need to use xe_pm_runtime_get_noresume ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ CI.checkpatch: success for drm/xe/xe_ggtt: No need to use xe_pm_runtime_get_noresume 2024-04-29 16:29 [PATCH] drm/xe/xe_ggtt: No need to use xe_pm_runtime_get_noresume Ashutosh Dixit 2024-04-29 16:34 ` ✓ CI.Patch_applied: success for " Patchwork @ 2024-04-29 16:34 ` Patchwork 2024-04-29 16:35 ` ✓ CI.KUnit: " Patchwork ` (4 subsequent siblings) 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-04-29 16:34 UTC (permalink / raw) To: Ashutosh Dixit; +Cc: intel-xe == Series Details == Series: drm/xe/xe_ggtt: No need to use xe_pm_runtime_get_noresume URL : https://patchwork.freedesktop.org/series/133031/ State : success == Summary == + KERNEL=/kernel + git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt Cloning into 'mt'... warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/ + git -C mt rev-list -n1 origin/master 0daf0be5bb95eb0a0e42275e00a0e42d8d8fd543 + cd /kernel + git config --global --add safe.directory /kernel + git log -n1 commit c41d51bb1c5a41573232326508bb534351601e43 Author: Ashutosh Dixit <ashutosh.dixit@intel.com> Date: Mon Apr 29 09:29:15 2024 -0700 drm/xe/xe_ggtt: No need to use xe_pm_runtime_get_noresume Switching from xe_device_mem_access_get/put to xe_pm_runtime_get/put results in the following WARNING in xe_oa: [11614.356168] xe 0000:00:02.0: Missing outer runtime PM protection [11614.356187] WARNING: CPU: 1 PID: 13075 at drivers/gpu/drm/xe/xe_pm.c:549 xe_pm_runtime_get_noresume+0x60/0x80 [xe] ... [11614.356377] Call Trace: [11614.356379] <TASK> [11614.356381] ? __warn+0x7e/0x180 [11614.356387] ? xe_pm_runtime_get_noresume+0x60/0x80 [xe] [11614.356507] xe_ggtt_remove_node+0x22/0x80 [xe] [11614.356546] xe_ttm_bo_destroy+0xea/0xf0 [xe] [11614.356579] xe_oa_stream_destroy+0xf7/0x120 [xe] [11614.356627] xe_oa_release+0x35/0xc0 [xe] [11614.356673] __fput+0xa1/0x2d0 [11614.356679] __x64_sys_close+0x37/0x80 [11614.356697] do_syscall_64+0x6d/0x140 [11614.356700] entry_SYSCALL_64_after_hwframe+0x71/0x79 [11614.356702] RIP: 0033:0x7f2b37314f67 There seems to be no reason to use xe_pm_runtime_get_noresume in xe_ggtt functions. Just use xe_pm_runtime_get. Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com> + /mt/dim checkpatch acf512bb5ff4d2e8ed5ef67444b6c1f92a222d77 drm-intel c41d51bb1c5a drm/xe/xe_ggtt: No need to use xe_pm_runtime_get_noresume ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ CI.KUnit: success for drm/xe/xe_ggtt: No need to use xe_pm_runtime_get_noresume 2024-04-29 16:29 [PATCH] drm/xe/xe_ggtt: No need to use xe_pm_runtime_get_noresume Ashutosh Dixit 2024-04-29 16:34 ` ✓ CI.Patch_applied: success for " Patchwork 2024-04-29 16:34 ` ✓ CI.checkpatch: " Patchwork @ 2024-04-29 16:35 ` Patchwork 2024-04-29 17:17 ` ✗ Fi.CI.SPARSE: warning " Patchwork ` (3 subsequent siblings) 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-04-29 16:35 UTC (permalink / raw) To: Ashutosh Dixit; +Cc: intel-xe == Series Details == Series: drm/xe/xe_ggtt: No need to use xe_pm_runtime_get_noresume URL : https://patchwork.freedesktop.org/series/133031/ State : success == Summary == + trap cleanup EXIT + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig [16:34:50] Configuring KUnit Kernel ... Generating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [16:34:54] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make ARCH=um O=.kunit --jobs=48 ../arch/x86/um/user-offsets.c:17:6: warning: no previous prototype for ‘foo’ [-Wmissing-prototypes] 17 | void foo(void) | ^~~ In file included from ../arch/um/kernel/asm-offsets.c:1: ../arch/x86/um/shared/sysdep/kernel-offsets.h:9:6: warning: no previous prototype for ‘foo’ [-Wmissing-prototypes] 9 | void foo(void) | ^~~ ../arch/x86/um/bugs_64.c:9:6: warning: no previous prototype for ‘arch_check_bugs’ [-Wmissing-prototypes] 9 | void arch_check_bugs(void) | ^~~~~~~~~~~~~~~ ../arch/x86/um/bugs_64.c:13:6: warning: no previous prototype for ‘arch_examine_signal’ [-Wmissing-prototypes] 13 | void arch_examine_signal(int sig, struct uml_pt_regs *regs) | ^~~~~~~~~~~~~~~~~~~ ../arch/x86/um/fault.c:18:5: warning: no previous prototype for ‘arch_fixup’ [-Wmissing-prototypes] 18 | int arch_fixup(unsigned long address, struct uml_pt_regs *regs) | ^~~~~~~~~~ ../arch/x86/um/os-Linux/registers.c:146:15: warning: no previous prototype for ‘get_thread_reg’ [-Wmissing-prototypes] 146 | unsigned long get_thread_reg(int reg, jmp_buf *buf) | ^~~~~~~~~~~~~~ ../arch/x86/um/vdso/um_vdso.c:16:5: warning: no previous prototype for ‘__vdso_clock_gettime’ [-Wmissing-prototypes] 16 | int __vdso_clock_gettime(clockid_t clock, struct __kernel_old_timespec *ts) | ^~~~~~~~~~~~~~~~~~~~ ../arch/x86/um/vdso/um_vdso.c:30:5: warning: no previous prototype for ‘__vdso_gettimeofday’ [-Wmissing-prototypes] 30 | int __vdso_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz) | ^~~~~~~~~~~~~~~~~~~ ../arch/x86/um/vdso/um_vdso.c:44:21: warning: no previous prototype for ‘__vdso_time’ [-Wmissing-prototypes] 44 | __kernel_old_time_t __vdso_time(__kernel_old_time_t *t) | ^~~~~~~~~~~ ../arch/x86/um/vdso/um_vdso.c:57:1: warning: no previous prototype for ‘__vdso_getcpu’ [-Wmissing-prototypes] 57 | __vdso_getcpu(unsigned *cpu, unsigned *node, struct getcpu_cache *unused) | ^~~~~~~~~~~~~ ../arch/x86/um/os-Linux/mcontext.c:7:6: warning: no previous prototype for ‘get_regs_from_mc’ [-Wmissing-prototypes] 7 | void get_regs_from_mc(struct uml_pt_regs *regs, mcontext_t *mc) | ^~~~~~~~~~~~~~~~ ../arch/um/os-Linux/skas/process.c:107:6: warning: no previous prototype for ‘wait_stub_done’ [-Wmissing-prototypes] 107 | void wait_stub_done(int pid) | ^~~~~~~~~~~~~~ ../arch/um/os-Linux/skas/process.c:683:6: warning: no previous prototype for ‘__switch_mm’ [-Wmissing-prototypes] 683 | void __switch_mm(struct mm_id *mm_idp) | ^~~~~~~~~~~ ../arch/um/kernel/skas/process.c:36:12: warning: no previous prototype for ‘start_uml’ [-Wmissing-prototypes] 36 | int __init start_uml(void) | ^~~~~~~~~ ../arch/x86/um/ptrace_64.c:111:5: warning: no previous prototype for ‘poke_user’ [-Wmissing-prototypes] 111 | int poke_user(struct task_struct *child, long addr, long data) | ^~~~~~~~~ ../arch/x86/um/ptrace_64.c:171:5: warning: no previous prototype for ‘peek_user’ [-Wmissing-prototypes] 171 | int peek_user(struct task_struct *child, long addr, long data) | ^~~~~~~~~ ../arch/um/kernel/skas/mmu.c:17:5: warning: no previous prototype for ‘init_new_context’ [-Wmissing-prototypes] 17 | int init_new_context(struct task_struct *task, struct mm_struct *mm) | ^~~~~~~~~~~~~~~~ ../arch/um/kernel/skas/mmu.c:60:6: warning: no previous prototype for ‘destroy_context’ [-Wmissing-prototypes] 60 | void destroy_context(struct mm_struct *mm) | ^~~~~~~~~~~~~~~ ../arch/um/os-Linux/main.c:187:7: warning: no previous prototype for ‘__wrap_malloc’ [-Wmissing-prototypes] 187 | void *__wrap_malloc(int size) | ^~~~~~~~~~~~~ ../arch/um/os-Linux/main.c:208:7: warning: no previous prototype for ‘__wrap_calloc’ [-Wmissing-prototypes] 208 | void *__wrap_calloc(int n, int size) | ^~~~~~~~~~~~~ ../arch/um/os-Linux/main.c:222:6: warning: no previous prototype for ‘__wrap_free’ [-Wmissing-prototypes] 222 | void __wrap_free(void *ptr) | ^~~~~~~~~~~ ../arch/um/os-Linux/mem.c:28:6: warning: no previous prototype for ‘kasan_map_memory’ [-Wmissing-prototypes] 28 | void kasan_map_memory(void *start, size_t len) | ^~~~~~~~~~~~~~~~ ../arch/um/os-Linux/mem.c:212:13: warning: no previous prototype for ‘check_tmpexec’ [-Wmissing-prototypes] 212 | void __init check_tmpexec(void) | ^~~~~~~~~~~~~ ../arch/um/os-Linux/signal.c:75:6: warning: no previous prototype for ‘sig_handler’ [-Wmissing-prototypes] 75 | void sig_handler(int sig, struct siginfo *si, mcontext_t *mc) | ^~~~~~~~~~~ ../arch/um/os-Linux/signal.c:111:6: warning: no previous prototype for ‘timer_alarm_handler’ [-Wmissing-prototypes] 111 | void timer_alarm_handler(int sig, struct siginfo *unused_si, mcontext_t *mc) | ^~~~~~~~~~~~~~~~~~~ ../arch/um/os-Linux/start_up.c:301:12: warning: no previous prototype for ‘parse_iomem’ [-Wmissing-prototypes] 301 | int __init parse_iomem(char *str, int *add) | ^~~~~~~~~~~ ../arch/x86/um/signal.c:560:6: warning: no previous prototype for ‘sys_rt_sigreturn’ [-Wmissing-prototypes] 560 | long sys_rt_sigreturn(void) | ^~~~~~~~~~~~~~~~ ../arch/um/kernel/mem.c:202:8: warning: no previous prototype for ‘pgd_alloc’ [-Wmissing-prototypes] 202 | pgd_t *pgd_alloc(struct mm_struct *mm) | ^~~~~~~~~ ../arch/um/kernel/mem.c:215:7: warning: no previous prototype for ‘uml_kmalloc’ [-Wmissing-prototypes] 215 | void *uml_kmalloc(int size, int flags) | ^~~~~~~~~~~ ../arch/x86/um/syscalls_64.c:48:6: warning: no previous prototype for ‘arch_switch_to’ [-Wmissing-prototypes] 48 | void arch_switch_to(struct task_struct *to) | ^~~~~~~~~~~~~~ ../arch/um/kernel/process.c:51:5: warning: no previous prototype for ‘pid_to_processor_id’ [-Wmissing-prototypes] 51 | int pid_to_processor_id(int pid) | ^~~~~~~~~~~~~~~~~~~ ../arch/um/kernel/process.c:87:7: warning: no previous prototype for ‘__switch_to’ [-Wmissing-prototypes] 87 | void *__switch_to(struct task_struct *from, struct task_struct *to) | ^~~~~~~~~~~ ../arch/um/kernel/process.c:140:6: warning: no previous prototype for ‘fork_handler’ [-Wmissing-prototypes] 140 | void fork_handler(void) | ^~~~~~~~~~~~ ../arch/um/kernel/process.c:217:6: warning: no previous prototype for ‘arch_cpu_idle’ [-Wmissing-prototypes] 217 | void arch_cpu_idle(void) | ^~~~~~~~~~~~~ ../arch/um/kernel/process.c:253:5: warning: no previous prototype for ‘copy_to_user_proc’ [-Wmissing-prototypes] 253 | int copy_to_user_proc(void __user *to, void *from, int size) | ^~~~~~~~~~~~~~~~~ ../arch/um/kernel/process.c:263:5: warning: no previous prototype for ‘clear_user_proc’ [-Wmissing-prototypes] 263 | int clear_user_proc(void __user *buf, int size) | ^~~~~~~~~~~~~~~ ../arch/um/kernel/process.c:271:6: warning: no previous prototype for ‘set_using_sysemu’ [-Wmissing-prototypes] 271 | void set_using_sysemu(int value) | ^~~~~~~~~~~~~~~~ ../arch/um/kernel/process.c:278:5: warning: no previous prototype for ‘get_using_sysemu’ [-Wmissing-prototypes] 278 | int get_using_sysemu(void) | ^~~~~~~~~~~~~~~~ ../arch/um/kernel/process.c:316:12: warning: no previous prototype for ‘make_proc_sysemu’ [-Wmissing-prototypes] 316 | int __init make_proc_sysemu(void) | ^~~~~~~~~~~~~~~~ ../arch/um/kernel/process.c:348:15: warning: no previous prototype for ‘arch_align_stack’ [-Wmissing-prototypes] 348 | unsigned long arch_align_stack(unsigned long sp) | ^~~~~~~~~~~~~~~~ ../arch/um/kernel/reboot.c:45:6: warning: no previous prototype for ‘machine_restart’ [-Wmissing-prototypes] 45 | void machine_restart(char * __unused) | ^~~~~~~~~~~~~~~ ../arch/um/kernel/reboot.c:51:6: warning: no previous prototype for ‘machine_power_off’ [-Wmissing-prototypes] 51 | void machine_power_off(void) | ^~~~~~~~~~~~~~~~~ ../arch/um/kernel/reboot.c:57:6: warning: no previous prototype for ‘machine_halt’ [-Wmissing-prototypes] 57 | void machine_halt(void) | ^~~~~~~~~~~~ ../arch/um/kernel/tlb.c:579:6: warning: no previous prototype for ‘flush_tlb_mm_range’ [-Wmissing-prototypes] 579 | void flush_tlb_mm_range(struct mm_struct *mm, unsigned long start, | ^~~~~~~~~~~~~~~~~~ ../arch/um/kernel/tlb.c:594:6: warning: no previous prototype for ‘force_flush_all’ [-Wmissing-prototypes] 594 | void force_flush_all(void) | ^~~~~~~~~~~~~~~ ../arch/um/kernel/um_arch.c:408:19: warning: no previous prototype for ‘read_initrd’ [-Wmissing-prototypes] 408 | int __init __weak read_initrd(void) | ^~~~~~~~~~~ ../arch/um/kernel/um_arch.c:461:7: warning: no previous prototype for ‘text_poke’ [-Wmissing-prototypes] 461 | void *text_poke(void *addr, const void *opcode, size_t len) | ^~~~~~~~~ ../arch/um/kernel/um_arch.c:473:6: warning: no previous prototype for ‘text_poke_sync’ [-Wmissing-prototypes] 473 | void text_poke_sync(void) | ^~~~~~~~~~~~~~ ../arch/um/kernel/kmsg_dump.c:60:12: warning: no previous prototype for ‘kmsg_dumper_stdout_init’ [-Wmissing-prototypes] 60 | int __init kmsg_dumper_stdout_init(void) | ^~~~~~~~~~~~~~~~~~~~~~~ ../lib/iomap.c:156:5: warning: no previous prototype for ‘ioread64_lo_hi’ [-Wmissing-prototypes] 156 | u64 ioread64_lo_hi(const void __iomem *addr) | ^~~~~~~~~~~~~~ ../lib/iomap.c:163:5: warning: no previous prototype for ‘ioread64_hi_lo’ [-Wmissing-prototypes] 163 | u64 ioread64_hi_lo(const void __iomem *addr) | ^~~~~~~~~~~~~~ ../lib/iomap.c:170:5: warning: no previous prototype for ‘ioread64be_lo_hi’ [-Wmissing-prototypes] 170 | u64 ioread64be_lo_hi(const void __iomem *addr) | ^~~~~~~~~~~~~~~~ ../lib/iomap.c:178:5: warning: no previous prototype for ‘ioread64be_hi_lo’ [-Wmissing-prototypes] 178 | u64 ioread64be_hi_lo(const void __iomem *addr) | ^~~~~~~~~~~~~~~~ ../lib/iomap.c:264:6: warning: no previous prototype for ‘iowrite64_lo_hi’ [-Wmissing-prototypes] 264 | void iowrite64_lo_hi(u64 val, void __iomem *addr) | ^~~~~~~~~~~~~~~ ../lib/iomap.c:272:6: warning: no previous prototype for ‘iowrite64_hi_lo’ [-Wmissing-prototypes] 272 | void iowrite64_hi_lo(u64 val, void __iomem *addr) | ^~~~~~~~~~~~~~~ ../lib/iomap.c:280:6: warning: no previous prototype for ‘iowrite64be_lo_hi’ [-Wmissing-prototypes] 280 | void iowrite64be_lo_hi(u64 val, void __iomem *addr) | ^~~~~~~~~~~~~~~~~ ../lib/iomap.c:288:6: warning: no previous prototype for ‘iowrite64be_hi_lo’ [-Wmissing-prototypes] 288 | void iowrite64be_hi_lo(u64 val, void __iomem *addr) | ^~~~~~~~~~~~~~~~~ stty: 'standard input': Inappropriate ioctl for device [16:35:19] Starting KUnit Kernel (1/1)... [16:35:19] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [16:35:20] =================== guc_dbm (7 subtests) =================== [16:35:20] [PASSED] test_empty [16:35:20] [PASSED] test_default [16:35:20] ======================== test_size ======================== [16:35:20] [PASSED] 4 [16:35:20] [PASSED] 8 [16:35:20] [PASSED] 32 [16:35:20] [PASSED] 256 [16:35:20] ==================== [PASSED] test_size ==================== [16:35:20] ======================= test_reuse ======================== [16:35:20] [PASSED] 4 [16:35:20] [PASSED] 8 [16:35:20] [PASSED] 32 [16:35:20] [PASSED] 256 [16:35:20] =================== [PASSED] test_reuse ==================== [16:35:20] =================== test_range_overlap ==================== [16:35:20] [PASSED] 4 [16:35:20] [PASSED] 8 [16:35:20] [PASSED] 32 [16:35:20] [PASSED] 256 [16:35:20] =============== [PASSED] test_range_overlap ================ [16:35:20] =================== test_range_compact ==================== [16:35:20] [PASSED] 4 [16:35:20] [PASSED] 8 [16:35:20] [PASSED] 32 [16:35:20] [PASSED] 256 [16:35:20] =============== [PASSED] test_range_compact ================ [16:35:20] ==================== test_range_spare ===================== [16:35:20] [PASSED] 4 [16:35:20] [PASSED] 8 [16:35:20] [PASSED] 32 [16:35:20] [PASSED] 256 [16:35:20] ================ [PASSED] test_range_spare ================= [16:35:20] ===================== [PASSED] guc_dbm ===================== [16:35:20] =================== guc_idm (6 subtests) =================== [16:35:20] [PASSED] bad_init [16:35:20] [PASSED] no_init [16:35:20] [PASSED] init_fini [16:35:20] [PASSED] check_used [16:35:20] [PASSED] check_quota [16:35:20] [PASSED] check_all [16:35:20] ===================== [PASSED] guc_idm ===================== [16:35:20] ================== no_relay (3 subtests) =================== [16:35:20] [PASSED] xe_drops_guc2pf_if_not_ready [16:35:20] [PASSED] xe_drops_guc2vf_if_not_ready [16:35:20] [PASSED] xe_rejects_send_if_not_ready [16:35:20] ==================== [PASSED] no_relay ===================== [16:35:20] ================== pf_relay (14 subtests) ================== [16:35:20] [PASSED] pf_rejects_guc2pf_too_short [16:35:20] [PASSED] pf_rejects_guc2pf_too_long [16:35:20] [PASSED] pf_rejects_guc2pf_no_payload [16:35:20] [PASSED] pf_fails_no_payload [16:35:20] [PASSED] pf_fails_bad_origin [16:35:20] [PASSED] pf_fails_bad_type [16:35:20] [PASSED] pf_txn_reports_error [16:35:20] [PASSED] pf_txn_sends_pf2guc [16:35:20] [PASSED] pf_sends_pf2guc [16:35:20] [SKIPPED] pf_loopback_nop [16:35:20] [SKIPPED] pf_loopback_echo [16:35:20] [SKIPPED] pf_loopback_fail [16:35:20] [SKIPPED] pf_loopback_busy [16:35:20] [SKIPPED] pf_loopback_retry [16:35:20] ==================== [PASSED] pf_relay ===================== [16:35:20] ================== vf_relay (3 subtests) =================== [16:35:20] [PASSED] vf_rejects_guc2vf_too_short [16:35:20] [PASSED] vf_rejects_guc2vf_too_long [16:35:20] [PASSED] vf_rejects_guc2vf_no_payload [16:35:20] ==================== [PASSED] vf_relay ===================== [16:35:20] ================= pf_service (11 subtests) ================= [16:35:20] [PASSED] pf_negotiate_any [16:35:20] [PASSED] pf_negotiate_base_match [16:35:20] [PASSED] pf_negotiate_base_newer [16:35:20] [PASSED] pf_negotiate_base_next [16:35:20] [SKIPPED] pf_negotiate_base_older [16:35:20] [PASSED] pf_negotiate_base_prev [16:35:20] [PASSED] pf_negotiate_latest_match [16:35:20] [PASSED] pf_negotiate_latest_newer [16:35:20] [PASSED] pf_negotiate_latest_next [16:35:20] [SKIPPED] pf_negotiate_latest_older [16:35:20] [SKIPPED] pf_negotiate_latest_prev [16:35:20] =================== [PASSED] pf_service ==================== [16:35:20] ===================== lmtt (1 subtest) ===================== [16:35:20] ======================== test_ops ========================= [16:35:20] [PASSED] 2-level [16:35:20] [PASSED] multi-level [16:35:20] ==================== [PASSED] test_ops ===================== [16:35:20] ====================== [PASSED] lmtt ======================= [16:35:20] ==================== xe_bo (2 subtests) ==================== [16:35:20] [SKIPPED] xe_ccs_migrate_kunit [16:35:20] [SKIPPED] xe_bo_evict_kunit [16:35:20] ===================== [SKIPPED] xe_bo ====================== [16:35:20] ================== xe_dma_buf (1 subtest) ================== [16:35:20] [SKIPPED] xe_dma_buf_kunit [16:35:20] =================== [SKIPPED] xe_dma_buf =================== [16:35:20] ================== xe_migrate (1 subtest) ================== [16:35:20] [SKIPPED] xe_migrate_sanity_kunit [16:35:20] =================== [SKIPPED] xe_migrate =================== [16:35:20] =================== xe_mocs (2 subtests) =================== [16:35:20] [SKIPPED] xe_live_mocs_kernel_kunit [16:35:20] [SKIPPED] xe_live_mocs_reset_kunit [16:35:20] ==================== [SKIPPED] xe_mocs ===================== [16:35:20] =================== xe_pci (2 subtests) ==================== [16:35:20] [PASSED] xe_gmdid_graphics_ip [16:35:20] [PASSED] xe_gmdid_media_ip [16:35:20] ===================== [PASSED] xe_pci ====================== [16:35:20] ==================== xe_rtp (1 subtest) ==================== [16:35:20] ================== xe_rtp_process_tests =================== [16:35:20] [PASSED] coalesce-same-reg [16:35:20] [PASSED] no-match-no-add [16:35:20] [PASSED] no-match-no-add-multiple-rules [16:35:20] [PASSED] two-regs-two-entries [16:35:20] [PASSED] clr-one-set-other [16:35:20] [PASSED] set-field [16:35:20] [PASSED] conflict-duplicate [16:35:20] [PASSED] conflict-not-disjoint [16:35:20] [PASSED] conflict-reg-type [16:35:20] ============== [PASSED] xe_rtp_process_tests =============== [16:35:20] ===================== [PASSED] xe_rtp ====================== [16:35:20] ==================== xe_wa (1 subtest) ===================== [16:35:20] ======================== xe_wa_gt ========================= [16:35:20] [PASSED] TIGERLAKE (B0) [16:35:20] [PASSED] DG1 (A0) [16:35:20] [PASSED] DG1 (B0) [16:35:20] [PASSED] ALDERLAKE_S (A0) [16:35:20] [PASSED] ALDERLAKE_S (B0) [16:35:20] [PASSED] ALDERLAKE_S (C0) [16:35:20] [PASSED] ALDERLAKE_S (D0) [16:35:20] [PASSED] ALDERLAKE_P (A0) [16:35:20] [PASSED] ALDERLAKE_P (B0) [16:35:20] [PASSED] ALDERLAKE_P (C0) [16:35:20] [PASSED] ALDERLAKE_S_RPLS (D0) [16:35:20] [PASSED] ALDERLAKE_P_RPLU (E0) [16:35:20] [PASSED] DG2_G10 (C0) [16:35:20] [PASSED] DG2_G11 (B1) [16:35:20] [PASSED] DG2_G12 (A1) [16:35:20] [PASSED] METEORLAKE (g:A0, m:A0) [16:35:20] [PASSED] METEORLAKE (g:A0, m:A0) [16:35:20] [PASSED] METEORLAKE (g:A0, m:A0) [16:35:20] [PASSED] LUNARLAKE (g:A0, m:A0) [16:35:20] [PASSED] LUNARLAKE (g:B0, m:A0) [16:35:20] ==================== [PASSED] xe_wa_gt ===================== [16:35:20] ====================== [PASSED] xe_wa ====================== [16:35:20] ============================================================ [16:35:20] Testing complete. Ran 98 tests: passed: 84, skipped: 14 [16:35:20] Elapsed time: 29.777s total, 4.216s configuring, 25.339s building, 0.174s running + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig [16:35:20] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [16:35:21] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make ARCH=um O=.kunit --jobs=48 In file included from ../arch/um/kernel/asm-offsets.c:1: ../arch/x86/um/shared/sysdep/kernel-offsets.h:9:6: warning: no previous prototype for ‘foo’ [-Wmissing-prototypes] 9 | void foo(void) | ^~~ ../arch/x86/um/ptrace_64.c:111:5: warning: no previous prototype for ‘poke_user’ [-Wmissing-prototypes] 111 | int poke_user(struct task_struct *child, long addr, long data) | ^~~~~~~~~ ../arch/x86/um/ptrace_64.c:171:5: warning: no previous prototype for ‘peek_user’ [-Wmissing-prototypes] 171 | int peek_user(struct task_struct *child, long addr, long data) | ^~~~~~~~~ ../arch/x86/um/signal.c:560:6: warning: no previous prototype for ‘sys_rt_sigreturn’ [-Wmissing-prototypes] 560 | long sys_rt_sigreturn(void) | ^~~~~~~~~~~~~~~~ ../arch/um/kernel/mem.c:202:8: warning: no previous prototype for ‘pgd_alloc’ [-Wmissing-prototypes] 202 | pgd_t *pgd_alloc(struct mm_struct *mm) | ^~~~~~~~~ ../arch/um/kernel/mem.c:215:7: warning: no previous prototype for ‘uml_kmalloc’ [-Wmissing-prototypes] 215 | void *uml_kmalloc(int size, int flags) | ^~~~~~~~~~~ ../arch/x86/um/syscalls_64.c:48:6: warning: no previous prototype for ‘arch_switch_to’ [-Wmissing-prototypes] 48 | void arch_switch_to(struct task_struct *to) | ^~~~~~~~~~~~~~ ../arch/um/kernel/process.c:51:5: warning: no previous prototype for ‘pid_to_processor_id’ [-Wmissing-prototypes] 51 | int pid_to_processor_id(int pid) | ^~~~~~~~~~~~~~~~~~~ ../arch/um/kernel/process.c:87:7: warning: no previous prototype for ‘__switch_to’ [-Wmissing-prototypes] 87 | void *__switch_to(struct task_struct *from, struct task_struct *to) | ^~~~~~~~~~~ ../arch/um/kernel/process.c:140:6: warning: no previous prototype for ‘fork_handler’ [-Wmissing-prototypes] 140 | void fork_handler(void) | ^~~~~~~~~~~~ ../arch/um/kernel/process.c:217:6: warning: no previous prototype for ‘arch_cpu_idle’ [-Wmissing-prototypes] 217 | void arch_cpu_idle(void) | ^~~~~~~~~~~~~ ../arch/um/kernel/process.c:253:5: warning: no previous prototype for ‘copy_to_user_proc’ [-Wmissing-prototypes] 253 | int copy_to_user_proc(void __user *to, void *from, int size) | ^~~~~~~~~~~~~~~~~ ../arch/um/kernel/process.c:263:5: warning: no previous prototype for ‘clear_user_proc’ [-Wmissing-prototypes] 263 | int clear_user_proc(void __user *buf, int size) | ^~~~~~~~~~~~~~~ ../arch/um/kernel/process.c:271:6: warning: no previous prototype for ‘set_using_sysemu’ [-Wmissing-prototypes] 271 | void set_using_sysemu(int value) | ^~~~~~~~~~~~~~~~ ../arch/um/kernel/process.c:278:5: warning: no previous prototype for ‘get_using_sysemu’ [-Wmissing-prototypes] 278 | int get_using_sysemu(void) | ^~~~~~~~~~~~~~~~ ../arch/um/kernel/process.c:316:12: warning: no previous prototype for ‘make_proc_sysemu’ [-Wmissing-prototypes] 316 | int __init make_proc_sysemu(void) | ^~~~~~~~~~~~~~~~ ../arch/um/kernel/process.c:348:15: warning: no previous prototype for ‘arch_align_stack’ [-Wmissing-prototypes] 348 | unsigned long arch_align_stack(unsigned long sp) | ^~~~~~~~~~~~~~~~ ../arch/um/kernel/reboot.c:45:6: warning: no previous prototype for ‘machine_restart’ [-Wmissing-prototypes] 45 | void machine_restart(char * __unused) | ^~~~~~~~~~~~~~~ ../arch/um/kernel/reboot.c:51:6: warning: no previous prototype for ‘machine_power_off’ [-Wmissing-prototypes] 51 | void machine_power_off(void) | ^~~~~~~~~~~~~~~~~ ../arch/um/kernel/reboot.c:57:6: warning: no previous prototype for ‘machine_halt’ [-Wmissing-prototypes] 57 | void machine_halt(void) | ^~~~~~~~~~~~ ../arch/um/kernel/tlb.c:579:6: warning: no previous prototype for ‘flush_tlb_mm_range’ [-Wmissing-prototypes] 579 | void flush_tlb_mm_range(struct mm_struct *mm, unsigned long start, | ^~~~~~~~~~~~~~~~~~ ../arch/um/kernel/tlb.c:594:6: warning: no previous prototype for ‘force_flush_all’ [-Wmissing-prototypes] 594 | void force_flush_all(void) | ^~~~~~~~~~~~~~~ ../arch/um/kernel/um_arch.c:408:19: warning: no previous prototype for ‘read_initrd’ [-Wmissing-prototypes] 408 | int __init __weak read_initrd(void) | ^~~~~~~~~~~ ../arch/um/kernel/um_arch.c:461:7: warning: no previous prototype for ‘text_poke’ [-Wmissing-prototypes] 461 | void *text_poke(void *addr, const void *opcode, size_t len) | ^~~~~~~~~ ../arch/um/kernel/um_arch.c:473:6: warning: no previous prototype for ‘text_poke_sync’ [-Wmissing-prototypes] 473 | void text_poke_sync(void) | ^~~~~~~~~~~~~~ ../arch/um/kernel/kmsg_dump.c:60:12: warning: no previous prototype for ‘kmsg_dumper_stdout_init’ [-Wmissing-prototypes] 60 | int __init kmsg_dumper_stdout_init(void) | ^~~~~~~~~~~~~~~~~~~~~~~ ../arch/um/kernel/skas/process.c:36:12: warning: no previous prototype for ‘start_uml’ [-Wmissing-prototypes] 36 | int __init start_uml(void) | ^~~~~~~~~ ../arch/um/kernel/skas/mmu.c:17:5: warning: no previous prototype for ‘init_new_context’ [-Wmissing-prototypes] 17 | int init_new_context(struct task_struct *task, struct mm_struct *mm) | ^~~~~~~~~~~~~~~~ ../arch/um/kernel/skas/mmu.c:60:6: warning: no previous prototype for ‘destroy_context’ [-Wmissing-prototypes] 60 | void destroy_context(struct mm_struct *mm) | ^~~~~~~~~~~~~~~ ../lib/iomap.c:156:5: warning: no previous prototype for ‘ioread64_lo_hi’ [-Wmissing-prototypes] 156 | u64 ioread64_lo_hi(const void __iomem *addr) | ^~~~~~~~~~~~~~ ../lib/iomap.c:163:5: warning: no previous prototype for ‘ioread64_hi_lo’ [-Wmissing-prototypes] 163 | u64 ioread64_hi_lo(const void __iomem *addr) | ^~~~~~~~~~~~~~ ../lib/iomap.c:170:5: warning: no previous prototype for ‘ioread64be_lo_hi’ [-Wmissing-prototypes] 170 | u64 ioread64be_lo_hi(const void __iomem *addr) | ^~~~~~~~~~~~~~~~ ../lib/iomap.c:178:5: warning: no previous prototype for ‘ioread64be_hi_lo’ [-Wmissing-prototypes] 178 | u64 ioread64be_hi_lo(const void __iomem *addr) | ^~~~~~~~~~~~~~~~ ../lib/iomap.c:264:6: warning: no previous prototype for ‘iowrite64_lo_hi’ [-Wmissing-prototypes] 264 | void iowrite64_lo_hi(u64 val, void __iomem *addr) | ^~~~~~~~~~~~~~~ ../lib/iomap.c:272:6: warning: no previous prototype for ‘iowrite64_hi_lo’ [-Wmissing-prototypes] 272 | void iowrite64_hi_lo(u64 val, void __iomem *addr) | ^~~~~~~~~~~~~~~ ../lib/iomap.c:280:6: warning: no previous prototype for ‘iowrite64be_lo_hi’ [-Wmissing-prototypes] 280 | void iowrite64be_lo_hi(u64 val, void __iomem *addr) | ^~~~~~~~~~~~~~~~~ ../lib/iomap.c:288:6: warning: no previous prototype for ‘iowrite64be_hi_lo’ [-Wmissing-prototypes] 288 | void iowrite64be_hi_lo(u64 val, void __iomem *addr) | ^~~~~~~~~~~~~~~~~ [16:35:43] Starting KUnit Kernel (1/1)... [16:35:43] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [16:35:43] ============ drm_test_pick_cmdline (2 subtests) ============ [16:35:43] [PASSED] drm_test_pick_cmdline_res_1920_1080_60 [16:35:43] =============== drm_test_pick_cmdline_named =============== [16:35:43] [PASSED] NTSC [16:35:43] [PASSED] NTSC-J [16:35:43] [PASSED] PAL [16:35:43] [PASSED] PAL-M [16:35:43] =========== [PASSED] drm_test_pick_cmdline_named =========== [16:35:43] ============== [PASSED] drm_test_pick_cmdline ============== [16:35:43] ================== drm_buddy (7 subtests) ================== [16:35:43] [PASSED] drm_test_buddy_alloc_limit [16:35:43] [PASSED] drm_test_buddy_alloc_optimistic [16:35:43] [PASSED] drm_test_buddy_alloc_pessimistic [16:35:43] [PASSED] drm_test_buddy_alloc_pathological [16:35:43] [PASSED] drm_test_buddy_alloc_contiguous [16:35:43] [PASSED] drm_test_buddy_alloc_clear [16:35:43] [PASSED] drm_test_buddy_alloc_range_bias [16:35:43] ==================== [PASSED] drm_buddy ==================== [16:35:43] ============= drm_cmdline_parser (40 subtests) ============= [16:35:43] [PASSED] drm_test_cmdline_force_d_only [16:35:43] [PASSED] drm_test_cmdline_force_D_only_dvi [16:35:43] [PASSED] drm_test_cmdline_force_D_only_hdmi [16:35:43] [PASSED] drm_test_cmdline_force_D_only_not_digital [16:35:43] [PASSED] drm_test_cmdline_force_e_only [16:35:43] [PASSED] drm_test_cmdline_res [16:35:43] [PASSED] drm_test_cmdline_res_vesa [16:35:43] [PASSED] drm_test_cmdline_res_vesa_rblank [16:35:43] [PASSED] drm_test_cmdline_res_rblank [16:35:43] [PASSED] drm_test_cmdline_res_bpp [16:35:43] [PASSED] drm_test_cmdline_res_refresh [16:35:43] [PASSED] drm_test_cmdline_res_bpp_refresh [16:35:43] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced [16:35:43] [PASSED] drm_test_cmdline_res_bpp_refresh_margins [16:35:43] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off [16:35:43] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on [16:35:43] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog [16:35:43] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital [16:35:43] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on [16:35:43] [PASSED] drm_test_cmdline_res_margins_force_on [16:35:43] [PASSED] drm_test_cmdline_res_vesa_margins [16:35:43] [PASSED] drm_test_cmdline_name [16:35:43] [PASSED] drm_test_cmdline_name_bpp [16:35:43] [PASSED] drm_test_cmdline_name_option [16:35:43] [PASSED] drm_test_cmdline_name_bpp_option [16:35:43] [PASSED] drm_test_cmdline_rotate_0 [16:35:43] [PASSED] drm_test_cmdline_rotate_90 [16:35:43] [PASSED] drm_test_cmdline_rotate_180 [16:35:43] [PASSED] drm_test_cmdline_rotate_270 [16:35:43] [PASSED] drm_test_cmdline_hmirror [16:35:43] [PASSED] drm_test_cmdline_vmirror [16:35:43] [PASSED] drm_test_cmdline_margin_options [16:35:43] [PASSED] drm_test_cmdline_multiple_options [16:35:43] [PASSED] drm_test_cmdline_bpp_extra_and_option [16:35:43] [PASSED] drm_test_cmdline_extra_and_option [16:35:43] [PASSED] drm_test_cmdline_freestanding_options [16:35:43] [PASSED] drm_test_cmdline_freestanding_force_e_and_options [16:35:43] [PASSED] drm_test_cmdline_panel_orientation [16:35:43] ================ drm_test_cmdline_invalid ================= [16:35:43] [PASSED] margin_only [16:35:43] [PASSED] interlace_only [16:35:43] [PASSED] res_missing_x [16:35:43] [PASSED] res_missing_y [16:35:43] [PASSED] res_bad_y [16:35:43] [PASSED] res_missing_y_bpp [16:35:43] [PASSED] res_bad_bpp [16:35:43] [PASSED] res_bad_refresh [16:35:43] [PASSED] res_bpp_refresh_force_on_off [16:35:43] [PASSED] res_invalid_mode [16:35:43] [PASSED] res_bpp_wrong_place_mode [16:35:43] [PASSED] name_bpp_refresh [16:35:43] [PASSED] name_refresh [16:35:43] [PASSED] name_refresh_wrong_mode [16:35:43] [PASSED] name_refresh_invalid_mode [16:35:43] [PASSED] rotate_multiple [16:35:43] [PASSED] rotate_invalid_val [16:35:43] [PASSED] rotate_truncated [16:35:43] [PASSED] invalid_option [16:35:43] [PASSED] invalid_tv_option [16:35:43] [PASSED] truncated_tv_option [16:35:43] ============ [PASSED] drm_test_cmdline_invalid ============= [16:35:43] =============== drm_test_cmdline_tv_options =============== [16:35:43] [PASSED] NTSC [16:35:43] [PASSED] NTSC_443 [16:35:43] [PASSED] NTSC_J [16:35:43] [PASSED] PAL [16:35:43] [PASSED] PAL_M [16:35:43] [PASSED] PAL_N [16:35:43] [PASSED] SECAM [16:35:43] =========== [PASSED] drm_test_cmdline_tv_options =========== [16:35:43] =============== [PASSED] drm_cmdline_parser ================ [16:35:43] ============= drmm_connector_init (3 subtests) ============= [16:35:43] [PASSED] drm_test_drmm_connector_init [16:35:43] [PASSED] drm_test_drmm_connector_init_null_ddc [16:35:43] ========= drm_test_drmm_connector_init_type_valid ========= [16:35:43] [PASSED] Unknown [16:35:43] [PASSED] VGA [16:35:43] [PASSED] DVI-I [16:35:43] [PASSED] DVI-D [16:35:43] [PASSED] DVI-A [16:35:43] [PASSED] Composite [16:35:43] [PASSED] SVIDEO [16:35:43] [PASSED] LVDS [16:35:43] [PASSED] Component [16:35:43] [PASSED] DIN [16:35:43] [PASSED] DP [16:35:43] [PASSED] HDMI-A [16:35:43] [PASSED] HDMI-B [16:35:43] [PASSED] TV [16:35:43] [PASSED] eDP [16:35:43] [PASSED] Virtual [16:35:43] [PASSED] DSI [16:35:43] [PASSED] DPI [16:35:43] [PASSED] Writeback [16:35:43] [PASSED] SPI [16:35:43] [PASSED] USB [16:35:43] ===== [PASSED] drm_test_drmm_connector_init_type_valid ===== [16:35:43] =============== [PASSED] drmm_connector_init =============== [16:35:43] ========== drm_get_tv_mode_from_name (2 subtests) ========== [16:35:43] ========== drm_test_get_tv_mode_from_name_valid =========== [16:35:43] [PASSED] NTSC [16:35:43] [PASSED] NTSC-443 [16:35:43] [PASSED] NTSC-J [16:35:43] [PASSED] PAL [16:35:43] [PASSED] PAL-M [16:35:43] [PASSED] PAL-N [16:35:43] [PASSED] SECAM [16:35:43] ====== [PASSED] drm_test_get_tv_mode_from_name_valid ======= [16:35:43] [PASSED] drm_test_get_tv_mode_from_name_truncated [16:35:43] ============ [PASSED] drm_get_tv_mode_from_name ============ [16:35:43] ============= drm_damage_helper (21 subtests) ============== [16:35:43] [PASSED] drm_test_damage_iter_no_damage [16:35:43] [PASSED] drm_test_damage_iter_no_damage_fractional_src [16:35:43] [PASSED] drm_test_damage_iter_no_damage_src_moved [16:35:43] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved [16:35:43] [PASSED] drm_test_damage_iter_no_damage_not_visible [16:35:43] [PASSED] drm_test_damage_iter_no_damage_no_crtc [16:35:43] [PASSED] drm_test_damage_iter_no_damage_no_fb [16:35:43] [PASSED] drm_test_damage_iter_simple_damage [16:35:43] [PASSED] drm_test_damage_iter_single_damage [16:35:43] [PASSED] drm_test_damage_iter_single_damage_intersect_src [16:35:43] [PASSED] drm_test_damage_iter_single_damage_outside_src [16:35:43] [PASSED] drm_test_damage_iter_single_damage_fractional_src [16:35:43] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src [16:35:43] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src [16:35:43] [PASSED] drm_test_damage_iter_single_damage_src_moved [16:35:43] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved [16:35:43] [PASSED] drm_test_damage_iter_damage [16:35:43] [PASSED] drm_test_damage_iter_damage_one_intersect [16:35:43] [PASSED] drm_test_damage_iter_damage_one_outside [16:35:43] [PASSED] drm_test_damage_iter_damage_src_moved [16:35:43] [PASSED] drm_test_damage_iter_damage_not_visible [16:35:43] ================ [PASSED] drm_damage_helper ================ [16:35:43] ============== drm_dp_mst_helper (3 subtests) ============== [16:35:43] ============== drm_test_dp_mst_calc_pbn_mode ============== [16:35:43] [PASSED] Clock 154000 BPP 30 DSC disabled [16:35:43] [PASSED] Clock 234000 BPP 30 DSC disabled [16:35:43] [PASSED] Clock 297000 BPP 24 DSC disabled [16:35:43] [PASSED] Clock 332880 BPP 24 DSC enabled [16:35:43] [PASSED] Clock 324540 BPP 24 DSC enabled [16:35:43] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ========== [16:35:43] ============== drm_test_dp_mst_calc_pbn_div =============== [16:35:43] [PASSED] Link rate 2000000 lane count 4 [16:35:43] [PASSED] Link rate 2000000 lane count 2 [16:35:43] [PASSED] Link rate 2000000 lane count 1 [16:35:43] [PASSED] Link rate 1350000 lane count 4 [16:35:43] [PASSED] Link rate 1350000 lane count 2 [16:35:43] [PASSED] Link rate 1350000 lane count 1 [16:35:43] [PASSED] Link rate 1000000 lane count 4 [16:35:43] [PASSED] Link rate 1000000 lane count 2 [16:35:43] [PASSED] Link rate 1000000 lane count 1 [16:35:43] [PASSED] Link rate 810000 lane count 4 [16:35:43] [PASSED] Link rate 810000 lane count 2 [16:35:43] [PASSED] Link rate 810000 lane count 1 [16:35:43] [PASSED] Link rate 540000 lane count 4 [16:35:43] [PASSED] Link rate 540000 lane count 2 [16:35:43] [PASSED] Link rate 540000 lane count 1 [16:35:43] [PASSED] Link rate 270000 lane count 4 [16:35:43] [PASSED] Link rate 270000 lane count 2 [16:35:43] [PASSED] Link rate 270000 lane count 1 [16:35:43] [PASSED] Link rate 162000 lane count 4 [16:35:43] [PASSED] Link rate 162000 lane count 2 [16:35:43] [PASSED] Link rate 162000 lane count 1 [16:35:43] ========== [PASSED] drm_test_dp_mst_calc_pbn_div =========== [16:35:43] ========= drm_test_dp_mst_sideband_msg_req_decode ========= [16:35:43] [PASSED] DP_ENUM_PATH_RESOURCES with port number [16:35:43] [PASSED] DP_POWER_UP_PHY with port number [16:35:43] [PASSED] DP_POWER_DOWN_PHY with port number [16:35:43] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks [16:35:43] [PASSED] DP_ALLOCATE_PAYLOAD with port number [16:35:43] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI [16:35:43] [PASSED] DP_ALLOCATE_PAYLOAD with PBN [16:35:43] [PASSED] DP_QUERY_PAYLOAD with port number [16:35:43] [PASSED] DP_QUERY_PAYLOAD with VCPI [16:35:43] [PASSED] DP_REMOTE_DPCD_READ with port number [16:35:43] [PASSED] DP_REMOTE_DPCD_READ with DPCD address [16:35:43] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes [16:35:43] [PASSED] DP_REMOTE_DPCD_WRITE with port number [16:35:43] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address [16:35:43] [PASSED] DP_REMOTE_DPCD_WRITE with data array [16:35:43] [PASSED] DP_REMOTE_I2C_READ with port number [16:35:43] [PASSED] DP_REMOTE_I2C_READ with I2C device ID [16:35:43] [PASSED] DP_REMOTE_I2C_READ with transactions array [16:35:43] [PASSED] DP_REMOTE_I2C_WRITE with port number [16:35:43] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID [16:35:43] [PASSED] DP_REMOTE_I2C_WRITE with data array [16:35:43] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID [16:35:43] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID [16:35:43] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event [16:35:43] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event [16:35:43] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior [16:35:43] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior [16:35:43] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode ===== [16:35:43] ================ [PASSED] drm_dp_mst_helper ================ [16:35:43] ================== drm_exec (7 subtests) =================== [16:35:43] [PASSED] sanitycheck [16:35:43] [PASSED] test_lock [16:35:43] [PASSED] test_lock_unlock [16:35:43] [PASSED] test_duplicates [16:35:43] [PASSED] test_prepare [16:35:43] [PASSED] test_prepare_array [16:35:43] [PASSED] test_multiple_loops [16:35:43] ==================== [PASSED] drm_exec ===================== [16:35:43] =========== drm_format_helper_test (17 subtests) =========== [16:35:43] ============== drm_test_fb_xrgb8888_to_gray8 ============== [16:35:43] [PASSED] single_pixel_source_buffer [16:35:43] [PASSED] single_pixel_clip_rectangle [16:35:43] [PASSED] well_known_colors [16:35:43] [PASSED] destination_pitch [16:35:43] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ========== [16:35:43] ============= drm_test_fb_xrgb8888_to_rgb332 ============== [16:35:43] [PASSED] single_pixel_source_buffer [16:35:43] [PASSED] single_pixel_clip_rectangle [16:35:43] [PASSED] well_known_colors [16:35:43] [PASSED] destination_pitch [16:35:43] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ========== [16:35:43] ============= drm_test_fb_xrgb8888_to_rgb565 ============== [16:35:43] [PASSED] single_pixel_source_buffer [16:35:43] [PASSED] single_pixel_clip_rectangle [16:35:43] [PASSED] well_known_colors [16:35:43] [PASSED] destination_pitch [16:35:43] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ========== [16:35:43] ============ drm_test_fb_xrgb8888_to_xrgb1555 ============= [16:35:43] [PASSED] single_pixel_source_buffer [16:35:43] [PASSED] single_pixel_clip_rectangle [16:35:43] [PASSED] well_known_colors [16:35:43] [PASSED] destination_pitch [16:35:43] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 ========= [16:35:43] ============ drm_test_fb_xrgb8888_to_argb1555 ============= [16:35:43] [PASSED] single_pixel_source_buffer [16:35:43] [PASSED] single_pixel_clip_rectangle [16:35:43] [PASSED] well_known_colors [16:35:43] [PASSED] destination_pitch [16:35:43] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 ========= [16:35:43] ============ drm_test_fb_xrgb8888_to_rgba5551 ============= [16:35:43] [PASSED] single_pixel_source_buffer [16:35:43] [PASSED] single_pixel_clip_rectangle [16:35:43] [PASSED] well_known_colors [16:35:43] [PASSED] destination_pitch [16:35:43] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 ========= [16:35:43] ============= drm_test_fb_xrgb8888_to_rgb888 ============== [16:35:43] [PASSED] single_pixel_source_buffer [16:35:43] [PASSED] single_pixel_clip_rectangle [16:35:43] [PASSED] well_known_colors [16:35:43] [PASSED] destination_pitch [16:35:43] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ========== [16:35:43] ============ drm_test_fb_xrgb8888_to_argb8888 ============= [16:35:43] [PASSED] single_pixel_source_buffer [16:35:43] [PASSED] single_pixel_clip_rectangle [16:35:43] [PASSED] well_known_colors [16:35:43] [PASSED] destination_pitch [16:35:43] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 ========= [16:35:43] =========== drm_test_fb_xrgb8888_to_xrgb2101010 =========== [16:35:43] [PASSED] single_pixel_source_buffer [16:35:43] [PASSED] single_pixel_clip_rectangle [16:35:43] [PASSED] well_known_colors [16:35:43] [PASSED] destination_pitch [16:35:43] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 ======= [16:35:43] =========== drm_test_fb_xrgb8888_to_argb2101010 =========== [16:35:43] [PASSED] single_pixel_source_buffer [16:35:43] [PASSED] single_pixel_clip_rectangle [16:35:43] [PASSED] well_known_colors [16:35:43] [PASSED] destination_pitch [16:35:43] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 ======= [16:35:43] ============== drm_test_fb_xrgb8888_to_mono =============== [16:35:43] [PASSED] single_pixel_source_buffer [16:35:43] [PASSED] single_pixel_clip_rectangle [16:35:43] [PASSED] well_known_colors [16:35:43] [PASSED] destination_pitch [16:35:43] ========== [PASSED] drm_test_fb_xrgb8888_to_mono =========== [16:35:43] ==================== drm_test_fb_swab ===================== [16:35:43] [PASSED] single_pixel_source_buffer [16:35:43] [PASSED] single_pixel_clip_rectangle [16:35:43] [PASSED] well_known_colors [16:35:43] [PASSED] destination_pitch [16:35:43] ================ [PASSED] drm_test_fb_swab ================= [16:35:43] ============ drm_test_fb_xrgb8888_to_xbgr8888 ============= [16:35:43] [PASSED] single_pixel_source_buffer [16:35:43] [PASSED] single_pixel_clip_rectangle [16:35:43] [PASSED] well_known_colors [16:35:43] [PASSED] destination_pitch [16:35:43] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 ========= [16:35:43] ============ drm_test_fb_xrgb8888_to_abgr8888 ============= [16:35:43] [PASSED] single_pixel_source_buffer [16:35:43] [PASSED] single_pixel_clip_rectangle [16:35:43] [PASSED] well_known_colors [16:35:43] [PASSED] destination_pitch [16:35:43] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 ========= [16:35:43] ================= drm_test_fb_clip_offset ================= [16:35:43] [PASSED] pass through [16:35:43] [PASSED] horizontal offset [16:35:43] [PASSED] vertical offset [16:35:43] [PASSED] horizontal and vertical offset [16:35:43] [PASSED] horizontal offset (custom pitch) [16:35:43] [PASSED] vertical offset (custom pitch) [16:35:43] [PASSED] horizontal and vertical offset (custom pitch) [16:35:43] ============= [PASSED] drm_test_fb_clip_offset ============= [16:35:43] ============== drm_test_fb_build_fourcc_list ============== [16:35:43] [PASSED] no native formats [16:35:43] [PASSED] XRGB8888 as native format [16:35:43] [PASSED] remove duplicates [16:35:43] [PASSED] convert alpha formats [16:35:43] [PASSED] random formats [16:35:43] ========== [PASSED] drm_test_fb_build_fourcc_list ========== [16:35:43] =================== drm_test_fb_memcpy ==================== [16:35:43] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258) [16:35:43] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258) [16:35:43] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559) [16:35:43] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258) [16:35:43] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258) [16:35:43] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559) [16:35:43] [PASSED] well_known_colors: XB24 little-endian (0x34324258) [16:35:43] [PASSED] well_known_colors: XRA8 little-endian (0x38415258) [16:35:43] [PASSED] well_known_colors: YU24 little-endian (0x34325559) [16:35:43] [PASSED] destination_pitch: XB24 little-endian (0x34324258) [16:35:43] [PASSED] destination_pitch: XRA8 little-endian (0x38415258) [16:35:43] [PASSED] destination_pitch: YU24 little-endian (0x34325559) [16:35:43] =============== [PASSED] drm_test_fb_memcpy ================ [16:35:43] ============= [PASSED] drm_format_helper_test ============== [16:35:43] ================= drm_format (18 subtests) ================= [16:35:43] [PASSED] drm_test_format_block_width_invalid [16:35:43] [PASSED] drm_test_format_block_width_one_plane [16:35:43] [PASSED] drm_test_format_block_width_two_plane [16:35:43] [PASSED] drm_test_format_block_width_three_plane [16:35:43] [PASSED] drm_test_format_block_width_tiled [16:35:43] [PASSED] drm_test_format_block_height_invalid [16:35:43] [PASSED] drm_test_format_block_height_one_plane [16:35:43] [PASSED] drm_test_format_block_height_two_plane [16:35:43] [PASSED] drm_test_format_block_height_three_plane [16:35:43] [PASSED] drm_test_format_block_height_tiled [16:35:43] [PASSED] drm_test_format_min_pitch_invalid [16:35:43] [PASSED] drm_test_format_min_pitch_one_plane_8bpp [16:35:43] [PASSED] drm_test_format_min_pitch_one_plane_16bpp [16:35:43] [PASSED] drm_test_format_min_pitch_one_plane_24bpp [16:35:43] [PASSED] drm_test_format_min_pitch_one_plane_32bpp [16:35:43] [PASSED] drm_test_format_min_pitch_two_plane [16:35:43] [PASSED] drm_test_format_min_pitch_three_plane_8bpp [16:35:43] [PASSED] drm_test_format_min_pitch_tiled [16:35:43] =================== [PASSED] drm_format ==================== [16:35:43] =============== drm_framebuffer (1 subtest) ================ [16:35:43] =============== drm_test_framebuffer_create =============== [16:35:43] [PASSED] ABGR8888 normal sizes [16:35:43] [PASSED] ABGR8888 max sizes [16:35:43] [PASSED] ABGR8888 pitch greater than min required [16:35:43] [PASSED] ABGR8888 pitch less than min required [16:35:43] [PASSED] ABGR8888 Invalid width [16:35:43] [PASSED] ABGR8888 Invalid buffer handle [16:35:43] [PASSED] No pixel format [16:35:43] [PASSED] ABGR8888 Width 0 [16:35:43] [PASSED] ABGR8888 Height 0 [16:35:43] [PASSED] ABGR8888 Out of bound height * pitch combination [16:35:43] [PASSED] ABGR8888 Large buffer offset [16:35:43] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers [16:35:43] [PASSED] ABGR8888 Valid buffer modifier [16:35:43] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE) [16:35:43] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS [16:35:43] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS [16:35:43] [PASSED] NV12 Normal sizes [16:35:43] [PASSED] NV12 Max sizes [16:35:43] [PASSED] NV12 Invalid pitch [16:35:43] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag [16:35:43] [PASSED] NV12 different modifier per-plane [16:35:43] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE [16:35:43] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS [16:35:43] [PASSED] NV12 Modifier for inexistent plane [16:35:43] [PASSED] NV12 Handle for inexistent plane [16:35:43] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS [16:35:43] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier [16:35:43] [PASSED] YVU420 Normal sizes [16:35:43] [PASSED] YVU420 Max sizes [16:35:43] [PASSED] YVU420 Invalid pitch [16:35:43] [PASSED] YVU420 Different pitches [16:35:43] [PASSED] YVU420 Different buffer offsets/pitches [16:35:43] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS [16:35:43] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS [16:35:43] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS [16:35:43] [PASSED] YVU420 Valid modifier [16:35:43] [PASSED] YVU420 Different modifiers per plane [16:35:43] [PASSED] YVU420 Modifier for inexistent plane [16:35:43] [PASSED] X0L2 Normal sizes [16:35:43] [PASSED] X0L2 Max sizes [16:35:43] [PASSED] X0L2 Invalid pitch [16:35:43] [PASSED] X0L2 Pitch greater than minimum required [16:35:43] [PASSED] X0L2 Handle for inexistent plane [16:35:43] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set [16:35:43] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set [16:35:43] [PASSED] X0L2 Valid modifier [16:35:43] [PASSED] X0L2 Modifier for inexistent plane [16:35:43] =========== [PASSED] drm_test_framebuffer_create =========== [16:35:43] ================= [PASSED] drm_framebuffer ================= [16:35:43] ================ drm_gem_shmem (8 subtests) ================ [16:35:43] [PASSED] drm_gem_shmem_test_obj_create [16:35:43] [PASSED] drm_gem_shmem_test_obj_create_private [16:35:43] [PASSED] drm_gem_shmem_test_pin_pages [16:35:43] [PASSED] drm_gem_shmem_test_vmap [16:35:43] [PASSED] drm_gem_shmem_test_get_pages_sgt [16:35:43] [PASSED] drm_gem_shmem_test_get_sg_table [16:35:43] [PASSED] drm_gem_shmem_test_madvise [16:35:43] [PASSED] drm_gem_shmem_test_purge [16:35:43] ================== [PASSED] drm_gem_shmem ================== [16:35:43] ================= drm_managed (2 subtests) ================= [16:35:43] [PASSED] drm_test_managed_release_action [16:35:43] [PASSED] drm_test_managed_run_action [16:35:43] =================== [PASSED] drm_managed =================== [16:35:43] =================== drm_mm (6 subtests) ==================== [16:35:43] [PASSED] drm_test_mm_init [16:35:43] [PASSED] drm_test_mm_debug [16:35:43] [PASSED] drm_test_mm_align32 [16:35:43] [PASSED] drm_test_mm_align64 [16:35:43] [PASSED] drm_test_mm_lowest [16:35:43] [PASSED] drm_test_mm_highest [16:35:43] ===================== [PASSED] drm_mm ====================== [16:35:43] ============= drm_modes_analog_tv (4 subtests) ============= [16:35:43] [PASSED] drm_test_modes_analog_tv_ntsc_480i [16:35:43] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined [16:35:43] [PASSED] drm_test_modes_analog_tv_pal_576i [16:35:43] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined [16:35:43] =============== [PASSED] drm_modes_analog_tv =============== [16:35:43] ============== drm_plane_helper (2 subtests) =============== [16:35:43] =============== drm_test_check_plane_state ================ [16:35:43] [PASSED] clipping_simple [16:35:43] [PASSED] clipping_rotate_reflect [16:35:43] [PASSED] positioning_simple [16:35:43] [PASSED] upscaling [16:35:43] [PASSED] downscaling [16:35:43] [PASSED] rounding1 [16:35:43] [PASSED] rounding2 [16:35:43] [PASSED] rounding3 [16:35:43] [PASSED] rounding4 [16:35:43] =========== [PASSED] drm_test_check_plane_state ============ [16:35:43] =========== drm_test_check_invalid_plane_state ============ [16:35:43] [PASSED] positioning_invalid [16:35:43] [PASSED] upscaling_invalid [16:35:43] [PASSED] downscaling_invalid [16:35:43] ======= [PASSED] drm_test_check_invalid_plane_state ======== [16:35:43] ================ [PASSED] drm_plane_helper ================= [16:35:43] ====== drm_connector_helper_tv_get_modes (1 subtest) ======= [16:35:43] ====== drm_test_connector_helper_tv_get_modes_check ======= [16:35:43] [PASSED] None [16:35:43] [PASSED] PAL [16:35:43] [PASSED] NTSC [16:35:43] [PASSED] Both, NTSC Default [16:35:43] [PASSED] Both, PAL Default [16:35:43] [PASSED] Both, NTSC Default, with PAL on command-line [16:35:43] [PASSED] Both, PAL Default, with NTSC on command-line [16:35:43] == [PASSED] drm_test_connector_helper_tv_get_modes_check === [16:35:43] ======== [PASSED] drm_connector_helper_tv_get_modes ======== [16:35:43] ================== drm_rect (9 subtests) =================== [16:35:43] [PASSED] drm_test_rect_clip_scaled_div_by_zero [16:35:43] [PASSED] drm_test_rect_clip_scaled_not_clipped [16:35:43] [PASSED] drm_test_rect_clip_scaled_clipped stty: 'standard input': Inappropriate ioctl for device [16:35:43] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned [16:35:43] ================= drm_test_rect_intersect ================= [16:35:43] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0 [16:35:43] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1 [16:35:43] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0 [16:35:43] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1 [16:35:43] [PASSED] right x left: 2x1+0+0 x 3x1+1+0 [16:35:43] [PASSED] left x right: 3x1+1+0 x 2x1+0+0 [16:35:43] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1 [16:35:43] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0 [16:35:43] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1 [16:35:43] [PASSED] touching side: 1x1+0+0 x 1x1+1+0 [16:35:43] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0 [16:35:43] [PASSED] inside another: 2x2+0+0 x 1x1+1+1 [16:35:43] [PASSED] far away: 1x1+0+0 x 1x1+3+6 [16:35:43] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10 [16:35:43] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10 [16:35:43] ============= [PASSED] drm_test_rect_intersect ============= [16:35:43] ================ drm_test_rect_calc_hscale ================ [16:35:43] [PASSED] normal use [16:35:43] [PASSED] out of max range [16:35:43] [PASSED] out of min range [16:35:43] [PASSED] zero dst [16:35:43] [PASSED] negative src [16:35:43] [PASSED] negative dst [16:35:43] ============ [PASSED] drm_test_rect_calc_hscale ============ [16:35:43] ================ drm_test_rect_calc_vscale ================ [16:35:43] [PASSED] normal use [16:35:43] [PASSED] out of max range [16:35:43] [PASSED] out of min range [16:35:43] [PASSED] zero dst [16:35:43] [PASSED] negative src [16:35:43] [PASSED] negative dst [16:35:43] ============ [PASSED] drm_test_rect_calc_vscale ============ [16:35:43] ================== drm_test_rect_rotate =================== [16:35:43] [PASSED] reflect-x [16:35:43] [PASSED] reflect-y [16:35:43] [PASSED] rotate-0 [16:35:43] [PASSED] rotate-90 [16:35:43] [PASSED] rotate-180 [16:35:43] [PASSED] rotate-270 [16:35:43] ============== [PASSED] drm_test_rect_rotate =============== [16:35:43] ================ drm_test_rect_rotate_inv ================= [16:35:43] [PASSED] reflect-x [16:35:43] [PASSED] reflect-y [16:35:43] [PASSED] rotate-0 [16:35:43] [PASSED] rotate-90 [16:35:43] [PASSED] rotate-180 [16:35:43] [PASSED] rotate-270 [16:35:43] ============ [PASSED] drm_test_rect_rotate_inv ============= [16:35:43] ==================== [PASSED] drm_rect ===================== [16:35:43] ============================================================ [16:35:43] Testing complete. Ran 417 tests: passed: 417 [16:35:43] Elapsed time: 23.373s total, 1.693s configuring, 21.460s building, 0.198s running + cleanup ++ stat -c %u:%g /kernel + chown -R 1003:1003 /kernel ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Fi.CI.SPARSE: warning for drm/xe/xe_ggtt: No need to use xe_pm_runtime_get_noresume 2024-04-29 16:29 [PATCH] drm/xe/xe_ggtt: No need to use xe_pm_runtime_get_noresume Ashutosh Dixit ` (2 preceding siblings ...) 2024-04-29 16:35 ` ✓ CI.KUnit: " Patchwork @ 2024-04-29 17:17 ` Patchwork 2024-04-29 17:23 ` ✓ Fi.CI.BAT: success " Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-04-29 17:17 UTC (permalink / raw) To: Ashutosh Dixit; +Cc: intel-gfx == Series Details == Series: drm/xe/xe_ggtt: No need to use xe_pm_runtime_get_noresume URL : https://patchwork.freedesktop.org/series/133032/ State : warning == Summary == Error: dim sparse failed Sparse version: v0.6.2 ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Fi.CI.BAT: success for drm/xe/xe_ggtt: No need to use xe_pm_runtime_get_noresume 2024-04-29 16:29 [PATCH] drm/xe/xe_ggtt: No need to use xe_pm_runtime_get_noresume Ashutosh Dixit ` (3 preceding siblings ...) 2024-04-29 17:17 ` ✗ Fi.CI.SPARSE: warning " Patchwork @ 2024-04-29 17:23 ` Patchwork 2024-04-29 18:24 ` [PATCH] " Rodrigo Vivi 2024-04-29 22:16 ` ✓ Fi.CI.IGT: success for " Patchwork 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-04-29 17:23 UTC (permalink / raw) To: Ashutosh Dixit; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 5361 bytes --] == Series Details == Series: drm/xe/xe_ggtt: No need to use xe_pm_runtime_get_noresume URL : https://patchwork.freedesktop.org/series/133032/ State : success == Summary == CI Bug Log - changes from CI_DRM_14674 -> Patchwork_133032v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/index.html Participating hosts (37 -> 32) ------------------------------ Additional (2): bat-jsl-1 fi-kbl-8809g Missing (7): fi-kbl-7567u bat-mtlp-9 fi-bsw-n3050 fi-apl-guc fi-snb-2520m fi-elk-e7500 bat-dg2-11 Known issues ------------ Here are the changes found in Patchwork_133032v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-jsl-1: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/bat-jsl-1/igt@debugfs_test@basic-hwmon.html * igt@gem_huc_copy@huc-copy: - fi-kbl-8809g: NOTRUN -> [SKIP][2] ([i915#2190]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/fi-kbl-8809g/igt@gem_huc_copy@huc-copy.html - bat-jsl-1: NOTRUN -> [SKIP][3] ([i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/bat-jsl-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-8809g: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/fi-kbl-8809g/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@verify-random: - bat-jsl-1: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/bat-jsl-1/igt@gem_lmem_swapping@verify-random.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-jsl-1: NOTRUN -> [SKIP][6] ([i915#4103]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-jsl-1: NOTRUN -> [SKIP][7] ([i915#3555] / [i915#9886]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/bat-jsl-1/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - fi-kbl-8809g: NOTRUN -> [SKIP][8] +30 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/fi-kbl-8809g/igt@kms_force_connector_basic@force-load-detect.html - bat-jsl-1: NOTRUN -> [SKIP][9] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_setmode@basic-clone-single-crtc: - bat-jsl-1: NOTRUN -> [SKIP][10] ([i915#3555]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/bat-jsl-1/igt@kms_setmode@basic-clone-single-crtc.html #### Possible fixes #### * igt@i915_selftest@live@execlists: - bat-adls-6: [TIMEOUT][11] ([i915#10795]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/bat-adls-6/igt@i915_selftest@live@execlists.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/bat-adls-6/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@gt_mocs: - {bat-arls-4}: [DMESG-WARN][13] -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/bat-arls-4/igt@i915_selftest@live@gt_mocs.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/bat-arls-4/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@ring_submission: - {bat-arls-4}: [DMESG-FAIL][15] ([i915#10262]) -> [PASS][16] +28 other tests pass [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/bat-arls-4/igt@i915_selftest@live@ring_submission.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/bat-arls-4/igt@i915_selftest@live@ring_submission.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10262]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10262 [i915#10795]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10795 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886 Build changes ------------- * Linux: CI_DRM_14674 -> Patchwork_133032v1 CI-20190529: 20190529 CI_DRM_14674: acf512bb5ff4d2e8ed5ef67444b6c1f92a222d77 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7826: ce6ce0f60dd1a6c0df93a01ad71a31964158a2cf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_133032v1: acf512bb5ff4d2e8ed5ef67444b6c1f92a222d77 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/index.html [-- Attachment #2: Type: text/html, Size: 6486 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] drm/xe/xe_ggtt: No need to use xe_pm_runtime_get_noresume 2024-04-29 16:29 [PATCH] drm/xe/xe_ggtt: No need to use xe_pm_runtime_get_noresume Ashutosh Dixit ` (4 preceding siblings ...) 2024-04-29 17:23 ` ✓ Fi.CI.BAT: success " Patchwork @ 2024-04-29 18:24 ` Rodrigo Vivi 2024-04-29 21:19 ` Dixit, Ashutosh 2024-04-29 22:16 ` ✓ Fi.CI.IGT: success for " Patchwork 6 siblings, 1 reply; 9+ messages in thread From: Rodrigo Vivi @ 2024-04-29 18:24 UTC (permalink / raw) To: Ashutosh Dixit; +Cc: intel-xe, Matthew Auld, intel-gfx, Francois Dugast On Mon, Apr 29, 2024 at 09:29:15AM -0700, Ashutosh Dixit wrote: > Switching from xe_device_mem_access_get/put to xe_pm_runtime_get/put > results in the following WARNING in xe_oa: > > [11614.356168] xe 0000:00:02.0: Missing outer runtime PM protection > [11614.356187] WARNING: CPU: 1 PID: 13075 at drivers/gpu/drm/xe/xe_pm.c:549 xe_pm_runtime_get_noresume+0x60/0x80 [xe] > ... > [11614.356377] Call Trace: > [11614.356379] <TASK> > [11614.356381] ? __warn+0x7e/0x180 > [11614.356387] ? xe_pm_runtime_get_noresume+0x60/0x80 [xe] > [11614.356507] xe_ggtt_remove_node+0x22/0x80 [xe] > [11614.356546] xe_ttm_bo_destroy+0xea/0xf0 [xe] > [11614.356579] xe_oa_stream_destroy+0xf7/0x120 [xe] > [11614.356627] xe_oa_release+0x35/0xc0 [xe] > [11614.356673] __fput+0xa1/0x2d0 > [11614.356679] __x64_sys_close+0x37/0x80 > [11614.356697] do_syscall_64+0x6d/0x140 > [11614.356700] entry_SYSCALL_64_after_hwframe+0x71/0x79 > [11614.356702] RIP: 0033:0x7f2b37314f67 > > There seems to be no reason to use xe_pm_runtime_get_noresume in xe_ggtt > functions. Just use xe_pm_runtime_get. > > Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com> > --- > drivers/gpu/drm/xe/xe_ggtt.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/gpu/drm/xe/xe_ggtt.c b/drivers/gpu/drm/xe/xe_ggtt.c > index 0d541f55b4fc..8548a2eb3b32 100644 > --- a/drivers/gpu/drm/xe/xe_ggtt.c > +++ b/drivers/gpu/drm/xe/xe_ggtt.c > @@ -404,7 +404,7 @@ static int __xe_ggtt_insert_bo_at(struct xe_ggtt *ggtt, struct xe_bo *bo, > if (err) > return err; > > - xe_pm_runtime_get_noresume(tile_to_xe(ggtt->tile)); > + xe_pm_runtime_get(tile_to_xe(ggtt->tile)); > mutex_lock(&ggtt->lock); > err = drm_mm_insert_node_in_range(&ggtt->mm, &bo->ggtt_node, bo->size, > alignment, 0, start, end, 0); > @@ -433,7 +433,7 @@ int xe_ggtt_insert_bo(struct xe_ggtt *ggtt, struct xe_bo *bo) > void xe_ggtt_remove_node(struct xe_ggtt *ggtt, struct drm_mm_node *node, > bool invalidate) > { > - xe_pm_runtime_get_noresume(tile_to_xe(ggtt->tile)); > + xe_pm_runtime_get(tile_to_xe(ggtt->tile)); we cannot do this as this place gets called from locked places. This is a deadlock risk. We need to ensure to have an outer caller of the xe_pm_runtime_get that will ensure to get the device waked first, then then we continue with the _noresume variant here that only ensures that we have an extra reference. These warnings are indeed poping up in multiple places, and this is a good thing since we killed the mem_access... at least now we know and have a backtrace of the places that are putting our device at risk of deadlock and can use this information to now find the right outer place protections. https://gitlab.freedesktop.org/drm/xe/kernel/issues/1705 > > mutex_lock(&ggtt->lock); > xe_ggtt_clear(ggtt, node->start, node->size); > -- > 2.41.0 > ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] drm/xe/xe_ggtt: No need to use xe_pm_runtime_get_noresume 2024-04-29 18:24 ` [PATCH] " Rodrigo Vivi @ 2024-04-29 21:19 ` Dixit, Ashutosh 0 siblings, 0 replies; 9+ messages in thread From: Dixit, Ashutosh @ 2024-04-29 21:19 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: intel-xe, Matthew Auld, intel-gfx, Francois Dugast On Mon, 29 Apr 2024 11:24:27 -0700, Rodrigo Vivi wrote: > > On Mon, Apr 29, 2024 at 09:29:15AM -0700, Ashutosh Dixit wrote: > > Switching from xe_device_mem_access_get/put to xe_pm_runtime_get/put > > results in the following WARNING in xe_oa: > > > > [11614.356168] xe 0000:00:02.0: Missing outer runtime PM protection > > [11614.356187] WARNING: CPU: 1 PID: 13075 at drivers/gpu/drm/xe/xe_pm.c:549 xe_pm_runtime_get_noresume+0x60/0x80 [xe] > > ... > > [11614.356377] Call Trace: > > [11614.356379] <TASK> > > [11614.356381] ? __warn+0x7e/0x180 > > [11614.356387] ? xe_pm_runtime_get_noresume+0x60/0x80 [xe] > > [11614.356507] xe_ggtt_remove_node+0x22/0x80 [xe] > > [11614.356546] xe_ttm_bo_destroy+0xea/0xf0 [xe] > > [11614.356579] xe_oa_stream_destroy+0xf7/0x120 [xe] > > [11614.356627] xe_oa_release+0x35/0xc0 [xe] > > [11614.356673] __fput+0xa1/0x2d0 > > [11614.356679] __x64_sys_close+0x37/0x80 > > [11614.356697] do_syscall_64+0x6d/0x140 > > [11614.356700] entry_SYSCALL_64_after_hwframe+0x71/0x79 > > [11614.356702] RIP: 0033:0x7f2b37314f67 > > > > There seems to be no reason to use xe_pm_runtime_get_noresume in xe_ggtt > > functions. Just use xe_pm_runtime_get. > > > > Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com> > > --- > > drivers/gpu/drm/xe/xe_ggtt.c | 4 ++-- > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > diff --git a/drivers/gpu/drm/xe/xe_ggtt.c b/drivers/gpu/drm/xe/xe_ggtt.c > > index 0d541f55b4fc..8548a2eb3b32 100644 > > --- a/drivers/gpu/drm/xe/xe_ggtt.c > > +++ b/drivers/gpu/drm/xe/xe_ggtt.c > > @@ -404,7 +404,7 @@ static int __xe_ggtt_insert_bo_at(struct xe_ggtt *ggtt, struct xe_bo *bo, > > if (err) > > return err; > > > > - xe_pm_runtime_get_noresume(tile_to_xe(ggtt->tile)); > > + xe_pm_runtime_get(tile_to_xe(ggtt->tile)); > > mutex_lock(&ggtt->lock); > > err = drm_mm_insert_node_in_range(&ggtt->mm, &bo->ggtt_node, bo->size, > > alignment, 0, start, end, 0); > > @@ -433,7 +433,7 @@ int xe_ggtt_insert_bo(struct xe_ggtt *ggtt, struct xe_bo *bo) > > void xe_ggtt_remove_node(struct xe_ggtt *ggtt, struct drm_mm_node *node, > > bool invalidate) > > { > > - xe_pm_runtime_get_noresume(tile_to_xe(ggtt->tile)); > > + xe_pm_runtime_get(tile_to_xe(ggtt->tile)); > > we cannot do this as this place gets called from locked places. > This is a deadlock risk. > We need to ensure to have an outer caller of the xe_pm_runtime_get that will > ensure to get the device waked first, then then we continue with the _noresume > variant here that only ensures that we have an extra reference. > > These warnings are indeed poping up in multiple places, and this is a good > thing since we killed the mem_access... at least now we know and have a > backtrace of the places that are putting our device at risk of deadlock > and can use this information to now find the right outer place protections. > > https://gitlab.freedesktop.org/drm/xe/kernel/issues/1705 OK Rodrigo, thanks for the explanation. I wasn't sure, so I thought I'll send the patch. Anyway, I'll add an outer call for xe_pm_runtime_get. Thanks. > > > > > mutex_lock(&ggtt->lock); > > xe_ggtt_clear(ggtt, node->start, node->size); > > -- > > 2.41.0 > > ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Fi.CI.IGT: success for drm/xe/xe_ggtt: No need to use xe_pm_runtime_get_noresume 2024-04-29 16:29 [PATCH] drm/xe/xe_ggtt: No need to use xe_pm_runtime_get_noresume Ashutosh Dixit ` (5 preceding siblings ...) 2024-04-29 18:24 ` [PATCH] " Rodrigo Vivi @ 2024-04-29 22:16 ` Patchwork 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2024-04-29 22:16 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 75452 bytes --] == Series Details == Series: drm/xe/xe_ggtt: No need to use xe_pm_runtime_get_noresume URL : https://patchwork.freedesktop.org/series/133032/ State : success == Summary == CI Bug Log - changes from CI_DRM_14674_full -> Patchwork_133032v1_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in Patchwork_133032v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][1] ([i915#8411]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-15/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@blit-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][2] ([i915#8411]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@render-ccs: - shard-dg2: NOTRUN -> [FAIL][3] ([i915#10380]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@api_intel_bb@render-ccs.html * igt@debugfs_test@basic-hwmon: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#9318]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-2/igt@debugfs_test@basic-hwmon.html * igt@device_reset@cold-reset-bound: - shard-dg1: NOTRUN -> [SKIP][5] ([i915#7701]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-reset-rebind: - shard-dg1: NOTRUN -> [INCOMPLETE][6] ([i915#9408] / [i915#9618]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@all-busy-idle-check-all: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#8414]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-17/igt@drm_fdinfo@all-busy-idle-check-all.html * igt@drm_fdinfo@virtual-idle: - shard-rkl: [PASS][8] -> [FAIL][9] ([i915#7742]) +2 other tests fail [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-rkl-5/igt@drm_fdinfo@virtual-idle.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-4/igt@drm_fdinfo@virtual-idle.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-2/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#9323]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@gem_ccs@suspend-resume.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#6335]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-4/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_persistence@engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][13] ([i915#1099]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-snb7/igt@gem_ctx_persistence@engines-hostile-preempt.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#8555]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@invalid-args: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#280]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@hibernate: - shard-rkl: NOTRUN -> [ABORT][16] ([i915#7975] / [i915#8213]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-3/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#4812]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-15/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#4812]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#4525]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-2/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_balancer@sliced: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#4812]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@gem_exec_balancer@sliced.html * igt@gem_exec_capture@many-4k-incremental: - shard-rkl: NOTRUN -> [FAIL][21] ([i915#9606]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-2/igt@gem_exec_capture@many-4k-incremental.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#3539] / [i915#4852]) +5 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-glk: NOTRUN -> [FAIL][23] ([i915#2842]) +6 other tests fail [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-glk1/igt@gem_exec_fair@basic-none-rrul@rcs0.html - shard-rkl: NOTRUN -> [FAIL][24] ([i915#2842]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-3/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-rkl: [PASS][25] -> [FAIL][26] ([i915#2842]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-rkl-6/igt@gem_exec_fair@basic-none@vcs0.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-5/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-throttle: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#3539]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_flush@basic-wb-pro-default: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@gem_exec_flush@basic-wb-pro-default.html * igt@gem_exec_reloc@basic-concurrent0: - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#3281]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@gem_exec_reloc@basic-concurrent0.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#3281]) +5 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-write-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#3281]) +4 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@gem_exec_reloc@basic-write-gtt-noreloc.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#3281]) +6 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-4/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_schedule@u-semaphore-resolve: - shard-snb: NOTRUN -> [SKIP][33] +63 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-snb7/igt@gem_exec_schedule@u-semaphore-resolve.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4860]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4860]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_swapping@basic@lmem0: - shard-dg2: [PASS][36] -> [FAIL][37] ([i915#10378]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-dg2-6/igt@gem_lmem_swapping@basic@lmem0.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-11/igt@gem_lmem_swapping@basic@lmem0.html * igt@gem_lmem_swapping@heavy-multi@lmem0: - shard-dg1: [PASS][38] -> [FAIL][39] ([i915#10378]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-dg1-17/igt@gem_lmem_swapping@heavy-multi@lmem0.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@gem_lmem_swapping@heavy-multi@lmem0.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][40] ([i915#4613]) +5 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-glk4/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-multi@lmem0: - shard-dg1: NOTRUN -> [FAIL][41] ([i915#10378]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#4565]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify@lmem0: - shard-dg2: [PASS][43] -> [INCOMPLETE][44] ([i915#10317] / [i915#1982]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-dg2-2/igt@gem_lmem_swapping@parallel-random-verify@lmem0.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-6/igt@gem_lmem_swapping@parallel-random-verify@lmem0.html * igt@gem_lmem_swapping@random: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4613]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@verify: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-2/igt@gem_lmem_swapping@verify.html * igt@gem_lmem_swapping@verify-random: - shard-tglu: NOTRUN -> [SKIP][47] ([i915#4613]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-tglu-9/igt@gem_lmem_swapping@verify-random.html * igt@gem_media_vme: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#284]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-14/igt@gem_media_vme.html * igt@gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4077]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@gem_mmap_gtt@big-bo-tiledy.html * igt@gem_mmap_gtt@cpuset-basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#4077]) +9 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@gem_mmap_gtt@cpuset-basic-small-copy.html * igt@gem_mmap_wc@bad-object: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4083]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@gem_mmap_wc@bad-object.html * igt@gem_mmap_wc@bad-size: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#4083]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@gem_mmap_wc@bad-size.html * igt@gem_mmap_wc@copy: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4083]) +4 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-14/igt@gem_mmap_wc@copy.html * igt@gem_partial_pwrite_pread@reads: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#3282]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-17/igt@gem_partial_pwrite_pread@reads.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#3282]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-self: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#3282]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-2/igt@gem_pwrite@basic-self.html * igt@gem_pwrite_snooped: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#3282]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@gem_pwrite_snooped.html * igt@gem_pxp@display-protected-crc: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4270]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-15/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@fail-invalid-protected-context: - shard-tglu: NOTRUN -> [SKIP][59] ([i915#4270]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-tglu-9/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4270]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#5190] / [i915#8428]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@gem_render_copy@mixed-tiled-to-yf-tiled-ccs.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#8428]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#8411]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4079]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_userptr_blits@access-control: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#3297]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#3297]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@gem_userptr_blits@dmabuf-unsync.html - shard-rkl: NOTRUN -> [SKIP][67] ([i915#3297]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-4/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#3282] / [i915#3297]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-17/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][69] ([i915#3297]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-tglu-9/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gen7_exec_parse@batch-without-end: - shard-mtlp: NOTRUN -> [SKIP][70] +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@gen7_exec_parse@batch-without-end.html * igt@gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#2856]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#2527]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-param: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#2527]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-3/igt@gen9_exec_parse@bb-start-param.html * igt@i915_module_load@load: - shard-glk: NOTRUN -> [SKIP][74] ([i915#6227]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-glk4/igt@i915_module_load@load.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#6621]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-17/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds-idle-park@gt0: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#8925]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@i915_pm_rps@thresholds-idle-park@gt0.html * igt@i915_pm_rps@thresholds-idle-park@gt1: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#3555] / [i915#8925]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@i915_pm_rps@thresholds-idle-park@gt1.html * igt@i915_pm_sseu@full-enable: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#4387]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@i915_pm_sseu@full-enable.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#4212]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#8709]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#8709]) +11 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-2-4-mc-ccs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][82] ([i915#1769]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-glk7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#5286]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-4/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#4538] / [i915#5286]) +5 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][85] -> [DMESG-FAIL][86] ([i915#2017]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#3638]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-4/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#3638]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-0: - shard-rkl: [PASS][89] -> [ABORT][90] ([i915#10354]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-rkl-1/igt@kms_big_fb@linear-8bpp-rotate-0.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-3/igt@kms_big_fb@linear-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#4538] / [i915#5190]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#4538]) +4 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_joiner@basic: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#10656]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@kms_big_joiner@basic.html - shard-rkl: NOTRUN -> [SKIP][94] ([i915#10656]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-4/igt@kms_big_joiner@basic.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][95] ([i915#6095]) +15 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-tglu-9/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#6095]) +7 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs-cc@pipe-a-edp-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs: - shard-rkl: NOTRUN -> [SKIP][97] ([i915#10278]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#10307] / [i915#6095]) +165 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-10/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#6095]) +61 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#6095]) +91 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#7213]) +3 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-8/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#7828]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#7828]) +5 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-2/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@dp-crc-single: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#7828]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-tglu: NOTRUN -> [SKIP][106] ([i915#7828]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-tglu-9/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#7828]) +8 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-14/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_content_protection@atomic: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#7116] / [i915#9424]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-17/igt@kms_content_protection@atomic.html * igt@kms_content_protection@legacy: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#7118] / [i915#9424]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-4/igt@kms_content_protection@legacy.html - shard-rkl: NOTRUN -> [SKIP][110] ([i915#7118] / [i915#9424]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-2/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][111] ([i915#7173]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-11/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html * igt@kms_content_protection@srm: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#6944] / [i915#7116] / [i915#7118]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-tglu-9/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#3555]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-14/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#3359]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][115] ([i915#3359]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-256x85: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#8814]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#3359]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-14/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#4103] / [i915#4213]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#4103]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#9809]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#4213]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/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][122] ([i915#4103]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-tglu-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#9227]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-8/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#9723]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#3804]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#1257]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-14/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#8812]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#3840]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#3555] / [i915#3840]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-2/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#3555] / [i915#3840]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#3840] / [i915#9053]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][132] ([i915#3840] / [i915#9053]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1: - shard-snb: [PASS][133] -> [FAIL][134] ([i915#2122]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-snb4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-snb7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][135] +5 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#8381]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-tglu: NOTRUN -> [SKIP][137] ([i915#3637] / [i915#3966]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-tglu-9/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#3637]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#9934]) +8 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-14/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a4: - shard-dg1: [PASS][140] -> [FAIL][141] ([i915#2122]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-dg1-15/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a4.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-18/igt@kms_flip@flip-vs-absolute-wf_vblank@a-hdmi-a4.html * igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1: - shard-rkl: [PASS][142] -> [FAIL][143] ([i915#2122]) +1 other test fail [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-rkl-4/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-5/igt@kms_flip@flip-vs-blocking-wf-vblank@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#2672]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#2672]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html - shard-rkl: NOTRUN -> [SKIP][146] ([i915#2672]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#2587] / [i915#2672]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][148] +22 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#8708]) +3 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#1825]) +6 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#1825]) +25 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#5439]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#3458]) +14 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#3023]) +9 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-stridechange: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#3458]) +3 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-stridechange.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][156] ([i915#8708]) +20 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#8708]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#5354]) +8 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#3555] / [i915#8228]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@invalid-metadata-sizes: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#8228]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-tglu-9/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu: NOTRUN -> [SKIP][161] ([i915#1839]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-tglu-9/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#6301]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane@pixel-format-source-clamping@pipe-a: - shard-mtlp: [PASS][163] -> [ABORT][164] ([i915#10650]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-mtlp-8/igt@kms_plane@pixel-format-source-clamping@pipe-a.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-5/igt@kms_plane@pixel-format-source-clamping@pipe-a.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][165] ([i915#10647]) +1 other test fail [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-glk3/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#3582]) +3 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][167] ([i915#8292]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][168] ([i915#9423]) +7 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#9423]) +7 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#9423]) +3 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#5176] / [i915#9423]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][172] ([i915#5176] / [i915#9423]) +3 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-16/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#5235] / [i915#9423]) +15 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#5235]) +7 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#5235] / [i915#9423] / [i915#9728]) +7 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#5235]) +7 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#9340]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#8430]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][179] -> [SKIP][180] ([i915#9519]) +3 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#9519]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@fences-dpms: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#4077]) +3 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@kms_pm_rpm@fences-dpms.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][183] -> [SKIP][184] ([i915#9519]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-dg2-11/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html - shard-rkl: NOTRUN -> [SKIP][185] ([i915#9519]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2-pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#9808]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2-pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][187] +41 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#9683]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@kms_psr2_su@page_flip-nv12.html - shard-rkl: NOTRUN -> [SKIP][189] ([i915#9683]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-4/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr2-cursor-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][190] ([i915#9732]) +4 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-tglu-9/igt@kms_psr@fbc-psr2-cursor-mmap-cpu.html * igt@kms_psr@fbc-psr2-cursor-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][191] +369 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-glk3/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html * igt@kms_psr@pr-primary-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#9688]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@kms_psr@pr-primary-mmap-cpu.html * igt@kms_psr@psr-primary-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#1072] / [i915#9732]) +4 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@kms_psr@psr-primary-mmap-cpu.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#1072] / [i915#9732]) +12 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-4/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#1072] / [i915#9732]) +20 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-14/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#9685]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg1: NOTRUN -> [SKIP][197] ([i915#9685]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-17/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#5190]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#5289]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#5289]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-14/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][201] ([i915#3555]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-tglu-9/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#3555]) +2 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@kms_setmode@invalid-clone-single-crtc.html - shard-rkl: NOTRUN -> [SKIP][203] ([i915#3555]) +3 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-4/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#8623]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@max-min: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#9906]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@kms_vrr@max-min.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#9906]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#2437]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-14/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][208] ([i915#2437]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-glk1/igt@kms_writeback@writeback-fb-id.html - shard-rkl: NOTRUN -> [SKIP][209] ([i915#2437]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-3/igt@kms_writeback@writeback-fb-id.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][210] ([i915#10537] / [i915#5793]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@perf_pmu@module-unload.html * igt@runner@aborted: - shard-snb: NOTRUN -> [FAIL][211] ([i915#8852]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-snb5/igt@runner@aborted.html - shard-glk: NOTRUN -> [FAIL][212] ([i915#10291]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-glk1/igt@runner@aborted.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#9917]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@sriov_basic@bind-unbind-vf.html - shard-rkl: NOTRUN -> [SKIP][214] ([i915#9917]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-4/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg1: NOTRUN -> [SKIP][215] ([i915#9917]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-15/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-dg1: NOTRUN -> [FAIL][216] ([i915#9781]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@syncobj_timeline@invalid-wait-zero-handles.html - shard-snb: NOTRUN -> [FAIL][217] ([i915#9781]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-snb7/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@v3d/v3d_mmap@mmap-bad-flags: - shard-dg1: NOTRUN -> [SKIP][218] ([i915#2575]) +11 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-17/igt@v3d/v3d_mmap@mmap-bad-flags.html * igt@v3d/v3d_perfmon@destroy-invalid-perfmon: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#2575]) +2 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@v3d/v3d_perfmon@destroy-invalid-perfmon.html * igt@v3d/v3d_submit_csd@multi-and-single-sync: - shard-tglu: NOTRUN -> [SKIP][220] ([i915#2575]) +5 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-tglu-9/igt@v3d/v3d_submit_csd@multi-and-single-sync.html * igt@v3d/v3d_wait_bo@bad-bo: - shard-rkl: NOTRUN -> [SKIP][221] +26 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-4/igt@v3d/v3d_wait_bo@bad-bo.html * igt@v3d/v3d_wait_bo@used-bo: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#2575]) +2 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@v3d/v3d_wait_bo@used-bo.html * igt@vc4/vc4_label_bo@set-bad-name: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#7711]) +6 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@vc4/vc4_label_bo@set-bad-name.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#7711]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-mtlp-7/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_tiling@get-bad-modifier: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#7711]) +4 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-2/igt@vc4/vc4_tiling@get-bad-modifier.html * igt@vc4/vc4_wait_seqno@bad-seqno-0ns: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#7711]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-2/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html #### Possible fixes #### * igt@gem_ctx_freq@sysfs@gt0: - shard-dg2: [FAIL][227] ([i915#9561]) -> [PASS][228] [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-dg2-8/igt@gem_ctx_freq@sysfs@gt0.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-3/igt@gem_ctx_freq@sysfs@gt0.html * igt@gem_eio@kms: - shard-dg2: [INCOMPLETE][229] ([i915#10513] / [i915#1982]) -> [PASS][230] [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-dg2-6/igt@gem_eio@kms.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-11/igt@gem_eio@kms.html * igt@gem_lmem_swapping@heavy-verify-random@lmem0: - shard-dg1: [FAIL][231] ([i915#10378]) -> [PASS][232] [231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-dg1-15/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [INCOMPLETE][233] ([i915#9849]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html - shard-dg1: [INCOMPLETE][235] ([i915#1982] / [i915#9820] / [i915#9849]) -> [PASS][236] [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-dg1-15/igt@i915_module_load@reload-with-fault-injection.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [FAIL][237] ([i915#3743]) -> [PASS][238] +1 other test pass [237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-tglu-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-tglu-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite: - shard-snb: [SKIP][239] -> [PASS][240] [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][241] ([i915#4281]) -> [PASS][242] [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-tglu-3/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [SKIP][243] ([i915#9519]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-rkl: [SKIP][245] ([i915#9519]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-tglu: [FAIL][247] ([i915#9196]) -> [PASS][248] +1 other test pass [247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][249] ([i915#4349]) -> [PASS][250] +3 other tests pass [249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html #### Warnings #### * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg2: [FAIL][251] ([i915#10378]) -> [FAIL][252] ([i915#10446]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-dg2-4/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-10/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [DMESG-WARN][253] ([i915#1982] / [i915#4936] / [i915#5493]) -> [TIMEOUT][254] ([i915#5493]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-11/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [ABORT][255] ([i915#9820]) -> [INCOMPLETE][256] ([i915#9820] / [i915#9849]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][257] ([i915#9433]) -> [SKIP][258] ([i915#9424]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-dg1-13/igt@kms_content_protection@mei-interface.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg1-16/igt@kms_content_protection@mei-interface.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][259] ([i915#3458]) -> [SKIP][260] ([i915#10433] / [i915#3458]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: [SKIP][261] ([i915#10433] / [i915#3458]) -> [SKIP][262] ([i915#3458]) +4 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_psr@fbc-pr-primary-mmap-gtt: - shard-dg2: [SKIP][263] ([i915#1072] / [i915#9732]) -> [SKIP][264] ([i915#1072] / [i915#9673] / [i915#9732]) +9 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-dg2-1/igt@kms_psr@fbc-pr-primary-mmap-gtt.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-11/igt@kms_psr@fbc-pr-primary-mmap-gtt.html * igt@kms_psr@psr-cursor-render: - shard-dg2: [SKIP][265] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][266] ([i915#1072] / [i915#9732]) +10 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-dg2-11/igt@kms_psr@psr-cursor-render.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-4/igt@kms_psr@psr-cursor-render.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][267] ([i915#7484]) -> [FAIL][268] ([i915#9100]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14674/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html [i915#10278]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10278 [i915#10291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10291 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10317]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10317 [i915#10354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10354 [i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378 [i915#10380]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10380 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10446]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10446 [i915#10513]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10513 [i915#10537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10537 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#10650]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10650 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#2017]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2017 [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3743]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3966]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3966 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4936 [i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5793]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5793 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213 [i915#7484]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7484 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8852 [i915#8925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100 [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196 [i915#9227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9227 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9408]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9408 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9561 [i915#9606]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9606 [i915#9618]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9618 [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9728]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9849 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * Linux: CI_DRM_14674 -> Patchwork_133032v1 CI-20190529: 20190529 CI_DRM_14674: acf512bb5ff4d2e8ed5ef67444b6c1f92a222d77 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7826: ce6ce0f60dd1a6c0df93a01ad71a31964158a2cf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_133032v1: acf512bb5ff4d2e8ed5ef67444b6c1f92a222d77 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133032v1/index.html [-- Attachment #2: Type: text/html, Size: 92389 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-04-29 22:16 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-04-29 16:29 [PATCH] drm/xe/xe_ggtt: No need to use xe_pm_runtime_get_noresume Ashutosh Dixit 2024-04-29 16:34 ` ✓ CI.Patch_applied: success for " Patchwork 2024-04-29 16:34 ` ✓ CI.checkpatch: " Patchwork 2024-04-29 16:35 ` ✓ CI.KUnit: " Patchwork 2024-04-29 17:17 ` ✗ Fi.CI.SPARSE: warning " Patchwork 2024-04-29 17:23 ` ✓ Fi.CI.BAT: success " Patchwork 2024-04-29 18:24 ` [PATCH] " Rodrigo Vivi 2024-04-29 21:19 ` Dixit, Ashutosh 2024-04-29 22:16 ` ✓ Fi.CI.IGT: success for " Patchwork
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.