* [Intel-gfx] [PATCH i-g-t] i915/gem_mmap_gtt: Replace gem_threaded_access_tiled
@ 2020-12-10 10:27 Chris Wilson
2020-12-10 10:29 ` [igt-dev] " Mika Kuoppala
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Chris Wilson @ 2020-12-10 10:27 UTC (permalink / raw)
To: igt-dev; +Cc: intel-gfx, Chris Wilson
Concurrent access to a mmap is covered by gem_mmap_gtt/concurrent,
if we add tiled access to it, we make gem_threaded_access_tiled entirely
redundant.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com>
---
tests/Makefile.am | 2 -
tests/Makefile.sources | 3 -
tests/i915/gem_mmap_gtt.c | 21 +++--
tests/i915/gem_threaded_access_tiled.c | 122 -------------------------
tests/meson.build | 1 -
5 files changed, 15 insertions(+), 134 deletions(-)
delete mode 100644 tests/i915/gem_threaded_access_tiled.c
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 9f0dda7d7..415271add 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -118,8 +118,6 @@ gem_mmap_wc_CFLAGS = $(AM_CFLAGS) $(THREAD_CFLAGS)
gem_mmap_wc_LDADD = $(LDADD) -lpthread
gem_sync_CFLAGS = $(AM_CFLAGS) $(THREAD_CFLAGS)
gem_sync_LDADD = $(LDADD) -lpthread
-gem_threaded_access_tiled_CFLAGS = $(AM_CFLAGS) $(THREAD_CFLAGS)
-gem_threaded_access_tiled_LDADD = $(LDADD) -lpthread
gem_tiled_swapping_CFLAGS = $(AM_CFLAGS) $(THREAD_CFLAGS)
gem_tiled_swapping_LDADD = $(LDADD) -lpthread
i915_pm_rc6_residency_LDADD = $(LDADD) $(top_builddir)/lib/libigt_perf.la
diff --git a/tests/Makefile.sources b/tests/Makefile.sources
index 15fb56048..d9c8f6104 100644
--- a/tests/Makefile.sources
+++ b/tests/Makefile.sources
@@ -422,9 +422,6 @@ gem_streaming_writes_SOURCES = i915/gem_streaming_writes.c
TESTS_progs += gem_sync
gem_sync_SOURCES = i915/gem_sync.c
-TESTS_progs += gem_threaded_access_tiled
-gem_threaded_access_tiled_SOURCES = i915/gem_threaded_access_tiled.c
-
TESTS_progs += gem_tiled_blits
gem_tiled_blits_SOURCES = i915/gem_tiled_blits.c
diff --git a/tests/i915/gem_mmap_gtt.c b/tests/i915/gem_mmap_gtt.c
index 6ecff12b9..61fbc5bc7 100644
--- a/tests/i915/gem_mmap_gtt.c
+++ b/tests/i915/gem_mmap_gtt.c
@@ -72,12 +72,14 @@ mmap_bo(int fd, uint32_t handle, uint64_t size)
}
static void *
-create_pointer_size(int fd, uint64_t size)
+create_pointer_size(int fd, uint64_t size, int tiling)
{
uint32_t handle;
void *ptr;
handle = gem_create(fd, size);
+ if (tiling)
+ gem_set_tiling(fd, handle, tiling, 1024);
ptr = mmap_bo(fd, handle, size);
@@ -89,7 +91,7 @@ create_pointer_size(int fd, uint64_t size)
static void *
create_pointer(int fd)
{
- return create_pointer_size(fd, OBJECT_SIZE);
+ return create_pointer_size(fd, OBJECT_SIZE, I915_TILING_NONE);
}
static void
@@ -1180,20 +1182,23 @@ thread_fault_concurrent(void *closure)
}
static void
-test_fault_concurrent(int fd)
+test_fault_concurrent(int fd, int tiling)
{
uint32_t *ptr[32];
struct thread_fault_concurrent thread[64];
int *ctl;
int n;
- ctl = create_pointer_size(fd, 4096);
+ if (tiling != I915_TILING_NONE)
+ igt_require(gem_available_fences(fd) > 0);
+
+ ctl = create_pointer_size(fd, 4096, I915_TILING_NONE);
*ctl = 1;
for (n = 0; n < 32; n++) {
uint32_t sz = (n + 1) << 19; /* 512KiB increments */
- ptr[n] = create_pointer_size(fd, sz);
+ ptr[n] = create_pointer_size(fd, sz, tiling);
*ptr[n] = sz / sizeof(uint32_t); /* num_elems for convenience */
}
@@ -1301,7 +1306,11 @@ igt_main
igt_subtest("basic-write-read-distinct")
test_read_write2(fd, READ_AFTER_WRITE);
igt_subtest("fault-concurrent")
- test_fault_concurrent(fd);
+ test_fault_concurrent(fd, I915_TILING_NONE);
+ igt_subtest("fault-concurrent-X")
+ test_fault_concurrent(fd, I915_TILING_X);
+ igt_subtest("fault-concurrent-Y")
+ test_fault_concurrent(fd, I915_TILING_Y);
igt_subtest("basic-write-cpu-read-gtt")
test_write_cpu_read_gtt(fd);
igt_subtest("basic-wc")
diff --git a/tests/i915/gem_threaded_access_tiled.c b/tests/i915/gem_threaded_access_tiled.c
deleted file mode 100644
index 53b475a45..000000000
--- a/tests/i915/gem_threaded_access_tiled.c
+++ /dev/null
@@ -1,122 +0,0 @@
-/*
- * Copyright (c) 2012 Intel Corporation
- *
- * Permission is hereby granted, free of charge, to any person obtaining a
- * copy of this software and associated documentation files (the "Software"),
- * to deal in the Software without restriction, including without limitation
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
- * and/or sell copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice (including the next
- * paragraph) shall be included in all copies or substantial portions of the
- * Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
- * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- * IN THE SOFTWARE.
- *
- * Authors:
- * Mika Kuoppala <mika.kuoppala@intel.com>
- */
-
-#include "igt.h"
-#include <stdlib.h>
-#include <string.h>
-#include <fcntl.h>
-#include <unistd.h>
-#include <pthread.h>
-
-IGT_TEST_DESCRIPTION("Check parallel access to tiled memory.");
-
-/* Testcase: check parallel access to tiled memory
- *
- * Parallel access to tiled memory caused sigbus
- */
-
-#define NUM_THREADS 2
-#define WIDTH 4096
-#define HEIGHT 4096
-
-struct thread_ctx {
- struct intel_buf *buf;
-};
-
-static struct buf_ops *bops;
-static struct thread_ctx tctx[NUM_THREADS];
-
-static void *copy_fn(void *p)
-{
- unsigned char *buf;
- struct thread_ctx *c = p;
-
- buf = malloc(WIDTH * HEIGHT);
- if (buf == NULL)
- return (void *)1;
-
- memcpy(buf, c->buf->ptr, WIDTH * HEIGHT);
-
- free(buf);
- return (void *)0;
-}
-
-static int copy_tile_threaded(struct intel_buf *buf)
-{
- int i;
- int r;
- pthread_t thr[NUM_THREADS];
- void *status;
-
- for (i = 0; i < NUM_THREADS; i++) {
- tctx[i].buf = buf;
- r = pthread_create(&thr[i], NULL, copy_fn, (void *)&tctx[i]);
- igt_assert_eq(r, 0);
- }
-
- for (i = 0; i < NUM_THREADS; i++) {
- pthread_join(thr[i], &status);
- igt_assert(status == 0);
- }
-
- return 0;
-}
-
-igt_simple_main
-{
- int fd;
- struct intel_buf *buf;
- uint32_t tiling_mode = I915_TILING_Y;
- int r;
-
- fd = drm_open_driver(DRIVER_INTEL);
- igt_assert(fd >= 0);
-
- igt_require(gem_available_fences(fd) > 0);
-
- bops = buf_ops_create(fd);
-
- buf = intel_buf_create(bops, WIDTH, HEIGHT, 8, 0, tiling_mode,
- I915_COMPRESSION_NONE);
- igt_assert(buf);
-
- buf->ptr = gem_mmap__gtt(fd, buf->handle, buf->surface[0].size,
- PROT_WRITE | PROT_READ);
- gem_set_domain(fd, buf->handle,
- I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT);
-
- r = copy_tile_threaded(buf);
- igt_assert(!r);
-
- r = gem_munmap(buf->ptr, buf->surface[0].size);
- buf->ptr = NULL;
- igt_assert(!r);
-
- intel_buf_destroy(buf);
- buf_ops_destroy(bops);
-
- close(fd);
-}
diff --git a/tests/meson.build b/tests/meson.build
index a2decf4ab..9d6006709 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -207,7 +207,6 @@ i915_progs = [
'gem_spin_batch',
'gem_streaming_writes',
'gem_sync',
- 'gem_threaded_access_tiled',
'gem_tiled_blits',
'gem_tiled_fence_blits',
'gem_tiled_partial_pwrite_pread',
--
2.29.2
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [igt-dev] [PATCH i-g-t] i915/gem_mmap_gtt: Replace gem_threaded_access_tiled 2020-12-10 10:27 [Intel-gfx] [PATCH i-g-t] i915/gem_mmap_gtt: Replace gem_threaded_access_tiled Chris Wilson @ 2020-12-10 10:29 ` Mika Kuoppala 2020-12-10 13:57 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2020-12-10 16:53 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Mika Kuoppala @ 2020-12-10 10:29 UTC (permalink / raw) To: Chris Wilson, igt-dev; +Cc: intel-gfx, Chris Wilson Chris Wilson <chris@chris-wilson.co.uk> writes: > Concurrent access to a mmap is covered by gem_mmap_gtt/concurrent, > if we add tiled access to it, we make gem_threaded_access_tiled entirely > redundant. Aww, my first ever test for igt iirc. > > Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> > Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com> Reviewed-by: Mika Kuoppala <mika.kuoppala@linux.intel.com> > --- > tests/Makefile.am | 2 - > tests/Makefile.sources | 3 - > tests/i915/gem_mmap_gtt.c | 21 +++-- > tests/i915/gem_threaded_access_tiled.c | 122 ------------------------- > tests/meson.build | 1 - > 5 files changed, 15 insertions(+), 134 deletions(-) > delete mode 100644 tests/i915/gem_threaded_access_tiled.c > > diff --git a/tests/Makefile.am b/tests/Makefile.am > index 9f0dda7d7..415271add 100644 > --- a/tests/Makefile.am > +++ b/tests/Makefile.am > @@ -118,8 +118,6 @@ gem_mmap_wc_CFLAGS = $(AM_CFLAGS) $(THREAD_CFLAGS) > gem_mmap_wc_LDADD = $(LDADD) -lpthread > gem_sync_CFLAGS = $(AM_CFLAGS) $(THREAD_CFLAGS) > gem_sync_LDADD = $(LDADD) -lpthread > -gem_threaded_access_tiled_CFLAGS = $(AM_CFLAGS) $(THREAD_CFLAGS) > -gem_threaded_access_tiled_LDADD = $(LDADD) -lpthread > gem_tiled_swapping_CFLAGS = $(AM_CFLAGS) $(THREAD_CFLAGS) > gem_tiled_swapping_LDADD = $(LDADD) -lpthread > i915_pm_rc6_residency_LDADD = $(LDADD) $(top_builddir)/lib/libigt_perf.la > diff --git a/tests/Makefile.sources b/tests/Makefile.sources > index 15fb56048..d9c8f6104 100644 > --- a/tests/Makefile.sources > +++ b/tests/Makefile.sources > @@ -422,9 +422,6 @@ gem_streaming_writes_SOURCES = i915/gem_streaming_writes.c > TESTS_progs += gem_sync > gem_sync_SOURCES = i915/gem_sync.c > > -TESTS_progs += gem_threaded_access_tiled > -gem_threaded_access_tiled_SOURCES = i915/gem_threaded_access_tiled.c > - > TESTS_progs += gem_tiled_blits > gem_tiled_blits_SOURCES = i915/gem_tiled_blits.c > > diff --git a/tests/i915/gem_mmap_gtt.c b/tests/i915/gem_mmap_gtt.c > index 6ecff12b9..61fbc5bc7 100644 > --- a/tests/i915/gem_mmap_gtt.c > +++ b/tests/i915/gem_mmap_gtt.c > @@ -72,12 +72,14 @@ mmap_bo(int fd, uint32_t handle, uint64_t size) > } > > static void * > -create_pointer_size(int fd, uint64_t size) > +create_pointer_size(int fd, uint64_t size, int tiling) > { > uint32_t handle; > void *ptr; > > handle = gem_create(fd, size); > + if (tiling) > + gem_set_tiling(fd, handle, tiling, 1024); > > ptr = mmap_bo(fd, handle, size); > > @@ -89,7 +91,7 @@ create_pointer_size(int fd, uint64_t size) > static void * > create_pointer(int fd) > { > - return create_pointer_size(fd, OBJECT_SIZE); > + return create_pointer_size(fd, OBJECT_SIZE, I915_TILING_NONE); > } > > static void > @@ -1180,20 +1182,23 @@ thread_fault_concurrent(void *closure) > } > > static void > -test_fault_concurrent(int fd) > +test_fault_concurrent(int fd, int tiling) > { > uint32_t *ptr[32]; > struct thread_fault_concurrent thread[64]; > int *ctl; > int n; > > - ctl = create_pointer_size(fd, 4096); > + if (tiling != I915_TILING_NONE) > + igt_require(gem_available_fences(fd) > 0); > + > + ctl = create_pointer_size(fd, 4096, I915_TILING_NONE); > *ctl = 1; > > for (n = 0; n < 32; n++) { > uint32_t sz = (n + 1) << 19; /* 512KiB increments */ > > - ptr[n] = create_pointer_size(fd, sz); > + ptr[n] = create_pointer_size(fd, sz, tiling); > *ptr[n] = sz / sizeof(uint32_t); /* num_elems for convenience */ > } > > @@ -1301,7 +1306,11 @@ igt_main > igt_subtest("basic-write-read-distinct") > test_read_write2(fd, READ_AFTER_WRITE); > igt_subtest("fault-concurrent") > - test_fault_concurrent(fd); > + test_fault_concurrent(fd, I915_TILING_NONE); > + igt_subtest("fault-concurrent-X") > + test_fault_concurrent(fd, I915_TILING_X); > + igt_subtest("fault-concurrent-Y") > + test_fault_concurrent(fd, I915_TILING_Y); > igt_subtest("basic-write-cpu-read-gtt") > test_write_cpu_read_gtt(fd); > igt_subtest("basic-wc") > diff --git a/tests/i915/gem_threaded_access_tiled.c b/tests/i915/gem_threaded_access_tiled.c > deleted file mode 100644 > index 53b475a45..000000000 > --- a/tests/i915/gem_threaded_access_tiled.c > +++ /dev/null > @@ -1,122 +0,0 @@ > -/* > - * Copyright (c) 2012 Intel Corporation > - * > - * Permission is hereby granted, free of charge, to any person obtaining a > - * copy of this software and associated documentation files (the "Software"), > - * to deal in the Software without restriction, including without limitation > - * the rights to use, copy, modify, merge, publish, distribute, sublicense, > - * and/or sell copies of the Software, and to permit persons to whom the > - * Software is furnished to do so, subject to the following conditions: > - * > - * The above copyright notice and this permission notice (including the next > - * paragraph) shall be included in all copies or substantial portions of the > - * Software. > - * > - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR > - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, > - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL > - * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER > - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING > - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS > - * IN THE SOFTWARE. > - * > - * Authors: > - * Mika Kuoppala <mika.kuoppala@intel.com> > - */ > - > -#include "igt.h" > -#include <stdlib.h> > -#include <string.h> > -#include <fcntl.h> > -#include <unistd.h> > -#include <pthread.h> > - > -IGT_TEST_DESCRIPTION("Check parallel access to tiled memory."); > - > -/* Testcase: check parallel access to tiled memory > - * > - * Parallel access to tiled memory caused sigbus > - */ > - > -#define NUM_THREADS 2 > -#define WIDTH 4096 > -#define HEIGHT 4096 > - > -struct thread_ctx { > - struct intel_buf *buf; > -}; > - > -static struct buf_ops *bops; > -static struct thread_ctx tctx[NUM_THREADS]; > - > -static void *copy_fn(void *p) > -{ > - unsigned char *buf; > - struct thread_ctx *c = p; > - > - buf = malloc(WIDTH * HEIGHT); > - if (buf == NULL) > - return (void *)1; > - > - memcpy(buf, c->buf->ptr, WIDTH * HEIGHT); > - > - free(buf); > - return (void *)0; > -} > - > -static int copy_tile_threaded(struct intel_buf *buf) > -{ > - int i; > - int r; > - pthread_t thr[NUM_THREADS]; > - void *status; > - > - for (i = 0; i < NUM_THREADS; i++) { > - tctx[i].buf = buf; > - r = pthread_create(&thr[i], NULL, copy_fn, (void *)&tctx[i]); > - igt_assert_eq(r, 0); > - } > - > - for (i = 0; i < NUM_THREADS; i++) { > - pthread_join(thr[i], &status); > - igt_assert(status == 0); > - } > - > - return 0; > -} > - > -igt_simple_main > -{ > - int fd; > - struct intel_buf *buf; > - uint32_t tiling_mode = I915_TILING_Y; > - int r; > - > - fd = drm_open_driver(DRIVER_INTEL); > - igt_assert(fd >= 0); > - > - igt_require(gem_available_fences(fd) > 0); > - > - bops = buf_ops_create(fd); > - > - buf = intel_buf_create(bops, WIDTH, HEIGHT, 8, 0, tiling_mode, > - I915_COMPRESSION_NONE); > - igt_assert(buf); > - > - buf->ptr = gem_mmap__gtt(fd, buf->handle, buf->surface[0].size, > - PROT_WRITE | PROT_READ); > - gem_set_domain(fd, buf->handle, > - I915_GEM_DOMAIN_GTT, I915_GEM_DOMAIN_GTT); > - > - r = copy_tile_threaded(buf); > - igt_assert(!r); > - > - r = gem_munmap(buf->ptr, buf->surface[0].size); > - buf->ptr = NULL; > - igt_assert(!r); > - > - intel_buf_destroy(buf); > - buf_ops_destroy(bops); > - > - close(fd); > -} > diff --git a/tests/meson.build b/tests/meson.build > index a2decf4ab..9d6006709 100644 > --- a/tests/meson.build > +++ b/tests/meson.build > @@ -207,7 +207,6 @@ i915_progs = [ > 'gem_spin_batch', > 'gem_streaming_writes', > 'gem_sync', > - 'gem_threaded_access_tiled', > 'gem_tiled_blits', > 'gem_tiled_fence_blits', > 'gem_tiled_partial_pwrite_pread', > -- > 2.29.2 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for i915/gem_mmap_gtt: Replace gem_threaded_access_tiled 2020-12-10 10:27 [Intel-gfx] [PATCH i-g-t] i915/gem_mmap_gtt: Replace gem_threaded_access_tiled Chris Wilson 2020-12-10 10:29 ` [igt-dev] " Mika Kuoppala @ 2020-12-10 13:57 ` Patchwork 2020-12-10 16:53 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2020-12-10 13:57 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 5661 bytes --] == Series Details == Series: i915/gem_mmap_gtt: Replace gem_threaded_access_tiled URL : https://patchwork.freedesktop.org/series/84778/ State : success == Summary == CI Bug Log - changes from CI_DRM_9471 -> IGTPW_5269 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/index.html Known issues ------------ Here are the changes found in IGTPW_5269 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@read_all_entries: - fi-tgl-y: [PASS][1] -> [DMESG-WARN][2] ([i915#402]) +2 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/fi-tgl-y/igt@debugfs_test@read_all_entries.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/fi-tgl-y/igt@debugfs_test@read_all_entries.html - fi-apl-guc: [PASS][3] -> [DMESG-WARN][4] ([i915#62]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/fi-apl-guc/igt@debugfs_test@read_all_entries.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/fi-apl-guc/igt@debugfs_test@read_all_entries.html * igt@gem_exec_suspend@basic-s0: - fi-cfl-8109u: [PASS][5] -> [INCOMPLETE][6] ([i915#2473]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/fi-cfl-8109u/igt@gem_exec_suspend@basic-s0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/fi-cfl-8109u/igt@gem_exec_suspend@basic-s0.html - fi-apl-guc: [PASS][7] -> [DMESG-WARN][8] ([i915#180] / [i915#62]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/fi-apl-guc/igt@gem_exec_suspend@basic-s0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/fi-apl-guc/igt@gem_exec_suspend@basic-s0.html * igt@runner@aborted: - fi-cfl-8109u: NOTRUN -> [FAIL][9] ([i915#2426] / [i915#2722]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/fi-cfl-8109u/igt@runner@aborted.html #### Possible fixes #### * igt@i915_pm_rpm@module-reload: - fi-kbl-guc: [SKIP][10] ([fdo#109271]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@execlists: - fi-apl-guc: [DMESG-WARN][12] ([i915#1037]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/fi-apl-guc/igt@i915_selftest@live@execlists.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/fi-apl-guc/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@ring_submission: - fi-apl-guc: [DMESG-WARN][14] -> [PASS][15] +8 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/fi-apl-guc/igt@i915_selftest@live@ring_submission.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/fi-apl-guc/igt@i915_selftest@live@ring_submission.html * igt@kms_chamelium@dp-crc-fast: - fi-kbl-7500u: [FAIL][16] ([i915#1161] / [i915#262]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html * igt@kms_force_connector_basic@force-connector-state: - fi-icl-u2: [DMESG-WARN][18] ([i915#1226]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/fi-icl-u2/igt@kms_force_connector_basic@force-connector-state.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/fi-icl-u2/igt@kms_force_connector_basic@force-connector-state.html * igt@prime_self_import@basic-with_one_bo_two_files: - fi-tgl-y: [DMESG-WARN][20] ([i915#402]) -> [PASS][21] +1 similar issue [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/fi-tgl-y/igt@prime_self_import@basic-with_one_bo_two_files.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/fi-tgl-y/igt@prime_self_import@basic-with_one_bo_two_files.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1037]: https://gitlab.freedesktop.org/drm/intel/issues/1037 [i915#1161]: https://gitlab.freedesktop.org/drm/intel/issues/1161 [i915#1226]: https://gitlab.freedesktop.org/drm/intel/issues/1226 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426 [i915#2473]: https://gitlab.freedesktop.org/drm/intel/issues/2473 [i915#262]: https://gitlab.freedesktop.org/drm/intel/issues/262 [i915#2722]: https://gitlab.freedesktop.org/drm/intel/issues/2722 [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62 Participating hosts (44 -> 39) ------------------------------ Missing (5): fi-ilk-m540 fi-hsw-4200u fi-ctg-p8600 fi-dg1-1 fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5887 -> IGTPW_5269 CI-20190529: 20190529 CI_DRM_9471: 1e384ea457bc2af47dc7653f8ebbcae21fbac5fc @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_5269: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/index.html IGT_5887: 7d87d0f1a22544e6a78dc0920b3f54b64144a029 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Testlist changes == +igt@gem_mmap_gtt@fault-concurrent-x +igt@gem_mmap_gtt@fault-concurrent-y -igt@gem_threaded_access_tiled == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/index.html [-- Attachment #1.2: Type: text/html, Size: 6666 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for i915/gem_mmap_gtt: Replace gem_threaded_access_tiled 2020-12-10 10:27 [Intel-gfx] [PATCH i-g-t] i915/gem_mmap_gtt: Replace gem_threaded_access_tiled Chris Wilson 2020-12-10 10:29 ` [igt-dev] " Mika Kuoppala 2020-12-10 13:57 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2020-12-10 16:53 ` Patchwork 2 siblings, 0 replies; 4+ messages in thread From: Patchwork @ 2020-12-10 16:53 UTC (permalink / raw) To: Chris Wilson; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 24455 bytes --] == Series Details == Series: i915/gem_mmap_gtt: Replace gem_threaded_access_tiled URL : https://patchwork.freedesktop.org/series/84778/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9471_full -> IGTPW_5269_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_5269_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_5269_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_5269_full: ### IGT changes ### #### Possible regressions #### * igt@kms_hdr@bpc-switch-suspend: - shard-kbl: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-kbl1/igt@kms_hdr@bpc-switch-suspend.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-kbl2/igt@kms_hdr@bpc-switch-suspend.html - shard-apl: [PASS][3] -> [DMESG-FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-apl1/igt@kms_hdr@bpc-switch-suspend.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-apl6/igt@kms_hdr@bpc-switch-suspend.html - shard-iclb: [PASS][5] -> [DMESG-WARN][6] +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-iclb1/igt@kms_hdr@bpc-switch-suspend.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-iclb2/igt@kms_hdr@bpc-switch-suspend.html * igt@perf@i915-ref-count: - shard-hsw: [PASS][7] -> [FAIL][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-hsw1/igt@perf@i915-ref-count.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-hsw8/igt@perf@i915-ref-count.html - shard-iclb: [PASS][9] -> [FAIL][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-iclb4/igt@perf@i915-ref-count.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-iclb3/igt@perf@i915-ref-count.html - shard-kbl: [PASS][11] -> [FAIL][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-kbl6/igt@perf@i915-ref-count.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-kbl6/igt@perf@i915-ref-count.html - shard-apl: [PASS][13] -> [FAIL][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-apl2/igt@perf@i915-ref-count.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-apl8/igt@perf@i915-ref-count.html - shard-glk: [PASS][15] -> [FAIL][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-glk7/igt@perf@i915-ref-count.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-glk9/igt@perf@i915-ref-count.html - shard-tglb: [PASS][17] -> [FAIL][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-tglb8/igt@perf@i915-ref-count.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-tglb1/igt@perf@i915-ref-count.html New tests --------- New tests have been introduced between CI_DRM_9471_full and IGTPW_5269_full: ### New IGT tests (2) ### * igt@gem_mmap_gtt@fault-concurrent-x: - Statuses : 7 pass(s) - Exec time: [2.45, 3.64] s * igt@gem_mmap_gtt@fault-concurrent-y: - Statuses : 7 pass(s) - Exec time: [2.60, 3.55] s Known issues ------------ Here are the changes found in IGTPW_5269_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_persistence@legacy-engines-mixed-process: - shard-hsw: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#1099]) +2 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-hsw8/igt@gem_ctx_persistence@legacy-engines-mixed-process.html * igt@gem_exec_whisper@basic-normal: - shard-glk: [PASS][20] -> [DMESG-WARN][21] ([i915#118] / [i915#95]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-glk1/igt@gem_exec_whisper@basic-normal.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-glk1/igt@gem_exec_whisper@basic-normal.html * igt@i915_pm_rpm@cursor-dpms: - shard-tglb: [PASS][22] -> [SKIP][23] ([i915#579]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-tglb3/igt@i915_pm_rpm@cursor-dpms.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-tglb2/igt@i915_pm_rpm@cursor-dpms.html - shard-iclb: [PASS][24] -> [SKIP][25] ([i915#579]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-iclb3/igt@i915_pm_rpm@cursor-dpms.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-iclb6/igt@i915_pm_rpm@cursor-dpms.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-hsw: NOTRUN -> [SKIP][26] ([fdo#109271]) +53 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-hsw8/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@kms_color_chamelium@pipe-a-ctm-blue-to-red: - shard-hsw: NOTRUN -> [SKIP][27] ([fdo#109271] / [fdo#111827]) +4 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-hsw4/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html * igt@kms_cursor_crc@pipe-c-cursor-suspend: - shard-hsw: [PASS][28] -> [DMESG-WARN][29] ([i915#2637]) +1 similar issue [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-hsw6/igt@kms_cursor_crc@pipe-c-cursor-suspend.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-hsw7/igt@kms_cursor_crc@pipe-c-cursor-suspend.html - shard-kbl: [PASS][30] -> [INCOMPLETE][31] ([i915#155]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-kbl7/igt@kms_cursor_crc@pipe-c-cursor-suspend.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-kbl2/igt@kms_cursor_crc@pipe-c-cursor-suspend.html - shard-apl: [PASS][32] -> [DMESG-WARN][33] ([i915#2635]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-suspend.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-apl4/igt@kms_cursor_crc@pipe-c-cursor-suspend.html - shard-tglb: [PASS][34] -> [INCOMPLETE][35] ([i915#1436] / [i915#1798] / [i915#1982] / [i915#456]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-tglb1/igt@kms_cursor_crc@pipe-c-cursor-suspend.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-tglb2/igt@kms_cursor_crc@pipe-c-cursor-suspend.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-apl: NOTRUN -> [SKIP][36] ([fdo#109271]) +3 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-apl8/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html - shard-iclb: NOTRUN -> [SKIP][37] ([fdo#109274] / [fdo#109278]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-iclb4/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_dp_aux_dev: - shard-iclb: [PASS][38] -> [DMESG-WARN][39] ([i915#262]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-iclb8/igt@kms_dp_aux_dev.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-iclb7/igt@kms_dp_aux_dev.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-tglb: [PASS][40] -> [FAIL][41] ([i915#2598]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-tglb6/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-tglb5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite: - shard-tglb: NOTRUN -> [SKIP][42] ([fdo#111825]) +2 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-iclb: NOTRUN -> [SKIP][43] ([fdo#109280]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-iclb2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html - shard-glk: NOTRUN -> [SKIP][44] ([fdo#109271]) +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-glk1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_hdmi_inject@inject-audio: - shard-tglb: [PASS][45] -> [SKIP][46] ([i915#433]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-tglb7/igt@kms_hdmi_inject@inject-audio.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-tglb7/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@bpc-switch-suspend: - shard-glk: [PASS][47] -> [DMESG-WARN][48] ([i915#2635]) +1 similar issue [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-glk6/igt@kms_hdr@bpc-switch-suspend.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-glk1/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-iclb: [PASS][49] -> [SKIP][50] ([fdo#109441]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-iclb4/igt@kms_psr@psr2_cursor_plane_onoff.html * igt@kms_universal_plane@disable-primary-vs-flip-pipe-d: - shard-kbl: NOTRUN -> [SKIP][51] ([fdo#109271]) +3 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-kbl4/igt@kms_universal_plane@disable-primary-vs-flip-pipe-d.html - shard-iclb: NOTRUN -> [SKIP][52] ([fdo#109278]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-iclb8/igt@kms_universal_plane@disable-primary-vs-flip-pipe-d.html * igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm: - shard-hsw: [PASS][53] -> [SKIP][54] ([fdo#109271]) +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-hsw6/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-hsw7/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html - shard-kbl: [PASS][55] -> [SKIP][56] ([fdo#109271]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-kbl7/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-kbl2/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html - shard-apl: [PASS][57] -> [SKIP][58] ([fdo#109271]) +1 similar issue [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-apl7/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-apl4/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html - shard-glk: [PASS][59] -> [SKIP][60] ([fdo#109271]) +1 similar issue [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-glk8/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-glk1/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html - shard-iclb: [PASS][61] -> [SKIP][62] ([fdo#109278]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-iclb7/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-iclb6/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html - shard-tglb: [PASS][63] -> [SKIP][64] ([i915#2648]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-tglb1/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-tglb2/igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm.html #### Possible fixes #### * igt@i915_pm_rpm@debugfs-forcewake-user: - shard-hsw: [SKIP][65] ([fdo#109271]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-hsw4/igt@i915_pm_rpm@debugfs-forcewake-user.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-hsw4/igt@i915_pm_rpm@debugfs-forcewake-user.html - shard-kbl: [SKIP][67] ([fdo#109271]) -> [PASS][68] [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-kbl2/igt@i915_pm_rpm@debugfs-forcewake-user.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-kbl2/igt@i915_pm_rpm@debugfs-forcewake-user.html - shard-iclb: [SKIP][69] ([i915#579]) -> [PASS][70] [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-iclb8/igt@i915_pm_rpm@debugfs-forcewake-user.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-iclb2/igt@i915_pm_rpm@debugfs-forcewake-user.html - shard-tglb: [SKIP][71] ([i915#579]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-tglb6/igt@i915_pm_rpm@debugfs-forcewake-user.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-tglb2/igt@i915_pm_rpm@debugfs-forcewake-user.html - shard-apl: [SKIP][73] ([fdo#109271]) -> [PASS][74] [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-apl8/igt@i915_pm_rpm@debugfs-forcewake-user.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-apl6/igt@i915_pm_rpm@debugfs-forcewake-user.html - shard-glk: [SKIP][75] ([fdo#109271]) -> [PASS][76] [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-glk6/igt@i915_pm_rpm@debugfs-forcewake-user.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-glk1/igt@i915_pm_rpm@debugfs-forcewake-user.html * igt@kms_big_fb@y-tiled-32bpp-rotate-0: - shard-glk: [FAIL][77] ([i915#1119]) -> [PASS][78] [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-glk8/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-glk6/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html * igt@kms_cursor_crc@pipe-a-cursor-256x85-onscreen: - shard-kbl: [FAIL][79] ([i915#54]) -> [PASS][80] [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-256x85-onscreen.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-256x85-onscreen.html - shard-apl: [FAIL][81] ([i915#54]) -> [PASS][82] [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-apl7/igt@kms_cursor_crc@pipe-a-cursor-256x85-onscreen.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-apl2/igt@kms_cursor_crc@pipe-a-cursor-256x85-onscreen.html - shard-glk: [FAIL][83] ([i915#54]) -> [PASS][84] [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-glk5/igt@kms_cursor_crc@pipe-a-cursor-256x85-onscreen.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-glk3/igt@kms_cursor_crc@pipe-a-cursor-256x85-onscreen.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-hsw: [FAIL][85] ([i915#2370]) -> [PASS][86] [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-hsw1/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-hsw1/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-tglb: [FAIL][87] ([i915#2346]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-tglb1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-tglb5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-glk: [FAIL][89] ([i915#49]) -> [PASS][90] [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-glk5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-glk8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_psr@psr2_primary_mmap_cpu: - shard-iclb: [SKIP][91] ([fdo#109441]) -> [PASS][92] +1 similar issue [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-iclb8/igt@kms_psr@psr2_primary_mmap_cpu.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend: - shard-hsw: [DMESG-WARN][93] ([i915#2637]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-hsw4/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-hsw7/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html - shard-kbl: [INCOMPLETE][95] ([i915#155]) -> [PASS][96] [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-kbl2/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-kbl2/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html - shard-iclb: [DMESG-WARN][97] ([i915#1602]) -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-iclb8/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-iclb1/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html - shard-apl: [DMESG-WARN][99] ([i915#1602] / [i915#2635]) -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-apl8/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-apl2/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html - shard-glk: [DMESG-WARN][101] ([i915#1602] / [i915#2635]) -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-glk6/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-glk2/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html - shard-tglb: [INCOMPLETE][103] ([i915#1436] / [i915#1602] / [i915#1798] / [i915#1887] / [i915#1982] / [i915#2411] / [i915#456]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-tglb6/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-tglb7/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html * igt@perf@polling-parameterized: - shard-tglb: [FAIL][105] ([i915#1542]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-tglb7/igt@perf@polling-parameterized.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-tglb3/igt@perf@polling-parameterized.html #### Warnings #### * igt@i915_pm_dc@dc3co-vpb-simulation: - shard-iclb: [SKIP][107] ([i915#588]) -> [SKIP][108] ([i915#658]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-iclb7/igt@i915_pm_dc@dc3co-vpb-simulation.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-iclb: [WARN][109] ([i915#1804] / [i915#2684]) -> [WARN][110] ([i915#2681] / [i915#2684]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-iclb7/igt@i915_pm_rc6_residency@rc6-fence.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-iclb8/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rpm@pc8-residency: - shard-iclb: [SKIP][111] ([i915#579]) -> [SKIP][112] ([fdo#109293] / [fdo#109506]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-iclb5/igt@i915_pm_rpm@pc8-residency.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-iclb3/igt@i915_pm_rpm@pc8-residency.html * igt@runner@aborted: - shard-kbl: [FAIL][113] ([i915#2295] / [i915#2722]) -> [FAIL][114] ([i915#2295] / [i915#2722] / [i915#483]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9471/shard-kbl7/igt@runner@aborted.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/shard-kbl3/igt@runner@aborted.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1119]: https://gitlab.freedesktop.org/drm/intel/issues/1119 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436 [i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542 [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155 [i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602 [i915#1798]: https://gitlab.freedesktop.org/drm/intel/issues/1798 [i915#1804]: https://gitlab.freedesktop.org/drm/intel/issues/1804 [i915#1887]: https://gitlab.freedesktop.org/drm/intel/issues/1887 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2370]: https://gitlab.freedesktop.org/drm/intel/issues/2370 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2598]: https://gitlab.freedesktop.org/drm/intel/issues/2598 [i915#262]: https://gitlab.freedesktop.org/drm/intel/issues/262 [i915#2635]: https://gitlab.freedesktop.org/drm/intel/issues/2635 [i915#2637]: https://gitlab.freedesktop.org/drm/intel/issues/2637 [i915#2648]: https://gitlab.freedesktop.org/drm/intel/issues/2648 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684 [i915#2722]: https://gitlab.freedesktop.org/drm/intel/issues/2722 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#456]: https://gitlab.freedesktop.org/drm/intel/issues/456 [i915#483]: https://gitlab.freedesktop.org/drm/intel/issues/483 [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49 [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54 [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579 [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95 Participating hosts (10 -> 8) ------------------------------ Missing (2): pig-skl-6260u pig-glk-j5005 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5887 -> IGTPW_5269 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_9471: 1e384ea457bc2af47dc7653f8ebbcae21fbac5fc @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_5269: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/index.html IGT_5887: 7d87d0f1a22544e6a78dc0920b3f54b64144a029 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5269/index.html [-- Attachment #1.2: Type: text/html, Size: 28762 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-12-10 16:53 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-12-10 10:27 [Intel-gfx] [PATCH i-g-t] i915/gem_mmap_gtt: Replace gem_threaded_access_tiled Chris Wilson 2020-12-10 10:29 ` [igt-dev] " Mika Kuoppala 2020-12-10 13:57 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2020-12-10 16:53 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox