* [igt-dev] [PATCH i-g-t 0/2] Change gem_sync to no-reloc
@ 2021-10-28 18:23 Zbigniew Kempczyński
2021-10-28 18:23 ` [igt-dev] [PATCH i-g-t 1/2] tests/gem_sync: Use timeouts definitions instead hardcoded value Zbigniew Kempczyński
` (6 more replies)
0 siblings, 7 replies; 16+ messages in thread
From: Zbigniew Kempczyński @ 2021-10-28 18:23 UTC (permalink / raw)
To: igt-dev; +Cc: Zbigniew Kempczyński
Add timeout definitions + change gem_sync test
Zbigniew Kempczyński (2):
tests/gem_sync: Use timeouts definitions instead hardcoded value
tests/gem_sync: Use softpin path for no-reloc gens
tests/i915/gem_sync.c | 126 ++++++++++++++++++++++++++++++------------
1 file changed, 91 insertions(+), 35 deletions(-)
--
2.26.0
^ permalink raw reply [flat|nested] 16+ messages in thread* [igt-dev] [PATCH i-g-t 1/2] tests/gem_sync: Use timeouts definitions instead hardcoded value 2021-10-28 18:23 [igt-dev] [PATCH i-g-t 0/2] Change gem_sync to no-reloc Zbigniew Kempczyński @ 2021-10-28 18:23 ` Zbigniew Kempczyński 2021-10-29 21:32 ` Dixit, Ashutosh 2021-10-28 18:23 ` [igt-dev] [PATCH i-g-t 2/2] tests/gem_sync: Use softpin path for no-reloc gens Zbigniew Kempczyński ` (5 subsequent siblings) 6 siblings, 1 reply; 16+ messages in thread From: Zbigniew Kempczyński @ 2021-10-28 18:23 UTC (permalink / raw) To: igt-dev; +Cc: Zbigniew Kempczyński, Ashutosh Dixit Make developer life easier and use definitions which are useful to shorten time during work on some subtest. Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> Cc: Ashutosh Dixit <ashutosh.dixit@intel.com> --- tests/i915/gem_sync.c | 68 +++++++++++++++++++++++-------------------- 1 file changed, 37 insertions(+), 31 deletions(-) diff --git a/tests/i915/gem_sync.c b/tests/i915/gem_sync.c index 0093ca25f..3b9f9889c 100644 --- a/tests/i915/gem_sync.c +++ b/tests/i915/gem_sync.c @@ -1150,6 +1150,11 @@ preempt(int fd, const intel_ctx_t *ctx, unsigned ring, intel_ctx_destroy(fd, tmp_ctx[0]); } +/* small / medium / large */ +#define STIMEOUT 1 +#define MTIMEOUT 2 +#define LTIMEOUT 20 + igt_main { const int ncpus = sysconf(_SC_NPROCESSORS_ONLN); @@ -1160,31 +1165,31 @@ igt_main int num_children; int timeout; } all[] = { - { "basic-each", sync_ring, 1, 2 }, - { "basic-store-each", store_ring, 1, 2 }, - { "basic-many-each", store_many, 0, 2 }, - { "switch-each", switch_ring, 1, 20 }, - { "forked-switch-each", switch_ring, ncpus, 20 }, - { "forked-each", sync_ring, ncpus, 20 }, - { "forked-store-each", store_ring, ncpus, 20 }, - { "active-each", active_ring, 0, 20 }, - { "wakeup-each", wakeup_ring, 20, 1 }, - { "active-wakeup-each", active_wakeup_ring, 20, 1 }, - { "double-wakeup-each", wakeup_ring, 20, 2 }, + { "basic-each", sync_ring, 1, MTIMEOUT }, + { "basic-store-each", store_ring, 1, MTIMEOUT }, + { "basic-many-each", store_many, 0, MTIMEOUT }, + { "switch-each", switch_ring, 1, LTIMEOUT }, + { "forked-switch-each", switch_ring, ncpus, LTIMEOUT }, + { "forked-each", sync_ring, ncpus, LTIMEOUT }, + { "forked-store-each", store_ring, ncpus, LTIMEOUT }, + { "active-each", active_ring, 0, LTIMEOUT }, + { "wakeup-each", wakeup_ring, 20, STIMEOUT }, + { "active-wakeup-each", active_wakeup_ring, 20, STIMEOUT }, + { "double-wakeup-each", wakeup_ring, 20, MTIMEOUT }, {} }, individual[] = { - { "default", sync_ring, 1, 20 }, - { "idle", idle_ring, 0, 20 }, - { "active", active_ring, 0, 20 }, - { "wakeup", wakeup_ring, 20, 1 }, - { "active-wakeup", active_wakeup_ring, 20, 1 }, - { "double-wakeup", wakeup_ring, 20, 2 }, - { "store", store_ring, 1, 20 }, - { "switch", switch_ring, 1, 20 }, - { "forked-switch", switch_ring, ncpus, 20 }, - { "many", store_many, 0, 20 }, - { "forked", sync_ring, ncpus, 20 }, - { "forked-store", store_ring, ncpus, 20 }, + { "default", sync_ring, 1, LTIMEOUT }, + { "idle", idle_ring, 0, LTIMEOUT }, + { "active", active_ring, 0, LTIMEOUT }, + { "wakeup", wakeup_ring, 20, STIMEOUT }, + { "active-wakeup", active_wakeup_ring, 20, STIMEOUT }, + { "double-wakeup", wakeup_ring, 20, MTIMEOUT }, + { "store", store_ring, 1, LTIMEOUT }, + { "switch", switch_ring, 1, LTIMEOUT }, + { "forked-switch", switch_ring, ncpus, LTIMEOUT }, + { "many", store_many, 0, LTIMEOUT }, + { "forked", sync_ring, ncpus, LTIMEOUT }, + { "forked-store", store_ring, ncpus, LTIMEOUT }, {} }; #define for_each_test(t, T) for(typeof(*T) *t = T; t->name; t++) @@ -1215,19 +1220,20 @@ igt_main } } + igt_subtest("basic-all") - sync_all(fd, ctx, 1, 2); + sync_all(fd, ctx, 1, MTIMEOUT); igt_subtest("basic-store-all") - store_all(fd, ctx, 1, 2); + store_all(fd, ctx, 1, MTIMEOUT); igt_subtest("all") - sync_all(fd, ctx, 1, 20); + sync_all(fd, ctx, 1, LTIMEOUT); igt_subtest("store-all") - store_all(fd, ctx, 1, 20); + store_all(fd, ctx, 1, LTIMEOUT); igt_subtest("forked-all") - sync_all(fd, ctx, ncpus, 20); + sync_all(fd, ctx, ncpus, LTIMEOUT); igt_subtest("forked-store-all") - store_all(fd, ctx, ncpus, 20); + store_all(fd, ctx, ncpus, LTIMEOUT); for_each_test(t, all) { igt_subtest_f("%s", t->name) @@ -1254,11 +1260,11 @@ igt_main } igt_subtest("preempt-all") - preempt(fd, ctx, ALL_ENGINES, 1, 20); + preempt(fd, ctx, ALL_ENGINES, 1, LTIMEOUT); igt_subtest_with_dynamic("preempt") { for_each_ctx_engine(fd, ctx, e) { igt_dynamic_f("%s", e->name) - preempt(fd, ctx, e->flags, ncpus, 20); + preempt(fd, ctx, e->flags, ncpus, LTIMEOUT); } } } -- 2.26.0 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] tests/gem_sync: Use timeouts definitions instead hardcoded value 2021-10-28 18:23 ` [igt-dev] [PATCH i-g-t 1/2] tests/gem_sync: Use timeouts definitions instead hardcoded value Zbigniew Kempczyński @ 2021-10-29 21:32 ` Dixit, Ashutosh 2021-11-02 7:40 ` Zbigniew Kempczyński 0 siblings, 1 reply; 16+ messages in thread From: Dixit, Ashutosh @ 2021-10-29 21:32 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev On Thu, 28 Oct 2021 11:23:21 -0700, Zbigniew Kempczyński wrote: > > Make developer life easier and use definitions which are useful > to shorten time during work on some subtest. Hmm, I don't know about this one. If we want to increase 2 to 5 say for some tests or reduce 20 to 10 for some others, previously we could just change the numbers and here we need to go and #define some more short-short, short-medium etc. Can we leave what we have as is? Unless you have a strong preference. Thanks. > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > Cc: Ashutosh Dixit <ashutosh.dixit@intel.com> > --- > tests/i915/gem_sync.c | 68 +++++++++++++++++++++++-------------------- > 1 file changed, 37 insertions(+), 31 deletions(-) > > diff --git a/tests/i915/gem_sync.c b/tests/i915/gem_sync.c > index 0093ca25f..3b9f9889c 100644 > --- a/tests/i915/gem_sync.c > +++ b/tests/i915/gem_sync.c > @@ -1150,6 +1150,11 @@ preempt(int fd, const intel_ctx_t *ctx, unsigned ring, > intel_ctx_destroy(fd, tmp_ctx[0]); > } > > +/* small / medium / large */ > +#define STIMEOUT 1 > +#define MTIMEOUT 2 > +#define LTIMEOUT 20 > + > igt_main > { > const int ncpus = sysconf(_SC_NPROCESSORS_ONLN); > @@ -1160,31 +1165,31 @@ igt_main > int num_children; > int timeout; > } all[] = { > - { "basic-each", sync_ring, 1, 2 }, > - { "basic-store-each", store_ring, 1, 2 }, > - { "basic-many-each", store_many, 0, 2 }, > - { "switch-each", switch_ring, 1, 20 }, > - { "forked-switch-each", switch_ring, ncpus, 20 }, > - { "forked-each", sync_ring, ncpus, 20 }, > - { "forked-store-each", store_ring, ncpus, 20 }, > - { "active-each", active_ring, 0, 20 }, > - { "wakeup-each", wakeup_ring, 20, 1 }, > - { "active-wakeup-each", active_wakeup_ring, 20, 1 }, > - { "double-wakeup-each", wakeup_ring, 20, 2 }, > + { "basic-each", sync_ring, 1, MTIMEOUT }, > + { "basic-store-each", store_ring, 1, MTIMEOUT }, > + { "basic-many-each", store_many, 0, MTIMEOUT }, > + { "switch-each", switch_ring, 1, LTIMEOUT }, > + { "forked-switch-each", switch_ring, ncpus, LTIMEOUT }, > + { "forked-each", sync_ring, ncpus, LTIMEOUT }, > + { "forked-store-each", store_ring, ncpus, LTIMEOUT }, > + { "active-each", active_ring, 0, LTIMEOUT }, > + { "wakeup-each", wakeup_ring, 20, STIMEOUT }, > + { "active-wakeup-each", active_wakeup_ring, 20, STIMEOUT }, > + { "double-wakeup-each", wakeup_ring, 20, MTIMEOUT }, > {} > }, individual[] = { > - { "default", sync_ring, 1, 20 }, > - { "idle", idle_ring, 0, 20 }, > - { "active", active_ring, 0, 20 }, > - { "wakeup", wakeup_ring, 20, 1 }, > - { "active-wakeup", active_wakeup_ring, 20, 1 }, > - { "double-wakeup", wakeup_ring, 20, 2 }, > - { "store", store_ring, 1, 20 }, > - { "switch", switch_ring, 1, 20 }, > - { "forked-switch", switch_ring, ncpus, 20 }, > - { "many", store_many, 0, 20 }, > - { "forked", sync_ring, ncpus, 20 }, > - { "forked-store", store_ring, ncpus, 20 }, > + { "default", sync_ring, 1, LTIMEOUT }, > + { "idle", idle_ring, 0, LTIMEOUT }, > + { "active", active_ring, 0, LTIMEOUT }, > + { "wakeup", wakeup_ring, 20, STIMEOUT }, > + { "active-wakeup", active_wakeup_ring, 20, STIMEOUT }, > + { "double-wakeup", wakeup_ring, 20, MTIMEOUT }, > + { "store", store_ring, 1, LTIMEOUT }, > + { "switch", switch_ring, 1, LTIMEOUT }, > + { "forked-switch", switch_ring, ncpus, LTIMEOUT }, > + { "many", store_many, 0, LTIMEOUT }, > + { "forked", sync_ring, ncpus, LTIMEOUT }, > + { "forked-store", store_ring, ncpus, LTIMEOUT }, > {} > }; > #define for_each_test(t, T) for(typeof(*T) *t = T; t->name; t++) > @@ -1215,19 +1220,20 @@ igt_main > } > } > > + > igt_subtest("basic-all") > - sync_all(fd, ctx, 1, 2); > + sync_all(fd, ctx, 1, MTIMEOUT); > igt_subtest("basic-store-all") > - store_all(fd, ctx, 1, 2); > + store_all(fd, ctx, 1, MTIMEOUT); > > igt_subtest("all") > - sync_all(fd, ctx, 1, 20); > + sync_all(fd, ctx, 1, LTIMEOUT); > igt_subtest("store-all") > - store_all(fd, ctx, 1, 20); > + store_all(fd, ctx, 1, LTIMEOUT); > igt_subtest("forked-all") > - sync_all(fd, ctx, ncpus, 20); > + sync_all(fd, ctx, ncpus, LTIMEOUT); > igt_subtest("forked-store-all") > - store_all(fd, ctx, ncpus, 20); > + store_all(fd, ctx, ncpus, LTIMEOUT); > > for_each_test(t, all) { > igt_subtest_f("%s", t->name) > @@ -1254,11 +1260,11 @@ igt_main > } > > igt_subtest("preempt-all") > - preempt(fd, ctx, ALL_ENGINES, 1, 20); > + preempt(fd, ctx, ALL_ENGINES, 1, LTIMEOUT); > igt_subtest_with_dynamic("preempt") { > for_each_ctx_engine(fd, ctx, e) { > igt_dynamic_f("%s", e->name) > - preempt(fd, ctx, e->flags, ncpus, 20); > + preempt(fd, ctx, e->flags, ncpus, LTIMEOUT); > } > } > } > -- > 2.26.0 > ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] tests/gem_sync: Use timeouts definitions instead hardcoded value 2021-10-29 21:32 ` Dixit, Ashutosh @ 2021-11-02 7:40 ` Zbigniew Kempczyński 0 siblings, 0 replies; 16+ messages in thread From: Zbigniew Kempczyński @ 2021-11-02 7:40 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: igt-dev On Fri, Oct 29, 2021 at 02:32:48PM -0700, Dixit, Ashutosh wrote: > On Thu, 28 Oct 2021 11:23:21 -0700, Zbigniew Kempczyński wrote: > > > > Make developer life easier and use definitions which are useful > > to shorten time during work on some subtest. > > Hmm, I don't know about this one. If we want to increase 2 to 5 say for > some tests or reduce 20 to 10 for some others, previously we could just > change the numbers and here we need to go and #define some more > short-short, short-medium etc. Can we leave what we have as is? Unless you > have a strong preference. Thanks. No, I have no strong preference about this. I can leave it as it is - I've added these defines because testing during rewrite was very time consuming and I wanted to shorten it. And increase code readibilty a bit on the first look. I'm going to remove this in next series. -- Zbigniew > > > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > > Cc: Ashutosh Dixit <ashutosh.dixit@intel.com> > > --- > > tests/i915/gem_sync.c | 68 +++++++++++++++++++++++-------------------- > > 1 file changed, 37 insertions(+), 31 deletions(-) > > > > diff --git a/tests/i915/gem_sync.c b/tests/i915/gem_sync.c > > index 0093ca25f..3b9f9889c 100644 > > --- a/tests/i915/gem_sync.c > > +++ b/tests/i915/gem_sync.c > > @@ -1150,6 +1150,11 @@ preempt(int fd, const intel_ctx_t *ctx, unsigned ring, > > intel_ctx_destroy(fd, tmp_ctx[0]); > > } > > > > +/* small / medium / large */ > > +#define STIMEOUT 1 > > +#define MTIMEOUT 2 > > +#define LTIMEOUT 20 > > + > > igt_main > > { > > const int ncpus = sysconf(_SC_NPROCESSORS_ONLN); > > @@ -1160,31 +1165,31 @@ igt_main > > int num_children; > > int timeout; > > } all[] = { > > - { "basic-each", sync_ring, 1, 2 }, > > - { "basic-store-each", store_ring, 1, 2 }, > > - { "basic-many-each", store_many, 0, 2 }, > > - { "switch-each", switch_ring, 1, 20 }, > > - { "forked-switch-each", switch_ring, ncpus, 20 }, > > - { "forked-each", sync_ring, ncpus, 20 }, > > - { "forked-store-each", store_ring, ncpus, 20 }, > > - { "active-each", active_ring, 0, 20 }, > > - { "wakeup-each", wakeup_ring, 20, 1 }, > > - { "active-wakeup-each", active_wakeup_ring, 20, 1 }, > > - { "double-wakeup-each", wakeup_ring, 20, 2 }, > > + { "basic-each", sync_ring, 1, MTIMEOUT }, > > + { "basic-store-each", store_ring, 1, MTIMEOUT }, > > + { "basic-many-each", store_many, 0, MTIMEOUT }, > > + { "switch-each", switch_ring, 1, LTIMEOUT }, > > + { "forked-switch-each", switch_ring, ncpus, LTIMEOUT }, > > + { "forked-each", sync_ring, ncpus, LTIMEOUT }, > > + { "forked-store-each", store_ring, ncpus, LTIMEOUT }, > > + { "active-each", active_ring, 0, LTIMEOUT }, > > + { "wakeup-each", wakeup_ring, 20, STIMEOUT }, > > + { "active-wakeup-each", active_wakeup_ring, 20, STIMEOUT }, > > + { "double-wakeup-each", wakeup_ring, 20, MTIMEOUT }, > > {} > > }, individual[] = { > > - { "default", sync_ring, 1, 20 }, > > - { "idle", idle_ring, 0, 20 }, > > - { "active", active_ring, 0, 20 }, > > - { "wakeup", wakeup_ring, 20, 1 }, > > - { "active-wakeup", active_wakeup_ring, 20, 1 }, > > - { "double-wakeup", wakeup_ring, 20, 2 }, > > - { "store", store_ring, 1, 20 }, > > - { "switch", switch_ring, 1, 20 }, > > - { "forked-switch", switch_ring, ncpus, 20 }, > > - { "many", store_many, 0, 20 }, > > - { "forked", sync_ring, ncpus, 20 }, > > - { "forked-store", store_ring, ncpus, 20 }, > > + { "default", sync_ring, 1, LTIMEOUT }, > > + { "idle", idle_ring, 0, LTIMEOUT }, > > + { "active", active_ring, 0, LTIMEOUT }, > > + { "wakeup", wakeup_ring, 20, STIMEOUT }, > > + { "active-wakeup", active_wakeup_ring, 20, STIMEOUT }, > > + { "double-wakeup", wakeup_ring, 20, MTIMEOUT }, > > + { "store", store_ring, 1, LTIMEOUT }, > > + { "switch", switch_ring, 1, LTIMEOUT }, > > + { "forked-switch", switch_ring, ncpus, LTIMEOUT }, > > + { "many", store_many, 0, LTIMEOUT }, > > + { "forked", sync_ring, ncpus, LTIMEOUT }, > > + { "forked-store", store_ring, ncpus, LTIMEOUT }, > > {} > > }; > > #define for_each_test(t, T) for(typeof(*T) *t = T; t->name; t++) > > @@ -1215,19 +1220,20 @@ igt_main > > } > > } > > > > + > > igt_subtest("basic-all") > > - sync_all(fd, ctx, 1, 2); > > + sync_all(fd, ctx, 1, MTIMEOUT); > > igt_subtest("basic-store-all") > > - store_all(fd, ctx, 1, 2); > > + store_all(fd, ctx, 1, MTIMEOUT); > > > > igt_subtest("all") > > - sync_all(fd, ctx, 1, 20); > > + sync_all(fd, ctx, 1, LTIMEOUT); > > igt_subtest("store-all") > > - store_all(fd, ctx, 1, 20); > > + store_all(fd, ctx, 1, LTIMEOUT); > > igt_subtest("forked-all") > > - sync_all(fd, ctx, ncpus, 20); > > + sync_all(fd, ctx, ncpus, LTIMEOUT); > > igt_subtest("forked-store-all") > > - store_all(fd, ctx, ncpus, 20); > > + store_all(fd, ctx, ncpus, LTIMEOUT); > > > > for_each_test(t, all) { > > igt_subtest_f("%s", t->name) > > @@ -1254,11 +1260,11 @@ igt_main > > } > > > > igt_subtest("preempt-all") > > - preempt(fd, ctx, ALL_ENGINES, 1, 20); > > + preempt(fd, ctx, ALL_ENGINES, 1, LTIMEOUT); > > igt_subtest_with_dynamic("preempt") { > > for_each_ctx_engine(fd, ctx, e) { > > igt_dynamic_f("%s", e->name) > > - preempt(fd, ctx, e->flags, ncpus, 20); > > + preempt(fd, ctx, e->flags, ncpus, LTIMEOUT); > > } > > } > > } > > -- > > 2.26.0 > > ^ permalink raw reply [flat|nested] 16+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] tests/gem_sync: Use softpin path for no-reloc gens 2021-10-28 18:23 [igt-dev] [PATCH i-g-t 0/2] Change gem_sync to no-reloc Zbigniew Kempczyński 2021-10-28 18:23 ` [igt-dev] [PATCH i-g-t 1/2] tests/gem_sync: Use timeouts definitions instead hardcoded value Zbigniew Kempczyński @ 2021-10-28 18:23 ` Zbigniew Kempczyński 2021-10-30 3:55 ` Dixit, Ashutosh 2021-10-28 21:11 ` [igt-dev] ✗ Fi.CI.BAT: failure for Change gem_sync to no-reloc Patchwork ` (4 subsequent siblings) 6 siblings, 1 reply; 16+ messages in thread From: Zbigniew Kempczyński @ 2021-10-28 18:23 UTC (permalink / raw) To: igt-dev; +Cc: Zbigniew Kempczyński, Ashutosh Dixit Migrate to softpin with pre-warming batch or an allocator. Some tests which don't fork can use pre-warming batch which establishes offsets in the kernel before real work is performed. For such adding pinned flag + zeroing relocation is enough. For multiprocess scenarios we need to arbitrate and an allocator need to be used instead. v2: fix also tests which are not running on CI (Ashutosh) Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> Cc: Ashutosh Dixit <ashutosh.dixit@intel.com> --- tests/i915/gem_sync.c | 60 +++++++++++++++++++++++++++++++++++++++---- 1 file changed, 55 insertions(+), 5 deletions(-) diff --git a/tests/i915/gem_sync.c b/tests/i915/gem_sync.c index 3b9f9889c..a25a1a239 100644 --- a/tests/i915/gem_sync.c +++ b/tests/i915/gem_sync.c @@ -237,6 +237,7 @@ wakeup_ring(int fd, const intel_ctx_t *ctx, unsigned ring, int timeout, int wlen) { struct intel_engine_data ied; + uint64_t ahnd = get_reloc_ahnd(fd, ctx->id); ied = list_store_engines(fd, ctx, ring); igt_require(ied.nengines); @@ -250,8 +251,13 @@ wakeup_ring(int fd, const intel_ctx_t *ctx, unsigned ring, unsigned long cycles; igt_spin_t *spin; + ahnd = get_reloc_ahnd(fd, ctx->id); + memset(&object, 0, sizeof(object)); object.handle = gem_create(fd, 4096); + object.offset = get_offset(ahnd, object.handle, 4096, 0); + if (ahnd) + object.flags = EXEC_OBJECT_PINNED; gem_write(fd, object.handle, 0, &bbe, sizeof(bbe)); memset(&execbuf, 0, sizeof(execbuf)); @@ -261,6 +267,7 @@ wakeup_ring(int fd, const intel_ctx_t *ctx, unsigned ring, execbuf.rsvd1 = ctx->id; spin = __igt_spin_new(fd, + .ahnd = ahnd, .ctx = ctx, .engine = execbuf.flags, .flags = (IGT_SPIN_POLL_RUN | @@ -323,8 +330,11 @@ wakeup_ring(int fd, const intel_ctx_t *ctx, unsigned ring, igt_spin_free(fd, spin); gem_close(fd, object.handle); + put_offset(ahnd, object.handle); + put_ahnd(ahnd); } igt_waitchildren_timeout(2*timeout, NULL); + put_ahnd(ahnd); igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0); } @@ -332,6 +342,7 @@ static void active_ring(int fd, const intel_ctx_t *ctx, unsigned int ring, int num_children, int timeout) { struct intel_engine_data ied; + uint64_t ahnd = get_reloc_ahnd(fd, ctx->id); ied = list_store_engines(fd, ctx, ring); igt_require(ied.nengines); @@ -342,12 +353,16 @@ static void active_ring(int fd, const intel_ctx_t *ctx, unsigned int ring, unsigned long cycles; igt_spin_t *spin[2]; + ahnd = get_reloc_ahnd(fd, ctx->id); + spin[0] = __igt_spin_new(fd, + .ahnd = ahnd, .ctx = ctx, .engine = ied_flags(&ied, child), .flags = IGT_SPIN_FAST); spin[1] = __igt_spin_new(fd, + .ahnd = ahnd, .ctx = ctx, .engine = ied_flags(&ied, child), .flags = IGT_SPIN_FAST); @@ -370,12 +385,14 @@ static void active_ring(int fd, const intel_ctx_t *ctx, unsigned int ring, } while ((elapsed = gettime()) < end); igt_spin_free(fd, spin[1]); igt_spin_free(fd, spin[0]); + put_ahnd(ahnd); igt_info("%s %ld cycles: %.3f us\n", ied_name(&ied, child), cycles, (elapsed - start) * 1e6 / cycles); } igt_waitchildren_timeout(2*timeout, NULL); + put_ahnd(ahnd); igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0); } @@ -384,6 +401,8 @@ active_wakeup_ring(int fd, const intel_ctx_t *ctx, unsigned ring, int timeout, int wlen) { struct intel_engine_data ied; + uint64_t ahnd0 = get_reloc_ahnd(fd, 0); + uint64_t ahnd = get_reloc_ahnd(fd, ctx->id); ied = list_store_engines(fd, ctx, ring); igt_require(ied.nengines); @@ -397,8 +416,14 @@ active_wakeup_ring(int fd, const intel_ctx_t *ctx, unsigned ring, unsigned long cycles; igt_spin_t *spin[2]; + ahnd0 = get_reloc_ahnd(fd, 0); + ahnd = get_reloc_ahnd(fd, ctx->id); + memset(&object, 0, sizeof(object)); object.handle = gem_create(fd, 4096); + object.offset = get_offset(ahnd, object.handle, 4096, 0); + if (ahnd) + object.offset = EXEC_OBJECT_PINNED; gem_write(fd, object.handle, 0, &bbe, sizeof(bbe)); memset(&execbuf, 0, sizeof(execbuf)); @@ -408,12 +433,14 @@ active_wakeup_ring(int fd, const intel_ctx_t *ctx, unsigned ring, execbuf.rsvd1 = ctx->id; spin[0] = __igt_spin_new(fd, + .ahnd = ahnd, .engine = execbuf.flags, .flags = (IGT_SPIN_POLL_RUN | IGT_SPIN_FAST)); igt_assert(igt_spin_has_poll(spin[0])); spin[1] = __igt_spin_new(fd, + .ahnd = ahnd, .engine = execbuf.flags, .flags = (IGT_SPIN_POLL_RUN | IGT_SPIN_FAST)); @@ -490,8 +517,13 @@ active_wakeup_ring(int fd, const intel_ctx_t *ctx, unsigned ring, igt_spin_free(fd, spin[1]); igt_spin_free(fd, spin[0]); gem_close(fd, object.handle); + put_offset(ahnd, object.handle); + put_ahnd(ahnd); + put_ahnd(ahnd0); } igt_waitchildren_timeout(2*timeout, NULL); + put_ahnd(ahnd); + put_ahnd(ahnd0); igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0); } @@ -501,6 +533,7 @@ store_ring(int fd, const intel_ctx_t *ctx, unsigned ring, { const unsigned int gen = intel_gen(intel_get_drm_devid(fd)); struct intel_engine_data ied; + bool has_relocs = gem_has_relocations(fd); ied = list_store_engines(fd, ctx, ring); igt_require(ied.nengines); @@ -532,10 +565,11 @@ store_ring(int fd, const intel_ctx_t *ctx, unsigned ring, gem_execbuf(fd, &execbuf); object[0].flags |= EXEC_OBJECT_WRITE; + object[0].flags |= has_relocs ? 0 : EXEC_OBJECT_PINNED; object[1].handle = gem_create(fd, 20*1024); object[1].relocs_ptr = to_user_pointer(reloc); - object[1].relocation_count = 1024; + object[1].relocation_count = has_relocs ? 1024 : 0; batch = gem_mmap__cpu(fd, object[1].handle, 0, 20*1024, PROT_WRITE | PROT_READ); @@ -599,6 +633,7 @@ switch_ring(int fd, const intel_ctx_t *ctx, unsigned ring, { const unsigned int gen = intel_gen(intel_get_drm_devid(fd)); struct intel_engine_data ied; + bool has_relocs = gem_has_relocations(fd); gem_require_contexts(fd); @@ -644,7 +679,7 @@ switch_ring(int fd, const intel_ctx_t *ctx, unsigned ring, c->object[1].handle = gem_create(fd, sz); c->object[1].relocs_ptr = to_user_pointer(c->reloc); - c->object[1].relocation_count = 1024 * i; + c->object[1].relocation_count = has_relocs ? 1024 * i : 0; batch = gem_mmap__cpu(fd, c->object[1].handle, 0, sz, PROT_WRITE | PROT_READ); @@ -789,6 +824,7 @@ __store_many(int fd, const intel_ctx_t *ctx, unsigned ring, int order[64]; uint32_t *batch, *b; int done; + bool has_relocs = gem_has_relocations(fd); memset(&execbuf, 0, sizeof(execbuf)); execbuf.buffers_ptr = to_user_pointer(object); @@ -805,9 +841,10 @@ __store_many(int fd, const intel_ctx_t *ctx, unsigned ring, execbuf.buffer_count = 1; gem_execbuf(fd, &execbuf); object[0].flags |= EXEC_OBJECT_WRITE; + object[0].flags |= has_relocs ? 0 : EXEC_OBJECT_PINNED; object[1].relocs_ptr = to_user_pointer(reloc); - object[1].relocation_count = 1024; + object[1].relocation_count = has_relocs ? 1024 : 0; execbuf.buffer_count = 2; memset(reloc, 0, sizeof(reloc)); @@ -990,6 +1027,7 @@ store_all(int fd, const intel_ctx_t *ctx, int num_children, int timeout) { const unsigned int gen = intel_gen(intel_get_drm_devid(fd)); struct intel_engine_data ied; + bool has_relocs = gem_has_relocations(fd); ied = list_store_engines(fd, ctx, ALL_ENGINES); igt_require(ied.nengines); @@ -1019,10 +1057,11 @@ store_all(int fd, const intel_ctx_t *ctx, int num_children, int timeout) gem_execbuf(fd, &execbuf); object[0].flags |= EXEC_OBJECT_WRITE; + object[0].flags |= has_relocs ? 0 : EXEC_OBJECT_PINNED; object[1].handle = gem_create(fd, 1024*16 + 4096); object[1].relocs_ptr = to_user_pointer(reloc); - object[1].relocation_count = 1024; + object[1].relocation_count = has_relocs ? 1024 : 0; batch = gem_mmap__cpu(fd, object[1].handle, 0, 16*1024 + 4096, PROT_WRITE | PROT_READ); @@ -1091,6 +1130,7 @@ preempt(int fd, const intel_ctx_t *ctx, unsigned ring, { struct intel_engine_data ied; const intel_ctx_t *tmp_ctx[2]; + uint64_t ahnd = get_reloc_ahnd(fd, 0); /* just offset provider */ ied = list_engines(fd, ctx, ALL_ENGINES); igt_require(ied.nengines); @@ -1110,8 +1150,13 @@ preempt(int fd, const intel_ctx_t *ctx, unsigned ring, double start, elapsed; unsigned long cycles; + ahnd = get_reloc_ahnd(fd, 0); + memset(&object, 0, sizeof(object)); object.handle = gem_create(fd, 4096); + object.offset = get_offset(ahnd, object.handle, 4096, 0); + if (ahnd) + object.flags = EXEC_OBJECT_PINNED; gem_write(fd, object.handle, 0, &bbe, sizeof(bbe)); memset(&execbuf, 0, sizeof(execbuf)); @@ -1127,6 +1172,7 @@ preempt(int fd, const intel_ctx_t *ctx, unsigned ring, do { igt_spin_t *spin = __igt_spin_new(fd, + .ahnd = ahnd, .ctx = tmp_ctx[0], .engine = execbuf.flags); @@ -1142,8 +1188,11 @@ preempt(int fd, const intel_ctx_t *ctx, unsigned ring, ied_name(&ied, child), cycles, elapsed * 1e6/cycles); gem_close(fd, object.handle); + put_offset(ahnd, object.handle); + put_ahnd(ahnd); } igt_waitchildren_timeout(timeout+10, NULL); + put_ahnd(ahnd); igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0); intel_ctx_destroy(fd, tmp_ctx[1]); @@ -1206,6 +1255,7 @@ igt_main ctx = intel_ctx_create_all_physical(fd); igt_fork_hang_detector(fd); + intel_allocator_multiprocess_start(); } /* Legacy for selecting rings. */ @@ -1220,7 +1270,6 @@ igt_main } } - igt_subtest("basic-all") sync_all(fd, ctx, 1, MTIMEOUT); igt_subtest("basic-store-all") @@ -1270,6 +1319,7 @@ igt_main } igt_fixture { + intel_allocator_multiprocess_stop(); igt_stop_hang_detector(); intel_ctx_destroy(fd, ctx); close(fd); -- 2.26.0 ^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/2] tests/gem_sync: Use softpin path for no-reloc gens 2021-10-28 18:23 ` [igt-dev] [PATCH i-g-t 2/2] tests/gem_sync: Use softpin path for no-reloc gens Zbigniew Kempczyński @ 2021-10-30 3:55 ` Dixit, Ashutosh 2021-11-02 8:23 ` Zbigniew Kempczyński 0 siblings, 1 reply; 16+ messages in thread From: Dixit, Ashutosh @ 2021-10-30 3:55 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev On Thu, 28 Oct 2021 11:23:22 -0700, Zbigniew Kempczyński wrote: > > @@ -384,6 +401,8 @@ active_wakeup_ring(int fd, const intel_ctx_t *ctx, unsigned ring, > int timeout, int wlen) > { > struct intel_engine_data ied; > + uint64_t ahnd0 = get_reloc_ahnd(fd, 0); > + uint64_t ahnd = get_reloc_ahnd(fd, ctx->id); > > ied = list_store_engines(fd, ctx, ring); > igt_require(ied.nengines); > @@ -397,8 +416,14 @@ active_wakeup_ring(int fd, const intel_ctx_t *ctx, unsigned ring, > unsigned long cycles; > igt_spin_t *spin[2]; > > + ahnd0 = get_reloc_ahnd(fd, 0); > + ahnd = get_reloc_ahnd(fd, ctx->id); > + > memset(&object, 0, sizeof(object)); > object.handle = gem_create(fd, 4096); > + object.offset = get_offset(ahnd, object.handle, 4096, 0); > + if (ahnd) > + object.offset = EXEC_OBJECT_PINNED; > gem_write(fd, object.handle, 0, &bbe, sizeof(bbe)); > > memset(&execbuf, 0, sizeof(execbuf)); > @@ -408,12 +433,14 @@ active_wakeup_ring(int fd, const intel_ctx_t *ctx, unsigned ring, > execbuf.rsvd1 = ctx->id; > > spin[0] = __igt_spin_new(fd, > + .ahnd = ahnd, > .engine = execbuf.flags, > .flags = (IGT_SPIN_POLL_RUN | > IGT_SPIN_FAST)); > igt_assert(igt_spin_has_poll(spin[0])); > > spin[1] = __igt_spin_new(fd, > + .ahnd = ahnd, > .engine = execbuf.flags, > .flags = (IGT_SPIN_POLL_RUN | > IGT_SPIN_FAST)); > @@ -490,8 +517,13 @@ active_wakeup_ring(int fd, const intel_ctx_t *ctx, unsigned ring, > igt_spin_free(fd, spin[1]); > igt_spin_free(fd, spin[0]); > gem_close(fd, object.handle); > + put_offset(ahnd, object.handle); > + put_ahnd(ahnd); > + put_ahnd(ahnd0); > } > igt_waitchildren_timeout(2*timeout, NULL); > + put_ahnd(ahnd); > + put_ahnd(ahnd0); > igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0); > } Sorry don't see ahnd0 being used in active_wakeup_ring() above? Rest looks fine but please let me know about this one issue. Thanks. ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/2] tests/gem_sync: Use softpin path for no-reloc gens 2021-10-30 3:55 ` Dixit, Ashutosh @ 2021-11-02 8:23 ` Zbigniew Kempczyński 0 siblings, 0 replies; 16+ messages in thread From: Zbigniew Kempczyński @ 2021-11-02 8:23 UTC (permalink / raw) To: Dixit, Ashutosh; +Cc: igt-dev On Fri, Oct 29, 2021 at 08:55:40PM -0700, Dixit, Ashutosh wrote: > On Thu, 28 Oct 2021 11:23:22 -0700, Zbigniew Kempczyński wrote: > > > > @@ -384,6 +401,8 @@ active_wakeup_ring(int fd, const intel_ctx_t *ctx, unsigned ring, > > int timeout, int wlen) > > { > > struct intel_engine_data ied; > > + uint64_t ahnd0 = get_reloc_ahnd(fd, 0); > > + uint64_t ahnd = get_reloc_ahnd(fd, ctx->id); > > > > ied = list_store_engines(fd, ctx, ring); > > igt_require(ied.nengines); > > @@ -397,8 +416,14 @@ active_wakeup_ring(int fd, const intel_ctx_t *ctx, unsigned ring, > > unsigned long cycles; > > igt_spin_t *spin[2]; > > > > + ahnd0 = get_reloc_ahnd(fd, 0); > > + ahnd = get_reloc_ahnd(fd, ctx->id); > > + > > memset(&object, 0, sizeof(object)); > > object.handle = gem_create(fd, 4096); > > + object.offset = get_offset(ahnd, object.handle, 4096, 0); > > + if (ahnd) > > + object.offset = EXEC_OBJECT_PINNED; > > gem_write(fd, object.handle, 0, &bbe, sizeof(bbe)); > > > > memset(&execbuf, 0, sizeof(execbuf)); > > @@ -408,12 +433,14 @@ active_wakeup_ring(int fd, const intel_ctx_t *ctx, unsigned ring, > > execbuf.rsvd1 = ctx->id; > > > > spin[0] = __igt_spin_new(fd, > > + .ahnd = ahnd, > > .engine = execbuf.flags, > > .flags = (IGT_SPIN_POLL_RUN | > > IGT_SPIN_FAST)); > > igt_assert(igt_spin_has_poll(spin[0])); > > > > spin[1] = __igt_spin_new(fd, > > + .ahnd = ahnd, > > .engine = execbuf.flags, > > .flags = (IGT_SPIN_POLL_RUN | > > IGT_SPIN_FAST)); > > @@ -490,8 +517,13 @@ active_wakeup_ring(int fd, const intel_ctx_t *ctx, unsigned ring, > > igt_spin_free(fd, spin[1]); > > igt_spin_free(fd, spin[0]); > > gem_close(fd, object.handle); > > + put_offset(ahnd, object.handle); > > + put_ahnd(ahnd); > > + put_ahnd(ahnd0); > > } > > igt_waitchildren_timeout(2*timeout, NULL); > > + put_ahnd(ahnd); > > + put_ahnd(ahnd0); > > igt_assert_eq(intel_detect_and_clear_missed_interrupts(fd), 0); > > } > > Sorry don't see ahnd0 being used in active_wakeup_ring() above? Rest looks > fine but please let me know about this one issue. Thanks. Good spot - you're right - it should be used in spinner. I'm going send in new series. Thanks for the review. -- Zbigniew ^ permalink raw reply [flat|nested] 16+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for Change gem_sync to no-reloc 2021-10-28 18:23 [igt-dev] [PATCH i-g-t 0/2] Change gem_sync to no-reloc Zbigniew Kempczyński 2021-10-28 18:23 ` [igt-dev] [PATCH i-g-t 1/2] tests/gem_sync: Use timeouts definitions instead hardcoded value Zbigniew Kempczyński 2021-10-28 18:23 ` [igt-dev] [PATCH i-g-t 2/2] tests/gem_sync: Use softpin path for no-reloc gens Zbigniew Kempczyński @ 2021-10-28 21:11 ` Patchwork 2021-10-29 5:02 ` Zbigniew Kempczyński 2021-10-29 5:33 ` Patchwork ` (3 subsequent siblings) 6 siblings, 1 reply; 16+ messages in thread From: Patchwork @ 2021-10-28 21:11 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5447 bytes --] == Series Details == Series: Change gem_sync to no-reloc URL : https://patchwork.freedesktop.org/series/96401/ State : failure == Summary == CI Bug Log - changes from CI_DRM_10809 -> IGTPW_6362 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_6362 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_6362, 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_6362/index.html Participating hosts (36 -> 34) ------------------------------ Additional (1): fi-pnv-d510 Missing (3): bat-adlp-4 bat-dg1-6 bat-dg1-5 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_6362: ### IGT changes ### #### Possible regressions #### * igt@core_hotunplug@unbind-rebind: - fi-kbl-8809g: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html * igt@kms_addfb_basic@too-high: - fi-kbl-8809g: [PASS][3] -> [FAIL][4] +2 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/fi-kbl-8809g/igt@kms_addfb_basic@too-high.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-kbl-8809g/igt@kms_addfb_basic@too-high.html * igt@kms_force_connector_basic@force-connector-state: - fi-kbl-8809g: [PASS][5] -> [DMESG-FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/fi-kbl-8809g/igt@kms_force_connector_basic@force-connector-state.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-kbl-8809g/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_force_connector_basic@force-edid: - fi-kbl-8809g: [PASS][7] -> [CRASH][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/fi-kbl-8809g/igt@kms_force_connector_basic@force-edid.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-kbl-8809g/igt@kms_force_connector_basic@force-edid.html Known issues ------------ Here are the changes found in IGTPW_6362 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@unused-modifier: - fi-kbl-8809g: [PASS][9] -> [SKIP][10] ([fdo#109271]) +18 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/fi-kbl-8809g/igt@kms_addfb_basic@unused-modifier.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-kbl-8809g/igt@kms_addfb_basic@unused-modifier.html * igt@prime_vgem@basic-userptr: - fi-pnv-d510: NOTRUN -> [SKIP][11] ([fdo#109271]) +53 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-pnv-d510/igt@prime_vgem@basic-userptr.html * igt@runner@aborted: - fi-kbl-8809g: NOTRUN -> [FAIL][12] ([i915#2283] / [i915#2426] / [i915#3363] / [i915#4312]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-kbl-8809g/igt@runner@aborted.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s3: - fi-tgl-1115g4: [FAIL][13] ([i915#1888]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b: - fi-kbl-8809g: [SKIP][15] ([fdo#109271]) -> [PASS][16] +15 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: - fi-kbl-8809g: [SKIP][17] ([fdo#109271] / [i915#533]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888 [i915#2283]: https://gitlab.freedesktop.org/drm/intel/issues/2283 [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426 [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6264 -> IGTPW_6362 CI-20190529: 20190529 CI_DRM_10809: 9959c5de92d04f2336d749a5a331799aa41cfb1f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_6362: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/index.html IGT_6264: 3458490c14afe3cb8aa873fa9e520e1c815ea068 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/index.html [-- Attachment #2: Type: text/html, Size: 6513 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for Change gem_sync to no-reloc 2021-10-28 21:11 ` [igt-dev] ✗ Fi.CI.BAT: failure for Change gem_sync to no-reloc Patchwork @ 2021-10-29 5:02 ` Zbigniew Kempczyński 2021-10-29 6:10 ` Vudum, Lakshminarayana 0 siblings, 1 reply; 16+ messages in thread From: Zbigniew Kempczyński @ 2021-10-29 5:02 UTC (permalink / raw) To: igt-dev; +Cc: Vudum, Lakshminarayana On Thu, Oct 28, 2021 at 09:11:34PM +0000, Patchwork wrote: > Patch Details > > Series: Change gem_sync to no-reloc > URL: https://patchwork.freedesktop.org/series/96401/ > State: failure > Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/index.html > > CI Bug Log - changes from CI_DRM_10809 -> IGTPW_6362 > > Summary > > FAILURE > > Serious unknown changes coming with IGTPW_6362 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_6362, 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_6362/index.html > > Participating hosts (36 -> 34) > > Additional (1): fi-pnv-d510 > Missing (3): bat-adlp-4 bat-dg1-6 bat-dg1-5 > > Possible new issues > > Here are the unknown changes that may have been introduced in IGTPW_6362: > > IGT changes > > Possible regressions > > * igt@core_hotunplug@unbind-rebind: > > * fi-kbl-8809g: PASS -> INCOMPLETE > * igt@kms_addfb_basic@too-high: > > * fi-kbl-8809g: PASS -> FAIL +2 similar issues > * igt@kms_force_connector_basic@force-connector-state: > > * fi-kbl-8809g: PASS -> DMESG-FAIL > * igt@kms_force_connector_basic@force-edid: > > * fi-kbl-8809g: PASS -> CRASH It seems problem occurs on kbl and is not related to test I've changed. -- Zbigniew > > Known issues > > Here are the changes found in IGTPW_6362 that come from known issues: > > IGT changes > > Issues hit > > * igt@kms_addfb_basic@unused-modifier: > > * fi-kbl-8809g: PASS -> SKIP (fdo#109271) +18 similar issues > * igt@prime_vgem@basic-userptr: > > * fi-pnv-d510: NOTRUN -> SKIP (fdo#109271) +53 similar issues > * igt@runner@aborted: > > * fi-kbl-8809g: NOTRUN -> FAIL (i915#2283 / i915#2426 / i915#3363 / > i915#4312) > > Possible fixes > > * igt@gem_exec_suspend@basic-s3: > > * fi-tgl-1115g4: FAIL (i915#1888) -> PASS > * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b: > > * fi-kbl-8809g: SKIP (fdo#109271) -> PASS +15 similar issues > * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: > > * fi-kbl-8809g: SKIP (fdo#109271 / i915#533) -> PASS > > Build changes > > * CI: CI-20190529 -> None > * IGT: IGT_6264 -> IGTPW_6362 > > CI-20190529: 20190529 > CI_DRM_10809: 9959c5de92d04f2336d749a5a331799aa41cfb1f @ > git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_6362: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/index.html > IGT_6264: 3458490c14afe3cb8aa873fa9e520e1c815ea068 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.BAT: failure for Change gem_sync to no-reloc 2021-10-29 5:02 ` Zbigniew Kempczyński @ 2021-10-29 6:10 ` Vudum, Lakshminarayana 0 siblings, 0 replies; 16+ messages in thread From: Vudum, Lakshminarayana @ 2021-10-29 6:10 UTC (permalink / raw) To: Kempczynski, Zbigniew, igt-dev@lists.freedesktop.org Filed following bugs for the regression and re-reported. https://gitlab.freedesktop.org/drm/intel/-/issues/4406 igt@kms_force_connector_basic@.* -dmesg-fail/crash *ERROR* No EDID firmware found on connector: .* ,forcing to OFF!, *ERROR* dc_sink is NULL! https://gitlab.freedesktop.org/drm/intel/-/issues/4405 igt@kms_addfb_basic@.* - fail - Failed assertion: igt_ioctl.*, error: 0 != -1 https://gitlab.freedesktop.org/drm/intel/-/issues/4404 igt@core_hotunplug@unbind-rebind - incomplete - RIP: 0010:smu7_powergate_uvd Lakshmi. -----Original Message----- From: Kempczynski, Zbigniew <zbigniew.kempczynski@intel.com> Sent: Thursday, October 28, 2021 10:02 PM To: igt-dev@lists.freedesktop.org Cc: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> Subject: Re: ✗ Fi.CI.BAT: failure for Change gem_sync to no-reloc On Thu, Oct 28, 2021 at 09:11:34PM +0000, Patchwork wrote: > Patch Details > > Series: Change gem_sync to no-reloc > URL: https://patchwork.freedesktop.org/series/96401/ > State: failure > Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/index.html > > CI Bug Log - changes from CI_DRM_10809 -> IGTPW_6362 > > Summary > > FAILURE > > Serious unknown changes coming with IGTPW_6362 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_6362, 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_6362/index.html > > Participating hosts (36 -> 34) > > Additional (1): fi-pnv-d510 > Missing (3): bat-adlp-4 bat-dg1-6 bat-dg1-5 > > Possible new issues > > Here are the unknown changes that may have been introduced in IGTPW_6362: > > IGT changes > > Possible regressions > > * igt@core_hotunplug@unbind-rebind: > > * fi-kbl-8809g: PASS -> INCOMPLETE > * igt@kms_addfb_basic@too-high: > > * fi-kbl-8809g: PASS -> FAIL +2 similar issues > * igt@kms_force_connector_basic@force-connector-state: > > * fi-kbl-8809g: PASS -> DMESG-FAIL > * igt@kms_force_connector_basic@force-edid: > > * fi-kbl-8809g: PASS -> CRASH It seems problem occurs on kbl and is not related to test I've changed. -- Zbigniew > > Known issues > > Here are the changes found in IGTPW_6362 that come from known issues: > > IGT changes > > Issues hit > > * igt@kms_addfb_basic@unused-modifier: > > * fi-kbl-8809g: PASS -> SKIP (fdo#109271) +18 similar issues > * igt@prime_vgem@basic-userptr: > > * fi-pnv-d510: NOTRUN -> SKIP (fdo#109271) +53 similar issues > * igt@runner@aborted: > > * fi-kbl-8809g: NOTRUN -> FAIL (i915#2283 / i915#2426 / i915#3363 / > i915#4312) > > Possible fixes > > * igt@gem_exec_suspend@basic-s3: > > * fi-tgl-1115g4: FAIL (i915#1888) -> PASS > * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b: > > * fi-kbl-8809g: SKIP (fdo#109271) -> PASS +15 similar issues > * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: > > * fi-kbl-8809g: SKIP (fdo#109271 / i915#533) -> PASS > > Build changes > > * CI: CI-20190529 -> None > * IGT: IGT_6264 -> IGTPW_6362 > > CI-20190529: 20190529 > CI_DRM_10809: 9959c5de92d04f2336d749a5a331799aa41cfb1f @ > git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_6362: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/index.html > IGT_6264: 3458490c14afe3cb8aa873fa9e520e1c815ea068 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git ^ permalink raw reply [flat|nested] 16+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for Change gem_sync to no-reloc 2021-10-28 18:23 [igt-dev] [PATCH i-g-t 0/2] Change gem_sync to no-reloc Zbigniew Kempczyński ` (2 preceding siblings ...) 2021-10-28 21:11 ` [igt-dev] ✗ Fi.CI.BAT: failure for Change gem_sync to no-reloc Patchwork @ 2021-10-29 5:33 ` Patchwork 2021-10-29 5:53 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 16+ messages in thread From: Patchwork @ 2021-10-29 5:33 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6031 bytes --] == Series Details == Series: Change gem_sync to no-reloc URL : https://patchwork.freedesktop.org/series/96401/ State : failure == Summary == CI Bug Log - changes from CI_DRM_10809 -> IGTPW_6362 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_6362 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_6362, 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_6362/index.html Participating hosts (36 -> 34) ------------------------------ Additional (1): fi-pnv-d510 Missing (3): bat-adlp-4 bat-dg1-6 bat-dg1-5 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_6362: ### IGT changes ### #### Possible regressions #### * igt@kms_addfb_basic@bad-pitch-65536: - fi-kbl-8809g: [PASS][1] -> [FAIL][2] +1 similar issue [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/fi-kbl-8809g/igt@kms_addfb_basic@bad-pitch-65536.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-kbl-8809g/igt@kms_addfb_basic@bad-pitch-65536.html Known issues ------------ Here are the changes found in IGTPW_6362 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - fi-kbl-8809g: [PASS][3] -> [INCOMPLETE][4] ([i915#4404]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html * igt@kms_addfb_basic@too-high: - fi-kbl-8809g: [PASS][5] -> [FAIL][6] ([i915#4405]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/fi-kbl-8809g/igt@kms_addfb_basic@too-high.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-kbl-8809g/igt@kms_addfb_basic@too-high.html * igt@kms_addfb_basic@unused-modifier: - fi-kbl-8809g: [PASS][7] -> [SKIP][8] ([fdo#109271]) +18 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/fi-kbl-8809g/igt@kms_addfb_basic@unused-modifier.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-kbl-8809g/igt@kms_addfb_basic@unused-modifier.html * igt@kms_force_connector_basic@force-connector-state: - fi-kbl-8809g: [PASS][9] -> [DMESG-FAIL][10] ([i915#4406]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/fi-kbl-8809g/igt@kms_force_connector_basic@force-connector-state.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-kbl-8809g/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_force_connector_basic@force-edid: - fi-kbl-8809g: [PASS][11] -> [CRASH][12] ([i915#4406]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/fi-kbl-8809g/igt@kms_force_connector_basic@force-edid.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-kbl-8809g/igt@kms_force_connector_basic@force-edid.html * igt@prime_vgem@basic-userptr: - fi-pnv-d510: NOTRUN -> [SKIP][13] ([fdo#109271]) +53 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-pnv-d510/igt@prime_vgem@basic-userptr.html * igt@runner@aborted: - fi-kbl-8809g: NOTRUN -> [FAIL][14] ([i915#2283] / [i915#2426] / [i915#3363] / [i915#4312]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-kbl-8809g/igt@runner@aborted.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s3: - fi-tgl-1115g4: [FAIL][15] ([i915#1888]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b: - fi-kbl-8809g: [SKIP][17] ([fdo#109271]) -> [PASS][18] +15 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: - fi-kbl-8809g: [SKIP][19] ([fdo#109271] / [i915#533]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888 [i915#2283]: https://gitlab.freedesktop.org/drm/intel/issues/2283 [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426 [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4404]: https://gitlab.freedesktop.org/drm/intel/issues/4404 [i915#4405]: https://gitlab.freedesktop.org/drm/intel/issues/4405 [i915#4406]: https://gitlab.freedesktop.org/drm/intel/issues/4406 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6264 -> IGTPW_6362 CI-20190529: 20190529 CI_DRM_10809: 9959c5de92d04f2336d749a5a331799aa41cfb1f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_6362: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/index.html IGT_6264: 3458490c14afe3cb8aa873fa9e520e1c815ea068 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/index.html [-- Attachment #2: Type: text/html, Size: 7172 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Change gem_sync to no-reloc 2021-10-28 18:23 [igt-dev] [PATCH i-g-t 0/2] Change gem_sync to no-reloc Zbigniew Kempczyński ` (3 preceding siblings ...) 2021-10-29 5:33 ` Patchwork @ 2021-10-29 5:53 ` Patchwork 2021-10-29 10:27 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2021-10-29 16:17 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 6 siblings, 0 replies; 16+ messages in thread From: Patchwork @ 2021-10-29 5:53 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5242 bytes --] == Series Details == Series: Change gem_sync to no-reloc URL : https://patchwork.freedesktop.org/series/96401/ State : success == Summary == CI Bug Log - changes from CI_DRM_10809 -> IGTPW_6362 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/index.html Participating hosts (36 -> 34) ------------------------------ Additional (1): fi-pnv-d510 Missing (3): bat-adlp-4 bat-dg1-6 bat-dg1-5 Known issues ------------ Here are the changes found in IGTPW_6362 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - fi-kbl-8809g: [PASS][1] -> [INCOMPLETE][2] ([i915#4404]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-kbl-8809g/igt@core_hotunplug@unbind-rebind.html * igt@kms_addfb_basic@too-high: - fi-kbl-8809g: [PASS][3] -> [FAIL][4] ([i915#4405]) +2 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/fi-kbl-8809g/igt@kms_addfb_basic@too-high.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-kbl-8809g/igt@kms_addfb_basic@too-high.html * igt@kms_addfb_basic@unused-modifier: - fi-kbl-8809g: [PASS][5] -> [SKIP][6] ([fdo#109271]) +18 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/fi-kbl-8809g/igt@kms_addfb_basic@unused-modifier.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-kbl-8809g/igt@kms_addfb_basic@unused-modifier.html * igt@kms_force_connector_basic@force-connector-state: - fi-kbl-8809g: [PASS][7] -> [DMESG-FAIL][8] ([i915#4406]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/fi-kbl-8809g/igt@kms_force_connector_basic@force-connector-state.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-kbl-8809g/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_force_connector_basic@force-edid: - fi-kbl-8809g: [PASS][9] -> [CRASH][10] ([i915#4406]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/fi-kbl-8809g/igt@kms_force_connector_basic@force-edid.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-kbl-8809g/igt@kms_force_connector_basic@force-edid.html * igt@prime_vgem@basic-userptr: - fi-pnv-d510: NOTRUN -> [SKIP][11] ([fdo#109271]) +53 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-pnv-d510/igt@prime_vgem@basic-userptr.html * igt@runner@aborted: - fi-kbl-8809g: NOTRUN -> [FAIL][12] ([i915#2283] / [i915#2426] / [i915#3363] / [i915#4312]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-kbl-8809g/igt@runner@aborted.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s3: - fi-tgl-1115g4: [FAIL][13] ([i915#1888]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b: - fi-kbl-8809g: [SKIP][15] ([fdo#109271]) -> [PASS][16] +15 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-b.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d: - fi-kbl-8809g: [SKIP][17] ([fdo#109271] / [i915#533]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888 [i915#2283]: https://gitlab.freedesktop.org/drm/intel/issues/2283 [i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426 [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4404]: https://gitlab.freedesktop.org/drm/intel/issues/4404 [i915#4405]: https://gitlab.freedesktop.org/drm/intel/issues/4405 [i915#4406]: https://gitlab.freedesktop.org/drm/intel/issues/4406 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_6264 -> IGTPW_6362 CI-20190529: 20190529 CI_DRM_10809: 9959c5de92d04f2336d749a5a331799aa41cfb1f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_6362: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/index.html IGT_6264: 3458490c14afe3cb8aa873fa9e520e1c815ea068 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/index.html [-- Attachment #2: Type: text/html, Size: 6346 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Change gem_sync to no-reloc 2021-10-28 18:23 [igt-dev] [PATCH i-g-t 0/2] Change gem_sync to no-reloc Zbigniew Kempczyński ` (4 preceding siblings ...) 2021-10-29 5:53 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork @ 2021-10-29 10:27 ` Patchwork 2021-10-29 10:46 ` Zbigniew Kempczyński 2021-10-29 16:17 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 6 siblings, 1 reply; 16+ messages in thread From: Patchwork @ 2021-10-29 10:27 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 30245 bytes --] == Series Details == Series: Change gem_sync to no-reloc URL : https://patchwork.freedesktop.org/series/96401/ State : failure == Summary == CI Bug Log - changes from CI_DRM_10809_full -> IGTPW_6362_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_6362_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_6362_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_6362/index.html Participating hosts (10 -> 7) ------------------------------ Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_6362_full: ### IGT changes ### #### Possible regressions #### * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-iclb: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-iclb2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html Known issues ------------ Here are the changes found in IGTPW_6362_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@feature_discovery@display-3x: - shard-tglb: NOTRUN -> [SKIP][3] ([i915#1839]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb7/igt@feature_discovery@display-3x.html * igt@gem_ctx_sseu@invalid-args: - shard-tglb: NOTRUN -> [SKIP][4] ([i915#280]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb7/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_fair@basic-deadline: - shard-tglb: [PASS][5] -> [FAIL][6] ([i915#2846]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-tglb2/igt@gem_exec_fair@basic-deadline.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb6/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [PASS][7] -> [FAIL][8] ([i915#2842]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-tglb5/igt@gem_exec_fair@basic-pace-share@rcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-glk: [PASS][9] -> [FAIL][10] ([i915#2842]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_params@no-vebox: - shard-iclb: NOTRUN -> [SKIP][11] ([fdo#109283]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb3/igt@gem_exec_params@no-vebox.html - shard-tglb: NOTRUN -> [SKIP][12] ([fdo#109283]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb7/igt@gem_exec_params@no-vebox.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-tglb: NOTRUN -> [SKIP][13] ([i915#4270]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb2/igt@gem_pxp@reject-modify-context-protection-on.html - shard-iclb: NOTRUN -> [SKIP][14] ([i915#4270]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb5/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-iclb: NOTRUN -> [SKIP][15] ([i915#768]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb3/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_userptr_blits@input-checking: - shard-tglb: NOTRUN -> [DMESG-WARN][16] ([i915#3002]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb6/igt@gem_userptr_blits@input-checking.html * igt@gem_userptr_blits@readonly-unsync: - shard-tglb: NOTRUN -> [SKIP][17] ([i915#3297]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb2/igt@gem_userptr_blits@readonly-unsync.html * igt@gen9_exec_parse@allowed-all: - shard-glk: [PASS][18] -> [DMESG-WARN][19] ([i915#1436] / [i915#716]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-glk2/igt@gen9_exec_parse@allowed-all.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-glk3/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-tglb: NOTRUN -> [SKIP][20] ([i915#2856]) +1 similar issue [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb1/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-start-out: - shard-iclb: NOTRUN -> [SKIP][21] ([i915#2856]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb4/igt@gen9_exec_parse@bb-start-out.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [PASS][22] -> [FAIL][23] ([i915#454]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-iclb2/igt@i915_pm_dc@dc6-psr.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb3/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-tglb: NOTRUN -> [SKIP][24] ([fdo#109289] / [fdo#111719]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-tglb: NOTRUN -> [WARN][25] ([i915#2681] / [i915#2684]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb2/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_selftest@live@hangcheck: - shard-snb: [PASS][26] -> [INCOMPLETE][27] ([i915#3921]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-snb5/igt@i915_selftest@live@hangcheck.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-snb5/igt@i915_selftest@live@hangcheck.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-tglb: NOTRUN -> [SKIP][28] ([fdo#111614]) +5 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb6/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-iclb: NOTRUN -> [SKIP][29] ([fdo#110725] / [fdo#111614]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb1/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: - shard-tglb: NOTRUN -> [SKIP][30] ([fdo#111615]) +5 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb7/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html - shard-iclb: NOTRUN -> [SKIP][31] ([fdo#110723]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb5/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html * igt@kms_big_joiner@2x-modeset: - shard-tglb: NOTRUN -> [SKIP][32] ([i915#2705]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb5/igt@kms_big_joiner@2x-modeset.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][33] ([i915#3689]) +8 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb2/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][34] ([fdo#109271] / [i915#3886]) +2 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl3/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-iclb: NOTRUN -> [SKIP][35] ([fdo#109278] / [i915#3886]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb4/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][36] ([i915#3689] / [i915#3886]) +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb1/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][37] ([fdo#109271] / [i915#3886]) +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-glk3/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-yf_tiled_ccs: - shard-apl: NOTRUN -> [SKIP][38] ([fdo#109271]) +93 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl7/igt@kms_ccs@pipe-d-crc-primary-rotation-180-yf_tiled_ccs.html * igt@kms_color_chamelium@pipe-a-gamma: - shard-iclb: NOTRUN -> [SKIP][39] ([fdo#109284] / [fdo#111827]) +3 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb6/igt@kms_color_chamelium@pipe-a-gamma.html * igt@kms_color_chamelium@pipe-b-ctm-blue-to-red: - shard-apl: NOTRUN -> [SKIP][40] ([fdo#109271] / [fdo#111827]) +7 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl6/igt@kms_color_chamelium@pipe-b-ctm-blue-to-red.html * igt@kms_color_chamelium@pipe-b-ctm-max: - shard-tglb: NOTRUN -> [SKIP][41] ([fdo#109284] / [fdo#111827]) +15 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb3/igt@kms_color_chamelium@pipe-b-ctm-max.html * igt@kms_color_chamelium@pipe-d-ctm-0-5: - shard-snb: NOTRUN -> [SKIP][42] ([fdo#109271] / [fdo#111827]) +2 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-snb7/igt@kms_color_chamelium@pipe-d-ctm-0-5.html - shard-glk: NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827]) +2 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-glk1/igt@kms_color_chamelium@pipe-d-ctm-0-5.html - shard-iclb: NOTRUN -> [SKIP][44] ([fdo#109278] / [fdo#109284] / [fdo#111827]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb6/igt@kms_color_chamelium@pipe-d-ctm-0-5.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-tglb: NOTRUN -> [SKIP][45] ([i915#3116]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb7/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic: - shard-tglb: NOTRUN -> [SKIP][46] ([fdo#111828]) +1 similar issue [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb2/igt@kms_content_protection@lic.html * igt@kms_cursor_crc@pipe-b-cursor-32x32-sliding: - shard-tglb: NOTRUN -> [SKIP][47] ([i915#3319]) +3 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb5/igt@kms_cursor_crc@pipe-b-cursor-32x32-sliding.html * igt@kms_cursor_crc@pipe-b-cursor-512x512-rapid-movement: - shard-iclb: NOTRUN -> [SKIP][48] ([fdo#109278] / [fdo#109279]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb7/igt@kms_cursor_crc@pipe-b-cursor-512x512-rapid-movement.html * igt@kms_cursor_crc@pipe-d-cursor-256x256-rapid-movement: - shard-iclb: NOTRUN -> [SKIP][49] ([fdo#109278]) +14 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb7/igt@kms_cursor_crc@pipe-d-cursor-256x256-rapid-movement.html * igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement: - shard-tglb: NOTRUN -> [SKIP][50] ([i915#3359]) +5 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb1/igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement.html * igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding: - shard-tglb: NOTRUN -> [SKIP][51] ([fdo#109279] / [i915#3359]) +3 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb2/igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-iclb: NOTRUN -> [SKIP][52] ([fdo#109274] / [fdo#109278]) +1 similar issue [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-tglb: NOTRUN -> [SKIP][53] ([i915#4103]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_flip@2x-nonexisting-fb: - shard-iclb: NOTRUN -> [SKIP][54] ([fdo#109274]) +1 similar issue [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb6/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1: - shard-apl: [PASS][55] -> [FAIL][56] ([i915#79]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-apl4/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html * igt@kms_flip@flip-vs-suspend@c-dp1: - shard-apl: [PASS][57] -> [DMESG-WARN][58] ([i915#180]) +1 similar issue [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-apl3/igt@kms_flip@flip-vs-suspend@c-dp1.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl1/igt@kms_flip@flip-vs-suspend@c-dp1.html * igt@kms_force_connector_basic@force-load-detect: - shard-iclb: NOTRUN -> [SKIP][59] ([fdo#109285]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb8/igt@kms_force_connector_basic@force-load-detect.html - shard-tglb: NOTRUN -> [SKIP][60] ([fdo#109285]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb3/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-tglb: [PASS][61] -> [INCOMPLETE][62] ([i915#2828] / [i915#456]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-suspend.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite: - shard-iclb: NOTRUN -> [SKIP][63] ([fdo#109280]) +13 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff: - shard-snb: NOTRUN -> [SKIP][64] ([fdo#109271]) +76 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-snb6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-tglb: NOTRUN -> [SKIP][65] ([fdo#111825]) +35 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_hdr@static-toggle-dpms: - shard-tglb: NOTRUN -> [SKIP][66] ([i915#1187]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb7/igt@kms_hdr@static-toggle-dpms.html - shard-iclb: NOTRUN -> [SKIP][67] ([i915#1187]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb3/igt@kms_hdr@static-toggle-dpms.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d: - shard-apl: NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#533]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html - shard-glk: NOTRUN -> [SKIP][69] ([fdo#109271] / [i915#533]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-glk7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: - shard-apl: NOTRUN -> [FAIL][70] ([fdo#108145] / [i915#265]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl4/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html * igt@kms_plane_lowres@pipe-c-tiling-y: - shard-iclb: NOTRUN -> [SKIP][71] ([i915#3536]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb5/igt@kms_plane_lowres@pipe-c-tiling-y.html - shard-tglb: NOTRUN -> [SKIP][72] ([i915#3536]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb2/igt@kms_plane_lowres@pipe-c-tiling-y.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4: - shard-apl: NOTRUN -> [SKIP][73] ([fdo#109271] / [i915#658]) +1 similar issue [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5: - shard-tglb: NOTRUN -> [SKIP][74] ([i915#2920]) +1 similar issue [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html * igt@kms_psr@psr2_cursor_blt: - shard-iclb: NOTRUN -> [SKIP][75] ([fdo#109441]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb4/igt@kms_psr@psr2_cursor_blt.html * igt@kms_psr@psr2_cursor_plane_move: - shard-iclb: [PASS][76] -> [SKIP][77] ([fdo#109441]) +1 similar issue [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-iclb2/igt@kms_psr@psr2_cursor_plane_move.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb3/igt@kms_psr@psr2_cursor_plane_move.html * igt@kms_psr@psr2_sprite_render: - shard-tglb: NOTRUN -> [FAIL][78] ([i915#132] / [i915#3467]) +2 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb5/igt@kms_psr@psr2_sprite_render.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-glk: NOTRUN -> [SKIP][79] ([fdo#109271]) +55 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-glk2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_vblank@pipe-d-ts-continuation-suspend: - shard-tglb: NOTRUN -> [INCOMPLETE][80] ([i915#3896]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb7/igt@kms_vblank@pipe-d-ts-continuation-suspend.html * igt@kms_vrr@flip-suspend: - shard-tglb: NOTRUN -> [SKIP][81] ([fdo#109502]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb7/igt@kms_vrr@flip-suspend.html * igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame: - shard-tglb: NOTRUN -> [SKIP][82] ([i915#2530]) +1 similar issue [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb5/igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame.html - shard-iclb: NOTRUN -> [SKIP][83] ([i915#2530]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb5/igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-tglb: NOTRUN -> [SKIP][84] ([fdo#109289]) +1 similar issue [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb3/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@prime_nv_api@nv_i915_import_twice_check_flink_name: - shard-iclb: NOTRUN -> [SKIP][85] ([fdo#109291]) +1 similar issue [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb4/igt@prime_nv_api@nv_i915_import_twice_check_flink_name.html * igt@prime_nv_test@nv_write_i915_cpu_mmap_read: - shard-tglb: NOTRUN -> [SKIP][86] ([fdo#109291]) +5 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb5/igt@prime_nv_test@nv_write_i915_cpu_mmap_read.html * igt@prime_vgem@fence-write-hang: - shard-tglb: NOTRUN -> [SKIP][87] ([fdo#109295]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb6/igt@prime_vgem@fence-write-hang.html * igt@sysfs_clients@busy: - shard-tglb: NOTRUN -> [SKIP][88] ([i915#2994]) +1 similar issue [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb3/igt@sysfs_clients@busy.html * igt@sysfs_clients@pidname: - shard-iclb: NOTRUN -> [SKIP][89] ([i915#2994]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb3/igt@sysfs_clients@pidname.html - shard-apl: NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#2994]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl2/igt@sysfs_clients@pidname.html - shard-glk: NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#2994]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-glk5/igt@sysfs_clients@pidname.html #### Possible fixes #### * igt@gem_exec_fair@basic-pace@vecs0: - shard-tglb: [FAIL][92] ([i915#2842]) -> [PASS][93] +2 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-tglb3/igt@gem_exec_fair@basic-pace@vecs0.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb1/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_workarounds@suspend-resume: - shard-tglb: [INCOMPLETE][94] ([i915#456]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-tglb7/igt@gem_workarounds@suspend-resume.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb6/igt@gem_workarounds@suspend-resume.html * igt@i915_suspend@fence-restore-untiled: - shard-apl: [DMESG-WARN][96] ([i915#180]) -> [PASS][97] +1 similar issue [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-apl6/igt@i915_suspend@fence-restore-untiled.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl6/igt@i915_suspend@fence-restore-untiled.html * igt@kms_big_fb@linear-32bpp-rotate-180: - shard-glk: [DMESG-WARN][98] ([i915#118]) -> [PASS][99] +3 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-glk9/igt@kms_big_fb@linear-32bpp-rotate-180.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-glk9/igt@kms_big_fb@linear-32bpp-rotate-180.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-iclb: [FAIL][100] ([i915#2346]) -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: [SKIP][102] ([fdo#109441]) -> [PASS][103] +2 similar issues [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-iclb6/igt@kms_psr@psr2_sprite_plane_move.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_vblank@pipe-c-ts-continuation-suspend: - shard-iclb: [SKIP][104] ([fdo#109278]) -> [PASS][105] [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-iclb5/igt@kms_vblank@pipe-c-ts-continuation-suspend.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb4/igt@kms_vblank@pipe-c-ts-continuation-suspend.html #### Warnings #### * igt@gem_exec_fair@basic-throttle@rcs0: - shard-iclb: [FAIL][106] ([i915#2842]) -> [FAIL][107] ([i915#2849]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-iclb1/igt@gem_exec_fair@basic-throttle@rcs0.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb5/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@kms_psr2_sf@plane-move-sf-dmg-area-2: - shard-iclb: [SKIP][108] ([i915#658]) -> [SKIP][109] ([i915#2920]) +2 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-iclb3/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html * igt@kms_psr2_sf@plane-move-sf-dmg-area-3: - shard-iclb: [SKIP][110] ([i915#2920]) -> [SKIP][111] ([i915#658]) +1 similar issue [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb6/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html * igt@kms_psr2_su@page_flip: - shard-iclb: [FAIL][112] ([i915#4148]) -> [SKIP][113] ([fdo#109642] / [fdo#111068] / [i915#658]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-iclb2/igt@kms_psr2_su@page_flip.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb5/igt@kms_psr2_su@page_flip.html * igt@runner@aborted: - shard-apl: ([FAIL][114], [FAIL][115], [FAIL][116], [FAIL][117]) ([fdo#109271] / [i915#180] / [i915#1814] / [i915#3002] / [i915#3363] / [i915#4312]) -> ([FAIL][118], [FAIL][119], [FAIL][120], [FAIL][121]) ([i915#180] / [i915#1814] / [i915#3002] / [i915#3363] / [i915#4312]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-apl6/igt@runner@aborted.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-apl8/igt@runner@aborted.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-apl6/igt@runner@aborted.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-apl1/igt@runner@aborted.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl3/igt@runner@aborted.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl1/igt@runner@aborted.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl2/igt@runner@aborted.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl1/igt@runner@aborted.html [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [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#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109502]: https://bugs.freedesktop.org/show_bug.cgi?id=109502 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111719]: https://bugs.freedesktop.org/show_bug.cgi?id=111719 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#111828]: https://bugs.freedesktop.org/show_bug.cgi?id=111828 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1187]: https://gitlab.freedesktop.org/drm/intel/issues/1187 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530 [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2828]: https://gitlab.freedesktop.org/drm/intel/issues/2828 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2849]: https://gitlab.freedesktop.org/drm/intel/issues/2849 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363 [i915#3467 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/index.html [-- Attachment #2: Type: text/html, Size: 37138 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Change gem_sync to no-reloc 2021-10-29 10:27 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2021-10-29 10:46 ` Zbigniew Kempczyński 2021-10-29 16:47 ` Vudum, Lakshminarayana 0 siblings, 1 reply; 16+ messages in thread From: Zbigniew Kempczyński @ 2021-10-29 10:46 UTC (permalink / raw) To: igt-dev; +Cc: Vudum, Lakshminarayana On Fri, Oct 29, 2021 at 10:27:21AM +0000, Patchwork wrote: > Patch Details > > Series: Change gem_sync to no-reloc > URL: https://patchwork.freedesktop.org/series/96401/ > State: failure > Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/index.html > > CI Bug Log - changes from CI_DRM_10809_full -> IGTPW_6362_full > > Summary > > FAILURE > > Serious unknown changes coming with IGTPW_6362_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_6362_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_6362/index.html > > Participating hosts (10 -> 7) > > Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 > > Possible new issues > > Here are the unknown changes that may have been introduced in > IGTPW_6362_full: > > IGT changes > > Possible regressions > > * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: > * shard-iclb: PASS -> FAIL This failure also is not related to the series I've sent. -- Zbigniew > > Known issues > > Here are the changes found in IGTPW_6362_full that come from known issues: > > IGT changes > > Issues hit > > * igt@feature_discovery@display-3x: > > * shard-tglb: NOTRUN -> SKIP (i915#1839) > * igt@gem_ctx_sseu@invalid-args: > > * shard-tglb: NOTRUN -> SKIP (i915#280) > * igt@gem_exec_fair@basic-deadline: > > * shard-tglb: PASS -> FAIL (i915#2846) > * igt@gem_exec_fair@basic-pace-share@rcs0: > > * shard-tglb: PASS -> FAIL (i915#2842) > > * shard-glk: PASS -> FAIL (i915#2842) > > * igt@gem_exec_params@no-vebox: > > * shard-iclb: NOTRUN -> SKIP (fdo#109283) > > * shard-tglb: NOTRUN -> SKIP (fdo#109283) > > * igt@gem_pxp@reject-modify-context-protection-on: > > * shard-tglb: NOTRUN -> SKIP ([i915#4270]) +1 similar issue > > * shard-iclb: NOTRUN -> SKIP ([i915#4270]) > > * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: > > * shard-iclb: NOTRUN -> SKIP ([i915#768]) > * igt@gem_userptr_blits@input-checking: > > * shard-tglb: NOTRUN -> DMESG-WARN (i915#3002) > * igt@gem_userptr_blits@readonly-unsync: > > * shard-tglb: NOTRUN -> SKIP (i915#3297) +1 similar issue > * igt@gen9_exec_parse@allowed-all: > > * shard-glk: PASS -> DMESG-WARN (i915#1436 / [i915#716]) > * igt@gen9_exec_parse@basic-rejected-ctx-param: > > * shard-tglb: NOTRUN -> SKIP (i915#2856) +1 similar issue > * igt@gen9_exec_parse@bb-start-out: > > * shard-iclb: NOTRUN -> SKIP (i915#2856) > * igt@i915_pm_dc@dc6-psr: > > * shard-iclb: PASS -> FAIL ([i915#454]) > * igt@i915_pm_rc6_residency@media-rc6-accuracy: > > * shard-tglb: NOTRUN -> SKIP (fdo#109289 / fdo#111719) > * igt@i915_pm_rc6_residency@rc6-idle: > > * shard-tglb: NOTRUN -> WARN (i915#2681 / i915#2684) > * igt@i915_selftest@live@hangcheck: > > * shard-snb: PASS -> INCOMPLETE ([i915#3921]) > * igt@kms_big_fb@linear-16bpp-rotate-270: > > * shard-tglb: NOTRUN -> SKIP (fdo#111614) +5 similar issues > * igt@kms_big_fb@y-tiled-8bpp-rotate-270: > > * shard-iclb: NOTRUN -> SKIP (fdo#110725 / fdo#111614) > * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: > > * shard-tglb: NOTRUN -> SKIP (fdo#111615) +5 similar issues > > * shard-iclb: NOTRUN -> SKIP (fdo#110723) > > * igt@kms_big_joiner@2x-modeset: > > * shard-tglb: NOTRUN -> SKIP (i915#2705) > * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs: > > * shard-tglb: NOTRUN -> SKIP ([i915#3689]) +8 similar issues > * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: > > * shard-apl: NOTRUN -> SKIP (fdo#109271 / [i915#3886]) +2 similar > issues > * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: > > * shard-iclb: NOTRUN -> SKIP (fdo#109278 / [i915#3886]) > * igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs: > > * shard-tglb: NOTRUN -> SKIP ([i915#3689] / [i915#3886]) +1 similar > issue > * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: > > * shard-glk: NOTRUN -> SKIP (fdo#109271 / [i915#3886]) +1 similar > issue > * igt@kms_ccs@pipe-d-crc-primary-rotation-180-yf_tiled_ccs: > > * shard-apl: NOTRUN -> SKIP (fdo#109271) +93 similar issues > * igt@kms_color_chamelium@pipe-a-gamma: > > * shard-iclb: NOTRUN -> SKIP (fdo#109284 / fdo#111827) +3 similar > issues > * igt@kms_color_chamelium@pipe-b-ctm-blue-to-red: > > * shard-apl: NOTRUN -> SKIP (fdo#109271 / fdo#111827) +7 similar > issues > * igt@kms_color_chamelium@pipe-b-ctm-max: > > * shard-tglb: NOTRUN -> SKIP (fdo#109284 / fdo#111827) +15 similar > issues > * igt@kms_color_chamelium@pipe-d-ctm-0-5: > > * shard-snb: NOTRUN -> SKIP (fdo#109271 / fdo#111827) +2 similar > issues > > * shard-glk: NOTRUN -> SKIP (fdo#109271 / fdo#111827) +2 similar > issues > > * shard-iclb: NOTRUN -> SKIP (fdo#109278 / fdo#109284 / fdo#111827) > > * igt@kms_content_protection@dp-mst-lic-type-1: > > * shard-tglb: NOTRUN -> SKIP (i915#3116) > * igt@kms_content_protection@lic: > > * shard-tglb: NOTRUN -> SKIP (fdo#111828) +1 similar issue > * igt@kms_cursor_crc@pipe-b-cursor-32x32-sliding: > > * shard-tglb: NOTRUN -> SKIP (i915#3319) +3 similar issues > * igt@kms_cursor_crc@pipe-b-cursor-512x512-rapid-movement: > > * shard-iclb: NOTRUN -> SKIP (fdo#109278 / fdo#109279) > * igt@kms_cursor_crc@pipe-d-cursor-256x256-rapid-movement: > > * shard-iclb: NOTRUN -> SKIP (fdo#109278) +14 similar issues > * igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement: > > * shard-tglb: NOTRUN -> SKIP (i915#3359) +5 similar issues > * igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding: > > * shard-tglb: NOTRUN -> SKIP (fdo#109279 / i915#3359) +3 similar > issues > * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: > > * shard-iclb: NOTRUN -> SKIP (fdo#109274 / fdo#109278) +1 similar > issue > * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: > > * shard-tglb: NOTRUN -> SKIP ([i915#4103]) > * igt@kms_flip@2x-nonexisting-fb: > > * shard-iclb: NOTRUN -> SKIP (fdo#109274) +1 similar issue > * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1: > > * shard-apl: PASS -> FAIL ([i915#79]) > * igt@kms_flip@flip-vs-suspend@c-dp1: > > * shard-apl: PASS -> DMESG-WARN (i915#180) +1 similar issue > * igt@kms_force_connector_basic@force-load-detect: > > * shard-iclb: NOTRUN -> SKIP (fdo#109285) > > * shard-tglb: NOTRUN -> SKIP (fdo#109285) > > * igt@kms_frontbuffer_tracking@fbc-suspend: > > * shard-tglb: PASS -> INCOMPLETE (i915#2828 / [i915#456]) > * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite: > > * shard-iclb: NOTRUN -> SKIP (fdo#109280) +13 similar issues > * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff: > > * shard-snb: NOTRUN -> SKIP (fdo#109271) +76 similar issues > * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite: > > * shard-tglb: NOTRUN -> SKIP (fdo#111825) +35 similar issues > * igt@kms_hdr@static-toggle-dpms: > > * shard-tglb: NOTRUN -> SKIP (i915#1187) > > * shard-iclb: NOTRUN -> SKIP (i915#1187) > > * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d: > > * shard-apl: NOTRUN -> SKIP (fdo#109271 / [i915#533]) > > * shard-glk: NOTRUN -> SKIP (fdo#109271 / [i915#533]) > > * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: > > * shard-apl: NOTRUN -> FAIL (fdo#108145 / i915#265) > * igt@kms_plane_lowres@pipe-c-tiling-y: > > * shard-iclb: NOTRUN -> SKIP ([i915#3536]) > > * shard-tglb: NOTRUN -> SKIP ([i915#3536]) > > * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4: > > * shard-apl: NOTRUN -> SKIP (fdo#109271 / [i915#658]) +1 similar > issue > * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5: > > * shard-tglb: NOTRUN -> SKIP (i915#2920) +1 similar issue > * igt@kms_psr@psr2_cursor_blt: > > * shard-iclb: NOTRUN -> SKIP (fdo#109441) > * igt@kms_psr@psr2_cursor_plane_move: > > * shard-iclb: PASS -> SKIP (fdo#109441) +1 similar issue > * igt@kms_psr@psr2_sprite_render: > > * shard-tglb: NOTRUN -> FAIL (i915#132 / [i915#3467]) +2 similar > issues > * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: > > * shard-glk: NOTRUN -> SKIP (fdo#109271) +55 similar issues > * igt@kms_vblank@pipe-d-ts-continuation-suspend: > > * shard-tglb: NOTRUN -> INCOMPLETE ([i915#3896]) > * igt@kms_vrr@flip-suspend: > > * shard-tglb: NOTRUN -> SKIP (fdo#109502) > * igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame: > > * shard-tglb: NOTRUN -> SKIP (i915#2530) +1 similar issue > > * shard-iclb: NOTRUN -> SKIP (i915#2530) > > * igt@perf@gen8-unprivileged-single-ctx-counters: > > * shard-tglb: NOTRUN -> SKIP (fdo#109289) +1 similar issue > * igt@prime_nv_api@nv_i915_import_twice_check_flink_name: > > * shard-iclb: NOTRUN -> SKIP (fdo#109291) +1 similar issue > * igt@prime_nv_test@nv_write_i915_cpu_mmap_read: > > * shard-tglb: NOTRUN -> SKIP (fdo#109291) +5 similar issues > * igt@prime_vgem@fence-write-hang: > > * shard-tglb: NOTRUN -> SKIP (fdo#109295) > * igt@sysfs_clients@busy: > > * shard-tglb: NOTRUN -> SKIP (i915#2994) +1 similar issue > * igt@sysfs_clients@pidname: > > * shard-iclb: NOTRUN -> SKIP (i915#2994) > > * shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#2994) > > * shard-glk: NOTRUN -> SKIP (fdo#109271 / i915#2994) > > Possible fixes > > * igt@gem_exec_fair@basic-pace@vecs0: > > * shard-tglb: FAIL (i915#2842) -> PASS +2 similar issues > * igt@gem_workarounds@suspend-resume: > > * shard-tglb: INCOMPLETE ([i915#456]) -> PASS > * igt@i915_suspend@fence-restore-untiled: > > * shard-apl: DMESG-WARN (i915#180) -> PASS +1 similar issue > * igt@kms_big_fb@linear-32bpp-rotate-180: > > * shard-glk: DMESG-WARN (i915#118) -> PASS +3 similar issues > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: > > * shard-iclb: FAIL (i915#2346) -> PASS > * igt@kms_psr@psr2_sprite_plane_move: > > * shard-iclb: SKIP (fdo#109441) -> PASS +2 similar issues > * igt@kms_vblank@pipe-c-ts-continuation-suspend: > > * shard-iclb: SKIP (fdo#109278) -> PASS > > Warnings > > * igt@gem_exec_fair@basic-throttle@rcs0: > > * shard-iclb: FAIL (i915#2842) -> FAIL (i915#2849) > * igt@kms_psr2_sf@plane-move-sf-dmg-area-2: > > * shard-iclb: SKIP ([i915#658]) -> SKIP (i915#2920) +2 similar > issues > * igt@kms_psr2_sf@plane-move-sf-dmg-area-3: > > * shard-iclb: SKIP (i915#2920) -> SKIP ([i915#658]) +1 similar > issue > * igt@kms_psr2_su@page_flip: > > * shard-iclb: FAIL ([i915#4148]) -> SKIP (fdo#109642 / fdo#111068 / > [i915#658]) > * igt@runner@aborted: > > * shard-apl: (FAIL, FAIL, FAIL, FAIL) (fdo#109271 / i915#180 / > i915#1814 / i915#3002 / i915#3363 / [i915#4312]) -> (FAIL, FAIL, > FAIL, FAIL) (i915#180 / i915#1814 / i915#3002 / i915#3363 / > [i915#4312]) > > [i915#3467 ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Change gem_sync to no-reloc 2021-10-29 10:46 ` Zbigniew Kempczyński @ 2021-10-29 16:47 ` Vudum, Lakshminarayana 0 siblings, 0 replies; 16+ messages in thread From: Vudum, Lakshminarayana @ 2021-10-29 16:47 UTC (permalink / raw) To: Kempczynski, Zbigniew, igt-dev@lists.freedesktop.org We have a bug for the failure but I updated the filter to include ICL https://gitlab.freedesktop.org/drm/intel/-/issues/3722 igt@kms_big_fb@.* - fail - Failed assertion: igt_check_crc_equal(&compare_crc, &async_crc)^(i^1), CRC failure with async flip, crc shouldn't match for checked round Thanks, Lakshmi. -----Original Message----- From: Kempczynski, Zbigniew <zbigniew.kempczynski@intel.com> Sent: Friday, October 29, 2021 3:46 AM To: igt-dev@lists.freedesktop.org Cc: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> Subject: Re: ✗ Fi.CI.IGT: failure for Change gem_sync to no-reloc On Fri, Oct 29, 2021 at 10:27:21AM +0000, Patchwork wrote: > Patch Details > > Series: Change gem_sync to no-reloc > URL: https://patchwork.freedesktop.org/series/96401/ > State: failure > Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/index.html > > CI Bug Log - changes from CI_DRM_10809_full -> IGTPW_6362_full > > Summary > > FAILURE > > Serious unknown changes coming with IGTPW_6362_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_6362_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_6362/index.html > > Participating hosts (10 -> 7) > > Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 > > Possible new issues > > Here are the unknown changes that may have been introduced in > IGTPW_6362_full: > > IGT changes > > Possible regressions > > * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: > * shard-iclb: PASS -> FAIL This failure also is not related to the series I've sent. -- Zbigniew > > Known issues > > Here are the changes found in IGTPW_6362_full that come from known issues: > > IGT changes > > Issues hit > > * igt@feature_discovery@display-3x: > > * shard-tglb: NOTRUN -> SKIP (i915#1839) > * igt@gem_ctx_sseu@invalid-args: > > * shard-tglb: NOTRUN -> SKIP (i915#280) > * igt@gem_exec_fair@basic-deadline: > > * shard-tglb: PASS -> FAIL (i915#2846) > * igt@gem_exec_fair@basic-pace-share@rcs0: > > * shard-tglb: PASS -> FAIL (i915#2842) > > * shard-glk: PASS -> FAIL (i915#2842) > > * igt@gem_exec_params@no-vebox: > > * shard-iclb: NOTRUN -> SKIP (fdo#109283) > > * shard-tglb: NOTRUN -> SKIP (fdo#109283) > > * igt@gem_pxp@reject-modify-context-protection-on: > > * shard-tglb: NOTRUN -> SKIP ([i915#4270]) +1 similar issue > > * shard-iclb: NOTRUN -> SKIP ([i915#4270]) > > * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: > > * shard-iclb: NOTRUN -> SKIP ([i915#768]) > * igt@gem_userptr_blits@input-checking: > > * shard-tglb: NOTRUN -> DMESG-WARN (i915#3002) > * igt@gem_userptr_blits@readonly-unsync: > > * shard-tglb: NOTRUN -> SKIP (i915#3297) +1 similar issue > * igt@gen9_exec_parse@allowed-all: > > * shard-glk: PASS -> DMESG-WARN (i915#1436 / [i915#716]) > * igt@gen9_exec_parse@basic-rejected-ctx-param: > > * shard-tglb: NOTRUN -> SKIP (i915#2856) +1 similar issue > * igt@gen9_exec_parse@bb-start-out: > > * shard-iclb: NOTRUN -> SKIP (i915#2856) > * igt@i915_pm_dc@dc6-psr: > > * shard-iclb: PASS -> FAIL ([i915#454]) > * igt@i915_pm_rc6_residency@media-rc6-accuracy: > > * shard-tglb: NOTRUN -> SKIP (fdo#109289 / fdo#111719) > * igt@i915_pm_rc6_residency@rc6-idle: > > * shard-tglb: NOTRUN -> WARN (i915#2681 / i915#2684) > * igt@i915_selftest@live@hangcheck: > > * shard-snb: PASS -> INCOMPLETE ([i915#3921]) > * igt@kms_big_fb@linear-16bpp-rotate-270: > > * shard-tglb: NOTRUN -> SKIP (fdo#111614) +5 similar issues > * igt@kms_big_fb@y-tiled-8bpp-rotate-270: > > * shard-iclb: NOTRUN -> SKIP (fdo#110725 / fdo#111614) > * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: > > * shard-tglb: NOTRUN -> SKIP (fdo#111615) +5 similar issues > > * shard-iclb: NOTRUN -> SKIP (fdo#110723) > > * igt@kms_big_joiner@2x-modeset: > > * shard-tglb: NOTRUN -> SKIP (i915#2705) > * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs: > > * shard-tglb: NOTRUN -> SKIP ([i915#3689]) +8 similar issues > * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: > > * shard-apl: NOTRUN -> SKIP (fdo#109271 / [i915#3886]) +2 similar > issues > * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: > > * shard-iclb: NOTRUN -> SKIP (fdo#109278 / [i915#3886]) > * igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs: > > * shard-tglb: NOTRUN -> SKIP ([i915#3689] / [i915#3886]) +1 similar > issue > * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: > > * shard-glk: NOTRUN -> SKIP (fdo#109271 / [i915#3886]) +1 similar > issue > * igt@kms_ccs@pipe-d-crc-primary-rotation-180-yf_tiled_ccs: > > * shard-apl: NOTRUN -> SKIP (fdo#109271) +93 similar issues > * igt@kms_color_chamelium@pipe-a-gamma: > > * shard-iclb: NOTRUN -> SKIP (fdo#109284 / fdo#111827) +3 similar > issues > * igt@kms_color_chamelium@pipe-b-ctm-blue-to-red: > > * shard-apl: NOTRUN -> SKIP (fdo#109271 / fdo#111827) +7 similar > issues > * igt@kms_color_chamelium@pipe-b-ctm-max: > > * shard-tglb: NOTRUN -> SKIP (fdo#109284 / fdo#111827) +15 similar > issues > * igt@kms_color_chamelium@pipe-d-ctm-0-5: > > * shard-snb: NOTRUN -> SKIP (fdo#109271 / fdo#111827) +2 similar > issues > > * shard-glk: NOTRUN -> SKIP (fdo#109271 / fdo#111827) +2 similar > issues > > * shard-iclb: NOTRUN -> SKIP (fdo#109278 / fdo#109284 / fdo#111827) > > * igt@kms_content_protection@dp-mst-lic-type-1: > > * shard-tglb: NOTRUN -> SKIP (i915#3116) > * igt@kms_content_protection@lic: > > * shard-tglb: NOTRUN -> SKIP (fdo#111828) +1 similar issue > * igt@kms_cursor_crc@pipe-b-cursor-32x32-sliding: > > * shard-tglb: NOTRUN -> SKIP (i915#3319) +3 similar issues > * igt@kms_cursor_crc@pipe-b-cursor-512x512-rapid-movement: > > * shard-iclb: NOTRUN -> SKIP (fdo#109278 / fdo#109279) > * igt@kms_cursor_crc@pipe-d-cursor-256x256-rapid-movement: > > * shard-iclb: NOTRUN -> SKIP (fdo#109278) +14 similar issues > * igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement: > > * shard-tglb: NOTRUN -> SKIP (i915#3359) +5 similar issues > * igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding: > > * shard-tglb: NOTRUN -> SKIP (fdo#109279 / i915#3359) +3 similar > issues > * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: > > * shard-iclb: NOTRUN -> SKIP (fdo#109274 / fdo#109278) +1 similar > issue > * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: > > * shard-tglb: NOTRUN -> SKIP ([i915#4103]) > * igt@kms_flip@2x-nonexisting-fb: > > * shard-iclb: NOTRUN -> SKIP (fdo#109274) +1 similar issue > * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1: > > * shard-apl: PASS -> FAIL ([i915#79]) > * igt@kms_flip@flip-vs-suspend@c-dp1: > > * shard-apl: PASS -> DMESG-WARN (i915#180) +1 similar issue > * igt@kms_force_connector_basic@force-load-detect: > > * shard-iclb: NOTRUN -> SKIP (fdo#109285) > > * shard-tglb: NOTRUN -> SKIP (fdo#109285) > > * igt@kms_frontbuffer_tracking@fbc-suspend: > > * shard-tglb: PASS -> INCOMPLETE (i915#2828 / [i915#456]) > * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite: > > * shard-iclb: NOTRUN -> SKIP (fdo#109280) +13 similar issues > * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff: > > * shard-snb: NOTRUN -> SKIP (fdo#109271) +76 similar issues > * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite: > > * shard-tglb: NOTRUN -> SKIP (fdo#111825) +35 similar issues > * igt@kms_hdr@static-toggle-dpms: > > * shard-tglb: NOTRUN -> SKIP (i915#1187) > > * shard-iclb: NOTRUN -> SKIP (i915#1187) > > * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d: > > * shard-apl: NOTRUN -> SKIP (fdo#109271 / [i915#533]) > > * shard-glk: NOTRUN -> SKIP (fdo#109271 / [i915#533]) > > * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: > > * shard-apl: NOTRUN -> FAIL (fdo#108145 / i915#265) > * igt@kms_plane_lowres@pipe-c-tiling-y: > > * shard-iclb: NOTRUN -> SKIP ([i915#3536]) > > * shard-tglb: NOTRUN -> SKIP ([i915#3536]) > > * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4: > > * shard-apl: NOTRUN -> SKIP (fdo#109271 / [i915#658]) +1 similar > issue > * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5: > > * shard-tglb: NOTRUN -> SKIP (i915#2920) +1 similar issue > * igt@kms_psr@psr2_cursor_blt: > > * shard-iclb: NOTRUN -> SKIP (fdo#109441) > * igt@kms_psr@psr2_cursor_plane_move: > > * shard-iclb: PASS -> SKIP (fdo#109441) +1 similar issue > * igt@kms_psr@psr2_sprite_render: > > * shard-tglb: NOTRUN -> FAIL (i915#132 / [i915#3467]) +2 similar > issues > * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: > > * shard-glk: NOTRUN -> SKIP (fdo#109271) +55 similar issues > * igt@kms_vblank@pipe-d-ts-continuation-suspend: > > * shard-tglb: NOTRUN -> INCOMPLETE ([i915#3896]) > * igt@kms_vrr@flip-suspend: > > * shard-tglb: NOTRUN -> SKIP (fdo#109502) > * igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame: > > * shard-tglb: NOTRUN -> SKIP (i915#2530) +1 similar issue > > * shard-iclb: NOTRUN -> SKIP (i915#2530) > > * igt@perf@gen8-unprivileged-single-ctx-counters: > > * shard-tglb: NOTRUN -> SKIP (fdo#109289) +1 similar issue > * igt@prime_nv_api@nv_i915_import_twice_check_flink_name: > > * shard-iclb: NOTRUN -> SKIP (fdo#109291) +1 similar issue > * igt@prime_nv_test@nv_write_i915_cpu_mmap_read: > > * shard-tglb: NOTRUN -> SKIP (fdo#109291) +5 similar issues > * igt@prime_vgem@fence-write-hang: > > * shard-tglb: NOTRUN -> SKIP (fdo#109295) > * igt@sysfs_clients@busy: > > * shard-tglb: NOTRUN -> SKIP (i915#2994) +1 similar issue > * igt@sysfs_clients@pidname: > > * shard-iclb: NOTRUN -> SKIP (i915#2994) > > * shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#2994) > > * shard-glk: NOTRUN -> SKIP (fdo#109271 / i915#2994) > > Possible fixes > > * igt@gem_exec_fair@basic-pace@vecs0: > > * shard-tglb: FAIL (i915#2842) -> PASS +2 similar issues > * igt@gem_workarounds@suspend-resume: > > * shard-tglb: INCOMPLETE ([i915#456]) -> PASS > * igt@i915_suspend@fence-restore-untiled: > > * shard-apl: DMESG-WARN (i915#180) -> PASS +1 similar issue > * igt@kms_big_fb@linear-32bpp-rotate-180: > > * shard-glk: DMESG-WARN (i915#118) -> PASS +3 similar issues > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: > > * shard-iclb: FAIL (i915#2346) -> PASS > * igt@kms_psr@psr2_sprite_plane_move: > > * shard-iclb: SKIP (fdo#109441) -> PASS +2 similar issues > * igt@kms_vblank@pipe-c-ts-continuation-suspend: > > * shard-iclb: SKIP (fdo#109278) -> PASS > > Warnings > > * igt@gem_exec_fair@basic-throttle@rcs0: > > * shard-iclb: FAIL (i915#2842) -> FAIL (i915#2849) > * igt@kms_psr2_sf@plane-move-sf-dmg-area-2: > > * shard-iclb: SKIP ([i915#658]) -> SKIP (i915#2920) +2 similar > issues > * igt@kms_psr2_sf@plane-move-sf-dmg-area-3: > > * shard-iclb: SKIP (i915#2920) -> SKIP ([i915#658]) +1 similar > issue > * igt@kms_psr2_su@page_flip: > > * shard-iclb: FAIL ([i915#4148]) -> SKIP (fdo#109642 / fdo#111068 / > [i915#658]) > * igt@runner@aborted: > > * shard-apl: (FAIL, FAIL, FAIL, FAIL) (fdo#109271 / i915#180 / > i915#1814 / i915#3002 / i915#3363 / [i915#4312]) -> (FAIL, FAIL, > FAIL, FAIL) (i915#180 / i915#1814 / i915#3002 / i915#3363 / > [i915#4312]) > > [i915#3467 ^ permalink raw reply [flat|nested] 16+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Change gem_sync to no-reloc 2021-10-28 18:23 [igt-dev] [PATCH i-g-t 0/2] Change gem_sync to no-reloc Zbigniew Kempczyński ` (5 preceding siblings ...) 2021-10-29 10:27 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2021-10-29 16:17 ` Patchwork 6 siblings, 0 replies; 16+ messages in thread From: Patchwork @ 2021-10-29 16:17 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 30242 bytes --] == Series Details == Series: Change gem_sync to no-reloc URL : https://patchwork.freedesktop.org/series/96401/ State : success == Summary == CI Bug Log - changes from CI_DRM_10809_full -> IGTPW_6362_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/index.html Participating hosts (10 -> 7) ------------------------------ Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Known issues ------------ Here are the changes found in IGTPW_6362_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@feature_discovery@display-3x: - shard-tglb: NOTRUN -> [SKIP][1] ([i915#1839]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb7/igt@feature_discovery@display-3x.html * igt@gem_ctx_sseu@invalid-args: - shard-tglb: NOTRUN -> [SKIP][2] ([i915#280]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb7/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_fair@basic-deadline: - shard-tglb: [PASS][3] -> [FAIL][4] ([i915#2846]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-tglb2/igt@gem_exec_fair@basic-deadline.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb6/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglb: [PASS][5] -> [FAIL][6] ([i915#2842]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-tglb5/igt@gem_exec_fair@basic-pace-share@rcs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb2/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-glk: [PASS][7] -> [FAIL][8] ([i915#2842]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_params@no-vebox: - shard-iclb: NOTRUN -> [SKIP][9] ([fdo#109283]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb3/igt@gem_exec_params@no-vebox.html - shard-tglb: NOTRUN -> [SKIP][10] ([fdo#109283]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb7/igt@gem_exec_params@no-vebox.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-tglb: NOTRUN -> [SKIP][11] ([i915#4270]) +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb2/igt@gem_pxp@reject-modify-context-protection-on.html - shard-iclb: NOTRUN -> [SKIP][12] ([i915#4270]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb5/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-iclb: NOTRUN -> [SKIP][13] ([i915#768]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb3/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_userptr_blits@input-checking: - shard-tglb: NOTRUN -> [DMESG-WARN][14] ([i915#3002]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb6/igt@gem_userptr_blits@input-checking.html * igt@gem_userptr_blits@readonly-unsync: - shard-tglb: NOTRUN -> [SKIP][15] ([i915#3297]) +1 similar issue [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb2/igt@gem_userptr_blits@readonly-unsync.html * igt@gen9_exec_parse@allowed-all: - shard-glk: [PASS][16] -> [DMESG-WARN][17] ([i915#1436] / [i915#716]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-glk2/igt@gen9_exec_parse@allowed-all.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-glk3/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-tglb: NOTRUN -> [SKIP][18] ([i915#2856]) +1 similar issue [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb1/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-start-out: - shard-iclb: NOTRUN -> [SKIP][19] ([i915#2856]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb4/igt@gen9_exec_parse@bb-start-out.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [PASS][20] -> [FAIL][21] ([i915#454]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-iclb2/igt@i915_pm_dc@dc6-psr.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb3/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-tglb: NOTRUN -> [SKIP][22] ([fdo#109289] / [fdo#111719]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-tglb: NOTRUN -> [WARN][23] ([i915#2681] / [i915#2684]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb2/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_selftest@live@hangcheck: - shard-snb: [PASS][24] -> [INCOMPLETE][25] ([i915#3921]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-snb5/igt@i915_selftest@live@hangcheck.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-snb5/igt@i915_selftest@live@hangcheck.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-tglb: NOTRUN -> [SKIP][26] ([fdo#111614]) +5 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb6/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-iclb: [PASS][27] -> [FAIL][28] ([i915#3743]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-iclb2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-iclb: NOTRUN -> [SKIP][29] ([fdo#110725] / [fdo#111614]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb1/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: - shard-tglb: NOTRUN -> [SKIP][30] ([fdo#111615]) +5 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb7/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html - shard-iclb: NOTRUN -> [SKIP][31] ([fdo#110723]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb5/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html * igt@kms_big_joiner@2x-modeset: - shard-tglb: NOTRUN -> [SKIP][32] ([i915#2705]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb5/igt@kms_big_joiner@2x-modeset.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][33] ([i915#3689]) +8 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb2/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][34] ([fdo#109271] / [i915#3886]) +2 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl3/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-iclb: NOTRUN -> [SKIP][35] ([fdo#109278] / [i915#3886]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb4/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-tglb: NOTRUN -> [SKIP][36] ([i915#3689] / [i915#3886]) +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb1/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][37] ([fdo#109271] / [i915#3886]) +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-glk3/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-yf_tiled_ccs: - shard-apl: NOTRUN -> [SKIP][38] ([fdo#109271]) +93 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl7/igt@kms_ccs@pipe-d-crc-primary-rotation-180-yf_tiled_ccs.html * igt@kms_color_chamelium@pipe-a-gamma: - shard-iclb: NOTRUN -> [SKIP][39] ([fdo#109284] / [fdo#111827]) +3 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb6/igt@kms_color_chamelium@pipe-a-gamma.html * igt@kms_color_chamelium@pipe-b-ctm-blue-to-red: - shard-apl: NOTRUN -> [SKIP][40] ([fdo#109271] / [fdo#111827]) +7 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl6/igt@kms_color_chamelium@pipe-b-ctm-blue-to-red.html * igt@kms_color_chamelium@pipe-b-ctm-max: - shard-tglb: NOTRUN -> [SKIP][41] ([fdo#109284] / [fdo#111827]) +15 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb3/igt@kms_color_chamelium@pipe-b-ctm-max.html * igt@kms_color_chamelium@pipe-d-ctm-0-5: - shard-snb: NOTRUN -> [SKIP][42] ([fdo#109271] / [fdo#111827]) +2 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-snb7/igt@kms_color_chamelium@pipe-d-ctm-0-5.html - shard-glk: NOTRUN -> [SKIP][43] ([fdo#109271] / [fdo#111827]) +2 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-glk1/igt@kms_color_chamelium@pipe-d-ctm-0-5.html - shard-iclb: NOTRUN -> [SKIP][44] ([fdo#109278] / [fdo#109284] / [fdo#111827]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb6/igt@kms_color_chamelium@pipe-d-ctm-0-5.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-tglb: NOTRUN -> [SKIP][45] ([i915#3116]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb7/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@lic: - shard-tglb: NOTRUN -> [SKIP][46] ([fdo#111828]) +1 similar issue [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb2/igt@kms_content_protection@lic.html * igt@kms_cursor_crc@pipe-b-cursor-32x32-sliding: - shard-tglb: NOTRUN -> [SKIP][47] ([i915#3319]) +3 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb5/igt@kms_cursor_crc@pipe-b-cursor-32x32-sliding.html * igt@kms_cursor_crc@pipe-b-cursor-512x512-rapid-movement: - shard-iclb: NOTRUN -> [SKIP][48] ([fdo#109278] / [fdo#109279]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb7/igt@kms_cursor_crc@pipe-b-cursor-512x512-rapid-movement.html * igt@kms_cursor_crc@pipe-d-cursor-256x256-rapid-movement: - shard-iclb: NOTRUN -> [SKIP][49] ([fdo#109278]) +14 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb7/igt@kms_cursor_crc@pipe-d-cursor-256x256-rapid-movement.html * igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement: - shard-tglb: NOTRUN -> [SKIP][50] ([i915#3359]) +5 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb1/igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement.html * igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding: - shard-tglb: NOTRUN -> [SKIP][51] ([fdo#109279] / [i915#3359]) +3 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb2/igt@kms_cursor_crc@pipe-d-cursor-512x512-sliding.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-iclb: NOTRUN -> [SKIP][52] ([fdo#109274] / [fdo#109278]) +1 similar issue [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-tglb: NOTRUN -> [SKIP][53] ([i915#4103]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_flip@2x-nonexisting-fb: - shard-iclb: NOTRUN -> [SKIP][54] ([fdo#109274]) +1 similar issue [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb6/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1: - shard-apl: [PASS][55] -> [FAIL][56] ([i915#79]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-apl4/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html * igt@kms_flip@flip-vs-suspend@c-dp1: - shard-apl: [PASS][57] -> [DMESG-WARN][58] ([i915#180]) +1 similar issue [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-apl3/igt@kms_flip@flip-vs-suspend@c-dp1.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl1/igt@kms_flip@flip-vs-suspend@c-dp1.html * igt@kms_force_connector_basic@force-load-detect: - shard-iclb: NOTRUN -> [SKIP][59] ([fdo#109285]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb8/igt@kms_force_connector_basic@force-load-detect.html - shard-tglb: NOTRUN -> [SKIP][60] ([fdo#109285]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb3/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-tglb: [PASS][61] -> [INCOMPLETE][62] ([i915#2828] / [i915#456]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-suspend.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb7/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite: - shard-iclb: NOTRUN -> [SKIP][63] ([fdo#109280]) +13 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff: - shard-snb: NOTRUN -> [SKIP][64] ([fdo#109271]) +76 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-snb6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-tglb: NOTRUN -> [SKIP][65] ([fdo#111825]) +35 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_hdr@static-toggle-dpms: - shard-tglb: NOTRUN -> [SKIP][66] ([i915#1187]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb7/igt@kms_hdr@static-toggle-dpms.html - shard-iclb: NOTRUN -> [SKIP][67] ([i915#1187]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb3/igt@kms_hdr@static-toggle-dpms.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d: - shard-apl: NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#533]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html - shard-glk: NOTRUN -> [SKIP][69] ([fdo#109271] / [i915#533]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-glk7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: - shard-apl: NOTRUN -> [FAIL][70] ([fdo#108145] / [i915#265]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl4/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html * igt@kms_plane_lowres@pipe-c-tiling-y: - shard-iclb: NOTRUN -> [SKIP][71] ([i915#3536]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb5/igt@kms_plane_lowres@pipe-c-tiling-y.html - shard-tglb: NOTRUN -> [SKIP][72] ([i915#3536]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb2/igt@kms_plane_lowres@pipe-c-tiling-y.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4: - shard-apl: NOTRUN -> [SKIP][73] ([fdo#109271] / [i915#658]) +1 similar issue [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl8/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5: - shard-tglb: NOTRUN -> [SKIP][74] ([i915#2920]) +1 similar issue [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb3/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html * igt@kms_psr@psr2_cursor_blt: - shard-iclb: NOTRUN -> [SKIP][75] ([fdo#109441]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb4/igt@kms_psr@psr2_cursor_blt.html * igt@kms_psr@psr2_cursor_plane_move: - shard-iclb: [PASS][76] -> [SKIP][77] ([fdo#109441]) +1 similar issue [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-iclb2/igt@kms_psr@psr2_cursor_plane_move.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb3/igt@kms_psr@psr2_cursor_plane_move.html * igt@kms_psr@psr2_sprite_render: - shard-tglb: NOTRUN -> [FAIL][78] ([i915#132] / [i915#3467]) +2 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb5/igt@kms_psr@psr2_sprite_render.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-glk: NOTRUN -> [SKIP][79] ([fdo#109271]) +55 similar issues [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-glk2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_vblank@pipe-d-ts-continuation-suspend: - shard-tglb: NOTRUN -> [INCOMPLETE][80] ([i915#3896]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb7/igt@kms_vblank@pipe-d-ts-continuation-suspend.html * igt@kms_vrr@flip-suspend: - shard-tglb: NOTRUN -> [SKIP][81] ([fdo#109502]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb7/igt@kms_vrr@flip-suspend.html * igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame: - shard-tglb: NOTRUN -> [SKIP][82] ([i915#2530]) +1 similar issue [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb5/igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame.html - shard-iclb: NOTRUN -> [SKIP][83] ([i915#2530]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb5/igt@nouveau_crc@pipe-c-ctx-flip-skip-current-frame.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-tglb: NOTRUN -> [SKIP][84] ([fdo#109289]) +1 similar issue [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb3/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@prime_nv_api@nv_i915_import_twice_check_flink_name: - shard-iclb: NOTRUN -> [SKIP][85] ([fdo#109291]) +1 similar issue [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb4/igt@prime_nv_api@nv_i915_import_twice_check_flink_name.html * igt@prime_nv_test@nv_write_i915_cpu_mmap_read: - shard-tglb: NOTRUN -> [SKIP][86] ([fdo#109291]) +5 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb5/igt@prime_nv_test@nv_write_i915_cpu_mmap_read.html * igt@prime_vgem@fence-write-hang: - shard-tglb: NOTRUN -> [SKIP][87] ([fdo#109295]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb6/igt@prime_vgem@fence-write-hang.html * igt@sysfs_clients@busy: - shard-tglb: NOTRUN -> [SKIP][88] ([i915#2994]) +1 similar issue [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb3/igt@sysfs_clients@busy.html * igt@sysfs_clients@pidname: - shard-iclb: NOTRUN -> [SKIP][89] ([i915#2994]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb3/igt@sysfs_clients@pidname.html - shard-apl: NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#2994]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl2/igt@sysfs_clients@pidname.html - shard-glk: NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#2994]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-glk5/igt@sysfs_clients@pidname.html #### Possible fixes #### * igt@gem_exec_fair@basic-pace@vecs0: - shard-tglb: [FAIL][92] ([i915#2842]) -> [PASS][93] +2 similar issues [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-tglb3/igt@gem_exec_fair@basic-pace@vecs0.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb1/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_workarounds@suspend-resume: - shard-tglb: [INCOMPLETE][94] ([i915#456]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-tglb7/igt@gem_workarounds@suspend-resume.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-tglb6/igt@gem_workarounds@suspend-resume.html * igt@i915_suspend@fence-restore-untiled: - shard-apl: [DMESG-WARN][96] ([i915#180]) -> [PASS][97] +1 similar issue [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-apl6/igt@i915_suspend@fence-restore-untiled.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl6/igt@i915_suspend@fence-restore-untiled.html * igt@kms_big_fb@linear-32bpp-rotate-180: - shard-glk: [DMESG-WARN][98] ([i915#118]) -> [PASS][99] +3 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-glk9/igt@kms_big_fb@linear-32bpp-rotate-180.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-glk9/igt@kms_big_fb@linear-32bpp-rotate-180.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-iclb: [FAIL][100] ([i915#2346]) -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: [SKIP][102] ([fdo#109441]) -> [PASS][103] +2 similar issues [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-iclb6/igt@kms_psr@psr2_sprite_plane_move.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_vblank@pipe-c-ts-continuation-suspend: - shard-iclb: [SKIP][104] ([fdo#109278]) -> [PASS][105] [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-iclb5/igt@kms_vblank@pipe-c-ts-continuation-suspend.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb4/igt@kms_vblank@pipe-c-ts-continuation-suspend.html #### Warnings #### * igt@gem_exec_fair@basic-throttle@rcs0: - shard-iclb: [FAIL][106] ([i915#2842]) -> [FAIL][107] ([i915#2849]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-iclb1/igt@gem_exec_fair@basic-throttle@rcs0.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb5/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@kms_psr2_sf@plane-move-sf-dmg-area-2: - shard-iclb: [SKIP][108] ([i915#658]) -> [SKIP][109] ([i915#2920]) +2 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-iclb3/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html * igt@kms_psr2_sf@plane-move-sf-dmg-area-3: - shard-iclb: [SKIP][110] ([i915#2920]) -> [SKIP][111] ([i915#658]) +1 similar issue [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb6/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html * igt@kms_psr2_su@page_flip: - shard-iclb: [FAIL][112] ([i915#4148]) -> [SKIP][113] ([fdo#109642] / [fdo#111068] / [i915#658]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-iclb2/igt@kms_psr2_su@page_flip.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-iclb5/igt@kms_psr2_su@page_flip.html * igt@runner@aborted: - shard-apl: ([FAIL][114], [FAIL][115], [FAIL][116], [FAIL][117]) ([fdo#109271] / [i915#180] / [i915#1814] / [i915#3002] / [i915#3363] / [i915#4312]) -> ([FAIL][118], [FAIL][119], [FAIL][120], [FAIL][121]) ([i915#180] / [i915#1814] / [i915#3002] / [i915#3363] / [i915#4312]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-apl8/igt@runner@aborted.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-apl1/igt@runner@aborted.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-apl6/igt@runner@aborted.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10809/shard-apl6/igt@runner@aborted.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl3/igt@runner@aborted.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl1/igt@runner@aborted.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl2/igt@runner@aborted.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/shard-apl1/igt@runner@aborted.html [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [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#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109502]: https://bugs.freedesktop.org/show_bug.cgi?id=109502 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111719]: https://bugs.freedesktop.org/show_bug.cgi?id=111719 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#111828]: https://bugs.freedesktop.org/show_bug.cgi?id=111828 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [i915#1187]: https://gitlab.freedesktop.org/drm/intel/issues/1187 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1814]: https://gitlab.freedesktop.org/drm/intel/issues/1814 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530 [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2828]: https://gitlab.freedesktop.org/drm/intel/issues/2828 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2849]: https://gitlab.freedesktop.org/drm/intel/issues/2849 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363 [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467 [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3896]: https://gitlab.freedesktop.org/drm/intel/issues/3896 [i915#3921]: https://gitlab.freedesktop.org/drm/intel/issues/3921 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6362/index.html [-- Attachment #2: Type: text/html, Size: 37416 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2021-11-02 8:23 UTC | newest] Thread overview: 16+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-10-28 18:23 [igt-dev] [PATCH i-g-t 0/2] Change gem_sync to no-reloc Zbigniew Kempczyński 2021-10-28 18:23 ` [igt-dev] [PATCH i-g-t 1/2] tests/gem_sync: Use timeouts definitions instead hardcoded value Zbigniew Kempczyński 2021-10-29 21:32 ` Dixit, Ashutosh 2021-11-02 7:40 ` Zbigniew Kempczyński 2021-10-28 18:23 ` [igt-dev] [PATCH i-g-t 2/2] tests/gem_sync: Use softpin path for no-reloc gens Zbigniew Kempczyński 2021-10-30 3:55 ` Dixit, Ashutosh 2021-11-02 8:23 ` Zbigniew Kempczyński 2021-10-28 21:11 ` [igt-dev] ✗ Fi.CI.BAT: failure for Change gem_sync to no-reloc Patchwork 2021-10-29 5:02 ` Zbigniew Kempczyński 2021-10-29 6:10 ` Vudum, Lakshminarayana 2021-10-29 5:33 ` Patchwork 2021-10-29 5:53 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2021-10-29 10:27 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2021-10-29 10:46 ` Zbigniew Kempczyński 2021-10-29 16:47 ` Vudum, Lakshminarayana 2021-10-29 16:17 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox