* [igt-dev] [PATCH v4 0/1] test/gem_create: exercise gem_create_ext_set_pat
@ 2023-05-16 18:16 fei.yang
2023-05-16 18:16 ` [igt-dev] [PATCH v4 1/1] " fei.yang
` (3 more replies)
0 siblings, 4 replies; 9+ messages in thread
From: fei.yang @ 2023-05-16 18:16 UTC (permalink / raw)
To: igt-dev; +Cc: Fei Yang
From: Fei Yang <fei.yang@intel.com>
This is the first draft of a new test case exercising the set_pat
extension for GEM_CREATE.
v2: make sure {get|set}_caching ioctls are disabled.
v3: move header change to lib/i915/i915_drm_local.h, will submit a
separate patch for include/uapi/drm/i915_drm.h after the kernel
change lands in upstream.
v4: GEM_CREATE returns -EINVAL if set_pat is unsupported.
Fei Yang (1):
test/gem_create: exercise gem_create_ext_set_pat
lib/i915/i915_drm_local.h | 34 ++++++++++++++++++++++++++++
tests/i915/gem_create.c | 47 +++++++++++++++++++++++++++++++++++++++
2 files changed, 81 insertions(+)
--
2.25.1
^ permalink raw reply [flat|nested] 9+ messages in thread* [igt-dev] [PATCH v4 1/1] test/gem_create: exercise gem_create_ext_set_pat 2023-05-16 18:16 [igt-dev] [PATCH v4 0/1] test/gem_create: exercise gem_create_ext_set_pat fei.yang @ 2023-05-16 18:16 ` fei.yang 2023-05-17 9:31 ` Kamil Konieczny 2023-05-16 19:47 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork ` (2 subsequent siblings) 3 siblings, 1 reply; 9+ messages in thread From: fei.yang @ 2023-05-16 18:16 UTC (permalink / raw) To: igt-dev; +Cc: Fei Yang From: Fei Yang <fei.yang@intel.com> Gem_create uAPI has been extended with capability of setting PAT index. Add a test case to exercise this new extension. Signed-off-by: Fei Yang <fei.yang@intel.com> --- lib/i915/i915_drm_local.h | 34 ++++++++++++++++++++++++++++ tests/i915/gem_create.c | 47 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 81 insertions(+) diff --git a/lib/i915/i915_drm_local.h b/lib/i915/i915_drm_local.h index af017650..35929a0c 100644 --- a/lib/i915/i915_drm_local.h +++ b/lib/i915/i915_drm_local.h @@ -26,6 +26,40 @@ extern "C" { #define DRM_I915_PERF_PROP_OA_ENGINE_CLASS 9 #define DRM_I915_PERF_PROP_OA_ENGINE_INSTANCE 10 +#define I915_GEM_CREATE_EXT_SET_PAT 2 + +/** + * struct drm_i915_gem_create_ext_set_pat - The + * I915_GEM_CREATE_EXT_SET_PAT extension. + * + * If this extension is provided, the specified caching policy (PAT index) is + * applied to the buffer object. + * + * Below is an example on how to create an object with specific caching policy: + * + * .. code-block:: C + * + * struct drm_i915_gem_create_ext_set_pat set_pat_ext = { + * .base = { .name = I915_GEM_CREATE_EXT_SET_PAT }, + * .pat_index = 0, + * }; + * struct drm_i915_gem_create_ext create_ext = { + * .size = PAGE_SIZE, + * .extensions = (uintptr_t)&set_pat_ext, + * }; + * + * int err = ioctl(fd, DRM_IOCTL_I915_GEM_CREATE_EXT, &create_ext); + * if (err) ... + */ +struct drm_i915_gem_create_ext_set_pat { + /** @base: Extension link. See struct i915_user_extension. */ + struct i915_user_extension base; + /** @pat_index: PAT index to be set */ + __u32 pat_index; + /** @rsvd: reserved for future use */ + __u32 rsvd; +}; + #if defined(__cplusplus) } #endif diff --git a/tests/i915/gem_create.c b/tests/i915/gem_create.c index c719ab6c..b2de84b8 100644 --- a/tests/i915/gem_create.c +++ b/tests/i915/gem_create.c @@ -537,6 +537,48 @@ static void create_ext_placement_each(int fd) free(regions); } +static void create_ext_set_pat(int fd) +{ + struct drm_i915_gem_create_ext_set_pat setparam_pat = { + .base = { .name = I915_GEM_CREATE_EXT_SET_PAT }, + .pat_index = 0, + }; + struct drm_i915_gem_create_ext_set_pat setparam_inv_pat = { + .base = { .name = I915_GEM_CREATE_EXT_SET_PAT }, + .pat_index = 65, + }; + struct drm_i915_gem_caching arg; + uint64_t size; + uint32_t handle; + int ret; + + size = PAGE_SIZE; + + ret = __gem_create_ext(fd, &size, 0, &handle, &setparam_pat.base); + + /* + * With a valida PAT index specified, returning -EINVAL here + * indicates set_pat extension is not supported + */ + if (ret == -EINVAL) + igt_skip("I915_GEM_CREATE_EXT_SET_PAT is not supported\n"); + igt_assert(ret == 0); + + /* {set|get}_caching ioctl should fail for objects created with set_pat */ + igt_assert(__gem_set_caching(fd, handle, 1) == -EOPNOTSUPP); + + memset(&arg, 0, sizeof(arg)); + arg.handle = handle; + igt_assert(ioctl(fd, DRM_IOCTL_I915_GEM_GET_CACHING, &arg) < 0 && + errno == EOPNOTSUPP); + + /* gem_create should fail with -EINVAL if invalid pat index specified */ + igt_assert_eq(__gem_create_ext(fd, &size, 0, &handle, &setparam_inv_pat.base), + -EINVAL); + + gem_close(fd, handle); +} + static bool supports_needs_cpu_access(int fd) { struct drm_i915_gem_memory_class_instance regions[] = { @@ -897,6 +939,11 @@ igt_main igt_subtest("create-ext-placement-all") create_ext_placement_all(fd); + igt_describe("Create objects with specific cache setting" + " create-ext."); + igt_subtest("create-ext-set-pat") + create_ext_set_pat(fd); + igt_describe("Verify the basic functionally and expected ABI contract around I915_GEM_CREATE_EXT_FLAG_NEEDS_CPU_ACCESS"); igt_subtest("create-ext-cpu-access-sanity-check") { igt_require(supports_needs_cpu_access(fd)); -- 2.25.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH v4 1/1] test/gem_create: exercise gem_create_ext_set_pat 2023-05-16 18:16 ` [igt-dev] [PATCH v4 1/1] " fei.yang @ 2023-05-17 9:31 ` Kamil Konieczny 0 siblings, 0 replies; 9+ messages in thread From: Kamil Konieczny @ 2023-05-17 9:31 UTC (permalink / raw) To: igt-dev; +Cc: fei.yang Hi Fei, On 2023-05-16 at 11:16:46 -0700, fei.yang@intel.com wrote: > From: Fei Yang <fei.yang@intel.com> > > Gem_create uAPI has been extended with capability of setting PAT index. Please decipher here what is the meaning of PAT. > Add a test case to exercise this new extension. ----------------------------- ^^^^^^^^^^^^^^^^^^ s/this new extension/it/ Please also put here link to proposed kernel patch which adds PAT index extension and subject line of e-mail (links can breake in future). > > Signed-off-by: Fei Yang <fei.yang@intel.com> > --- > lib/i915/i915_drm_local.h | 34 ++++++++++++++++++++++++++++ > tests/i915/gem_create.c | 47 +++++++++++++++++++++++++++++++++++++++ > 2 files changed, 81 insertions(+) > > diff --git a/lib/i915/i915_drm_local.h b/lib/i915/i915_drm_local.h > index af017650..35929a0c 100644 > --- a/lib/i915/i915_drm_local.h > +++ b/lib/i915/i915_drm_local.h > @@ -26,6 +26,40 @@ extern "C" { > #define DRM_I915_PERF_PROP_OA_ENGINE_CLASS 9 > #define DRM_I915_PERF_PROP_OA_ENGINE_INSTANCE 10 > > +#define I915_GEM_CREATE_EXT_SET_PAT 2 > + > +/** > + * struct drm_i915_gem_create_ext_set_pat - The > + * I915_GEM_CREATE_EXT_SET_PAT extension. > + * > + * If this extension is provided, the specified caching policy (PAT index) is > + * applied to the buffer object. > + * > + * Below is an example on how to create an object with specific caching policy: > + * > + * .. code-block:: C > + * > + * struct drm_i915_gem_create_ext_set_pat set_pat_ext = { > + * .base = { .name = I915_GEM_CREATE_EXT_SET_PAT }, > + * .pat_index = 0, > + * }; > + * struct drm_i915_gem_create_ext create_ext = { > + * .size = PAGE_SIZE, > + * .extensions = (uintptr_t)&set_pat_ext, > + * }; > + * > + * int err = ioctl(fd, DRM_IOCTL_I915_GEM_CREATE_EXT, &create_ext); > + * if (err) ... > + */ > +struct drm_i915_gem_create_ext_set_pat { > + /** @base: Extension link. See struct i915_user_extension. */ > + struct i915_user_extension base; > + /** @pat_index: PAT index to be set */ > + __u32 pat_index; > + /** @rsvd: reserved for future use */ > + __u32 rsvd; > +}; > + > #if defined(__cplusplus) > } > #endif > diff --git a/tests/i915/gem_create.c b/tests/i915/gem_create.c > index c719ab6c..b2de84b8 100644 > --- a/tests/i915/gem_create.c > +++ b/tests/i915/gem_create.c > @@ -537,6 +537,48 @@ static void create_ext_placement_each(int fd) > free(regions); > } Please also see patchseries from Mauro with new descriptions, maybe it is worth adding them here. https://patchwork.freedesktop.org/series/117382/ Better document i915 tests > > +static void create_ext_set_pat(int fd) > +{ > + struct drm_i915_gem_create_ext_set_pat setparam_pat = { > + .base = { .name = I915_GEM_CREATE_EXT_SET_PAT }, > + .pat_index = 0, > + }; > + struct drm_i915_gem_create_ext_set_pat setparam_inv_pat = { > + .base = { .name = I915_GEM_CREATE_EXT_SET_PAT }, > + .pat_index = 65, > + }; > + struct drm_i915_gem_caching arg; > + uint64_t size; > + uint32_t handle; > + int ret; > + > + size = PAGE_SIZE; > + > + ret = __gem_create_ext(fd, &size, 0, &handle, &setparam_pat.base); > + > + /* > + * With a valida PAT index specified, returning -EINVAL here -----------------------^ s/valida/valid/ > + * indicates set_pat extension is not supported > + */ > + if (ret == -EINVAL) > + igt_skip("I915_GEM_CREATE_EXT_SET_PAT is not supported\n"); > + igt_assert(ret == 0); > + > + /* {set|get}_caching ioctl should fail for objects created with set_pat */ > + igt_assert(__gem_set_caching(fd, handle, 1) == -EOPNOTSUPP); imho better use igt_assert_eq to see actual return value if failed. Even better will be to use igt_assert_f and describe what failed and print errno (here and below). > + > + memset(&arg, 0, sizeof(arg)); > + arg.handle = handle; > + igt_assert(ioctl(fd, DRM_IOCTL_I915_GEM_GET_CACHING, &arg) < 0 && > + errno == EOPNOTSUPP); > + > + /* gem_create should fail with -EINVAL if invalid pat index specified */ > + igt_assert_eq(__gem_create_ext(fd, &size, 0, &handle, &setparam_inv_pat.base), > + -EINVAL); > + > + gem_close(fd, handle); > +} > + > static bool supports_needs_cpu_access(int fd) > { > struct drm_i915_gem_memory_class_instance regions[] = { > @@ -897,6 +939,11 @@ igt_main > igt_subtest("create-ext-placement-all") > create_ext_placement_all(fd); > > + igt_describe("Create objects with specific cache setting" > + " create-ext."); Why not in one single line ? btw imho better: igt_describe("Validate basic creation of objects with PAT cache setting."); Regards, Kamil > + igt_subtest("create-ext-set-pat") > + create_ext_set_pat(fd); > + > igt_describe("Verify the basic functionally and expected ABI contract around I915_GEM_CREATE_EXT_FLAG_NEEDS_CPU_ACCESS"); > igt_subtest("create-ext-cpu-access-sanity-check") { > igt_require(supports_needs_cpu_access(fd)); > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for test/gem_create: exercise gem_create_ext_set_pat 2023-05-16 18:16 [igt-dev] [PATCH v4 0/1] test/gem_create: exercise gem_create_ext_set_pat fei.yang 2023-05-16 18:16 ` [igt-dev] [PATCH v4 1/1] " fei.yang @ 2023-05-16 19:47 ` Patchwork 2023-05-17 5:49 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-05-25 11:56 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 3 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-05-16 19:47 UTC (permalink / raw) To: fei.yang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5682 bytes --] == Series Details == Series: test/gem_create: exercise gem_create_ext_set_pat URL : https://patchwork.freedesktop.org/series/117833/ State : success == Summary == CI Bug Log - changes from CI_DRM_13153 -> IGTPW_8979 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/index.html Participating hosts (38 -> 35) ------------------------------ Missing (3): fi-kbl-soraka fi-snb-2520m bat-mtlp-6 Known issues ------------ Here are the changes found in IGTPW_8979 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@unbind-rebind: - bat-adls-5: [PASS][1] -> [ABORT][2] ([i915#4391]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/bat-adls-5/igt@core_hotunplug@unbind-rebind.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/bat-adls-5/igt@core_hotunplug@unbind-rebind.html * igt@gem_exec_suspend@basic-s0@smem: - bat-jsl-3: [PASS][3] -> [ABORT][4] ([i915#5122]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_module_load@load: - bat-adls-5: [PASS][5] -> [DMESG-WARN][6] ([i915#4391]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/bat-adls-5/igt@i915_module_load@load.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/bat-adls-5/igt@i915_module_load@load.html * igt@i915_selftest@live@guc: - bat-rpls-2: [PASS][7] -> [DMESG-WARN][8] ([i915#7852]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/bat-rpls-2/igt@i915_selftest@live@guc.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/bat-rpls-2/igt@i915_selftest@live@guc.html * igt@i915_suspend@basic-s3-without-i915: - bat-jsl-3: [PASS][9] -> [FAIL][10] ([fdo#103375]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1: - bat-dg2-8: [PASS][11] -> [FAIL][12] ([i915#7932]) +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1.html #### Possible fixes #### * igt@i915_pm_rpm@basic-rte: - {bat-mtlp-8}: [DMESG-WARN][13] -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/bat-mtlp-8/igt@i915_pm_rpm@basic-rte.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/bat-mtlp-8/igt@i915_pm_rpm@basic-rte.html * igt@i915_selftest@live@migrate: - bat-dg2-11: [DMESG-WARN][15] ([i915#7699]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/bat-dg2-11/igt@i915_selftest@live@migrate.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/bat-dg2-11/igt@i915_selftest@live@migrate.html * igt@i915_selftest@live@requests: - {bat-mtlp-8}: [ABORT][17] ([i915#4983] / [i915#7920]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/bat-mtlp-8/igt@i915_selftest@live@requests.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/bat-mtlp-8/igt@i915_selftest@live@requests.html #### Warnings #### * igt@kms_psr@sprite_plane_onoff: - bat-rplp-1: [SKIP][19] ([i915#1072]) -> [ABORT][20] ([i915#8442]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7852]: https://gitlab.freedesktop.org/drm/intel/issues/7852 [i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920 [i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932 [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7292 -> IGTPW_8979 CI-20190529: 20190529 CI_DRM_13153: 1ceecfa94dd4a059164b23925aecc9db4c4fd3b6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8979: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/index.html IGT_7292: 9d9475ffd3b5ae18fd8ec120595385f6c562f249 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@gem_create@create-ext-set-pat == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/index.html [-- Attachment #2: Type: text/html, Size: 6385 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for test/gem_create: exercise gem_create_ext_set_pat 2023-05-16 18:16 [igt-dev] [PATCH v4 0/1] test/gem_create: exercise gem_create_ext_set_pat fei.yang 2023-05-16 18:16 ` [igt-dev] [PATCH v4 1/1] " fei.yang 2023-05-16 19:47 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2023-05-17 5:49 ` Patchwork 2023-05-24 16:02 ` Kamil Konieczny 2023-05-25 11:56 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 3 siblings, 1 reply; 9+ messages in thread From: Patchwork @ 2023-05-17 5:49 UTC (permalink / raw) To: fei.yang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 17389 bytes --] == Series Details == Series: test/gem_create: exercise gem_create_ext_set_pat URL : https://patchwork.freedesktop.org/series/117833/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13153_full -> IGTPW_8979_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_8979_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_8979_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_8979/index.html Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8979_full: ### IGT changes ### #### Possible regressions #### * {igt@gem_create@create-ext-set-pat} (NEW): - {shard-rkl}: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-rkl-7/igt@gem_create@create-ext-set-pat.html - {shard-dg1}: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-dg1-16/igt@gem_create@create-ext-set-pat.html - {shard-tglu}: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-tglu-2/igt@gem_create@create-ext-set-pat.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes: - shard-apl: [PASS][4] -> [ABORT][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@debugfs_test@read_all_entries_display_off: - {shard-dg1}: [PASS][6] -> [DMESG-WARN][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-dg1-12/igt@debugfs_test@read_all_entries_display_off.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-dg1-16/igt@debugfs_test@read_all_entries_display_off.html New tests --------- New tests have been introduced between CI_DRM_13153_full and IGTPW_8979_full: ### New IGT tests (1) ### * igt@gem_create@create-ext-set-pat: - Statuses : 6 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_8979_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_mm@all-tests: - shard-snb: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#4579]) +3 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb7/igt@drm_mm@all-tests.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-glk: NOTRUN -> [FAIL][9] ([i915#2842]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk5/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#2190]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk6/igt@gem_huc_copy@huc-copy.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#3886]) +2 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk4/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-snb: NOTRUN -> [SKIP][12] ([fdo#109271]) +52 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb5/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-glk: NOTRUN -> [SKIP][13] ([fdo#109271]) +80 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk5/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][14] ([i915#2346]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][15] -> [FAIL][16] ([i915#2346]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1: - shard-apl: [PASS][17] -> [FAIL][18] ([i915#79]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-apl: [PASS][19] -> [DMESG-WARN][20] ([i915#180] / [i915#1982] / [i915#62]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl7/igt@kms_frontbuffer_tracking@fbc-suspend.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-apl: NOTRUN -> [SKIP][21] ([fdo#109271]) +3 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_lease@lease_revoke@pipe-a-dp-1: - shard-apl: [PASS][22] -> [DMESG-WARN][23] ([i915#62]) +6 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl7/igt@kms_lease@lease_revoke@pipe-a-dp-1.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl6/igt@kms_lease@lease_revoke@pipe-a-dp-1.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][24] ([i915#4573]) +1 similar issue [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk1/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-glk: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#658]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk2/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_scaling_modes@scaling-mode-full: - shard-glk: NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#4579]) +9 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk2/igt@kms_scaling_modes@scaling-mode-full.html #### Possible fixes #### * igt@device_reset@unbind-reset-rebind: - {shard-rkl}: [ABORT][27] ([i915#5507]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-rkl-2/igt@device_reset@unbind-reset-rebind.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-rkl-2/igt@device_reset@unbind-reset-rebind.html - shard-apl: [ABORT][29] ([i915#5507]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl1/igt@device_reset@unbind-reset-rebind.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl7/igt@device_reset@unbind-reset-rebind.html - {shard-tglu}: [ABORT][31] ([i915#5507]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-tglu-3/igt@device_reset@unbind-reset-rebind.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-tglu-4/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - {shard-rkl}: [FAIL][33] ([i915#7742]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@gem_ctx_freq@sysfs: - {shard-dg1}: [FAIL][35] ([i915#6786]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-dg1-12/igt@gem_ctx_freq@sysfs.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-dg1-15/igt@gem_ctx_freq@sysfs.html * igt@gem_exec_fair@basic-deadline: - shard-apl: [FAIL][37] ([i915#2846]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl2/igt@gem_exec_fair@basic-deadline.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl6/igt@gem_exec_fair@basic-deadline.html * igt@gem_ppgtt@blt-vs-render-ctx0: - shard-snb: [DMESG-FAIL][39] ([i915#8295]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-snb6/igt@gem_ppgtt@blt-vs-render-ctx0.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb2/igt@gem_ppgtt@blt-vs-render-ctx0.html * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - {shard-dg1}: [FAIL][41] ([i915#3591]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@i915_pm_rps@reset: - shard-snb: [INCOMPLETE][43] ([i915#7790]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-snb2/igt@i915_pm_rps@reset.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb5/igt@i915_pm_rps@reset.html * igt@i915_selftest@perf@engine_cs: - shard-snb: [ABORT][45] ([i915#4528] / [i915#4579]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-snb2/igt@i915_selftest@perf@engine_cs.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb7/igt@i915_selftest@perf@engine_cs.html * igt@perf_pmu@idle@rcs0: - {shard-rkl}: [FAIL][47] ([i915#4349]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-rkl-2/igt@perf_pmu@idle@rcs0.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-rkl-3/igt@perf_pmu@idle@rcs0.html #### Warnings #### * igt@kms_content_protection@mei_interface: - shard-snb: [SKIP][49] ([fdo#109271] / [i915#4579]) -> [SKIP][50] ([fdo#109271]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-snb6/igt@kms_content_protection@mei_interface.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb2/igt@kms_content_protection@mei_interface.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5507]: https://gitlab.freedesktop.org/drm/intel/issues/5507 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6786]: https://gitlab.freedesktop.org/drm/intel/issues/6786 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8295]: https://gitlab.freedesktop.org/drm/intel/issues/8295 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7292 -> IGTPW_8979 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13153: 1ceecfa94dd4a059164b23925aecc9db4c4fd3b6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8979: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/index.html IGT_7292: 9d9475ffd3b5ae18fd8ec120595385f6c562f249 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/index.html [-- Attachment #2: Type: text/html, Size: 15816 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for test/gem_create: exercise gem_create_ext_set_pat 2023-05-17 5:49 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-05-24 16:02 ` Kamil Konieczny 2023-05-25 8:33 ` Tvrtko Ursulin 0 siblings, 1 reply; 9+ messages in thread From: Kamil Konieczny @ 2023-05-24 16:02 UTC (permalink / raw) To: igt-dev Cc: SaiX Nandan Yedireswarapu, RavitejaX Veesam, fei.yang, SanjuX Marikkar Hi Sai, No need for respin as there is new series. I have few comments, see below. On 2023-05-17 at 05:49:54 -0000, Patchwork wrote: > == Series Details == > > Series: test/gem_create: exercise gem_create_ext_set_pat > URL : https://patchwork.freedesktop.org/series/117833/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_13153_full -> IGTPW_8979_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_8979_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_8979_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_8979/index.html > > Participating hosts (7 -> 7) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_8979_full: > > ### IGT changes ### > > #### Possible regressions #### > > * {igt@gem_create@create-ext-set-pat} (NEW): > - {shard-rkl}: NOTRUN -> [SKIP][1] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-rkl-7/igt@gem_create@create-ext-set-pat.html > - {shard-dg1}: NOTRUN -> [SKIP][2] > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-dg1-16/igt@gem_create@create-ext-set-pat.html > - {shard-tglu}: NOTRUN -> [SKIP][3] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-tglu-2/igt@gem_create@create-ext-set-pat.html Please add this to expected skips, this new test is for MTL and above. > > * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes: > - shard-apl: [PASS][4] -> [ABORT][5] > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html > This one is unrelated. Regards, Kamil > > #### Suppressed #### > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > * igt@debugfs_test@read_all_entries_display_off: > - {shard-dg1}: [PASS][6] -> [DMESG-WARN][7] > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-dg1-12/igt@debugfs_test@read_all_entries_display_off.html > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-dg1-16/igt@debugfs_test@read_all_entries_display_off.html > > > New tests > --------- > > New tests have been introduced between CI_DRM_13153_full and IGTPW_8979_full: > > ### New IGT tests (1) ### > > * igt@gem_create@create-ext-set-pat: > - Statuses : 6 skip(s) > - Exec time: [0.0] s > > > > Known issues > ------------ > > Here are the changes found in IGTPW_8979_full that come from known issues: > > ### IGT changes ### > > #### Issues hit #### > > * igt@drm_mm@all-tests: > - shard-snb: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#4579]) +3 similar issues > [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb7/igt@drm_mm@all-tests.html > > * igt@gem_exec_fair@basic-none-solo@rcs0: > - shard-glk: NOTRUN -> [FAIL][9] ([i915#2842]) > [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk5/igt@gem_exec_fair@basic-none-solo@rcs0.html > > * igt@gem_huc_copy@huc-copy: > - shard-glk: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#2190]) > [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk6/igt@gem_huc_copy@huc-copy.html > > * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: > - shard-glk: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#3886]) +2 similar issues > [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk4/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html > > * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: > - shard-snb: NOTRUN -> [SKIP][12] ([fdo#109271]) +52 similar issues > [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb5/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html > > * igt@kms_chamelium_color@ctm-blue-to-red: > - shard-glk: NOTRUN -> [SKIP][13] ([fdo#109271]) +80 similar issues > [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk5/igt@kms_chamelium_color@ctm-blue-to-red.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: > - shard-glk: NOTRUN -> [FAIL][14] ([i915#2346]) > [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html > > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > - shard-apl: [PASS][15] -> [FAIL][16] ([i915#2346]) > [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html > > * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1: > - shard-apl: [PASS][17] -> [FAIL][18] ([i915#79]) > [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html > [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html > > * igt@kms_frontbuffer_tracking@fbc-suspend: > - shard-apl: [PASS][19] -> [DMESG-WARN][20] ([i915#180] / [i915#1982] / [i915#62]) > [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl7/igt@kms_frontbuffer_tracking@fbc-suspend.html > [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html > > * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: > - shard-apl: NOTRUN -> [SKIP][21] ([fdo#109271]) +3 similar issues > [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html > > * igt@kms_lease@lease_revoke@pipe-a-dp-1: > - shard-apl: [PASS][22] -> [DMESG-WARN][23] ([i915#62]) +6 similar issues > [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl7/igt@kms_lease@lease_revoke@pipe-a-dp-1.html > [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl6/igt@kms_lease@lease_revoke@pipe-a-dp-1.html > > * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: > - shard-glk: NOTRUN -> [FAIL][24] ([i915#4573]) +1 similar issue > [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk1/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html > > * igt@kms_psr2_su@frontbuffer-xrgb8888: > - shard-glk: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#658]) > [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk2/igt@kms_psr2_su@frontbuffer-xrgb8888.html > > * igt@kms_scaling_modes@scaling-mode-full: > - shard-glk: NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#4579]) +9 similar issues > [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk2/igt@kms_scaling_modes@scaling-mode-full.html > > > #### Possible fixes #### > > * igt@device_reset@unbind-reset-rebind: > - {shard-rkl}: [ABORT][27] ([i915#5507]) -> [PASS][28] > [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-rkl-2/igt@device_reset@unbind-reset-rebind.html > [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-rkl-2/igt@device_reset@unbind-reset-rebind.html > - shard-apl: [ABORT][29] ([i915#5507]) -> [PASS][30] > [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl1/igt@device_reset@unbind-reset-rebind.html > [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl7/igt@device_reset@unbind-reset-rebind.html > - {shard-tglu}: [ABORT][31] ([i915#5507]) -> [PASS][32] > [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-tglu-3/igt@device_reset@unbind-reset-rebind.html > [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-tglu-4/igt@device_reset@unbind-reset-rebind.html > > * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: > - {shard-rkl}: [FAIL][33] ([i915#7742]) -> [PASS][34] > [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html > [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html > > * igt@gem_ctx_freq@sysfs: > - {shard-dg1}: [FAIL][35] ([i915#6786]) -> [PASS][36] > [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-dg1-12/igt@gem_ctx_freq@sysfs.html > [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-dg1-15/igt@gem_ctx_freq@sysfs.html > > * igt@gem_exec_fair@basic-deadline: > - shard-apl: [FAIL][37] ([i915#2846]) -> [PASS][38] > [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl2/igt@gem_exec_fair@basic-deadline.html > [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl6/igt@gem_exec_fair@basic-deadline.html > > * igt@gem_ppgtt@blt-vs-render-ctx0: > - shard-snb: [DMESG-FAIL][39] ([i915#8295]) -> [PASS][40] > [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-snb6/igt@gem_ppgtt@blt-vs-render-ctx0.html > [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb2/igt@gem_ppgtt@blt-vs-render-ctx0.html > > * igt@i915_pm_rc6_residency@rc6-idle@vecs0: > - {shard-dg1}: [FAIL][41] ([i915#3591]) -> [PASS][42] > [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html > [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html > > * igt@i915_pm_rps@reset: > - shard-snb: [INCOMPLETE][43] ([i915#7790]) -> [PASS][44] > [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-snb2/igt@i915_pm_rps@reset.html > [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb5/igt@i915_pm_rps@reset.html > > * igt@i915_selftest@perf@engine_cs: > - shard-snb: [ABORT][45] ([i915#4528] / [i915#4579]) -> [PASS][46] > [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-snb2/igt@i915_selftest@perf@engine_cs.html > [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb7/igt@i915_selftest@perf@engine_cs.html > > * igt@perf_pmu@idle@rcs0: > - {shard-rkl}: [FAIL][47] ([i915#4349]) -> [PASS][48] > [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-rkl-2/igt@perf_pmu@idle@rcs0.html > [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-rkl-3/igt@perf_pmu@idle@rcs0.html > > > #### Warnings #### > > * igt@kms_content_protection@mei_interface: > - shard-snb: [SKIP][49] ([fdo#109271] / [i915#4579]) -> [SKIP][50] ([fdo#109271]) > [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-snb6/igt@kms_content_protection@mei_interface.html > [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb2/igt@kms_content_protection@mei_interface.html > > > {name}: This element is suppressed. This means it is ignored when computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 > [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 > [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 > [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 > [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 > [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 > [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 > [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 > [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 > [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 > [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 > [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 > [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 > [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 > [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 > [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 > [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 > [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 > [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 > [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 > [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 > [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 > [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 > [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 > [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 > [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 > [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 > [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 > [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 > [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 > [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 > [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 > [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 > [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 > [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 > [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 > [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 > [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 > [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 > [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 > [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 > [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 > [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 > [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 > [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258 > [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 > [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 > [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 > [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 > [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 > [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 > [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 > [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 > [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 > [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 > [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 > [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 > [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 > [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 > [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 > [i915#5507]: https://gitlab.freedesktop.org/drm/intel/issues/5507 > [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 > [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 > [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62 > [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 > [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 > [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 > [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 > [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 > [i915#6786]: https://gitlab.freedesktop.org/drm/intel/issues/6786 > [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 > [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 > [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 > [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 > [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 > [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 > [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 > [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 > [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 > [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 > [i915#8295]: https://gitlab.freedesktop.org/drm/intel/issues/8295 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_7292 -> IGTPW_8979 > * Piglit: piglit_4509 -> None > > CI-20190529: 20190529 > CI_DRM_13153: 1ceecfa94dd4a059164b23925aecc9db4c4fd3b6 @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_8979: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/index.html > IGT_7292: 9d9475ffd3b5ae18fd8ec120595385f6c562f249 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/index.html ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for test/gem_create: exercise gem_create_ext_set_pat 2023-05-24 16:02 ` Kamil Konieczny @ 2023-05-25 8:33 ` Tvrtko Ursulin 2023-05-25 12:34 ` Yedireswarapu, SaiX Nandan 0 siblings, 1 reply; 9+ messages in thread From: Tvrtko Ursulin @ 2023-05-25 8:33 UTC (permalink / raw) To: Kamil Konieczny, igt-dev, fei.yang, SaiX Nandan Yedireswarapu, RavitejaX Veesam, SanjuX Marikkar On 24/05/2023 17:02, Kamil Konieczny wrote: > Hi Sai, > > No need for respin as there is new series. I have few comments, see below. > > On 2023-05-17 at 05:49:54 -0000, Patchwork wrote: >> == Series Details == >> >> Series: test/gem_create: exercise gem_create_ext_set_pat >> URL : https://patchwork.freedesktop.org/series/117833/ >> State : failure >> >> == Summary == >> >> CI Bug Log - changes from CI_DRM_13153_full -> IGTPW_8979_full >> ==================================================== >> >> Summary >> ------- >> >> **FAILURE** >> >> Serious unknown changes coming with IGTPW_8979_full absolutely need to be >> verified manually. >> >> If you think the reported changes have nothing to do with the changes >> introduced in IGTPW_8979_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_8979/index.html >> >> Participating hosts (7 -> 7) >> ------------------------------ >> >> No changes in participating hosts >> >> Possible new issues >> ------------------- >> >> Here are the unknown changes that may have been introduced in IGTPW_8979_full: >> >> ### IGT changes ### >> >> #### Possible regressions #### >> >> * {igt@gem_create@create-ext-set-pat} (NEW): >> - {shard-rkl}: NOTRUN -> [SKIP][1] >> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-rkl-7/igt@gem_create@create-ext-set-pat.html >> - {shard-dg1}: NOTRUN -> [SKIP][2] >> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-dg1-16/igt@gem_create@create-ext-set-pat.html >> - {shard-tglu}: NOTRUN -> [SKIP][3] >> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-tglu-2/igt@gem_create@create-ext-set-pat.html > > Please add this to expected skips, this new test is > for MTL and above. Shouldn't be for MTL only, I believe skips are because kernel the run was against does not support the API. We need a Test-with: run to show behaviour with the extension across platforms. Regards, Tvrtko > >> >> * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes: >> - shard-apl: [PASS][4] -> [ABORT][5] >> [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html >> [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html >> > > This one is unrelated. > > Regards, > Kamil >> >> #### Suppressed #### >> >> The following results come from untrusted machines, tests, or statuses. >> They do not affect the overall result. >> >> * igt@debugfs_test@read_all_entries_display_off: >> - {shard-dg1}: [PASS][6] -> [DMESG-WARN][7] >> [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-dg1-12/igt@debugfs_test@read_all_entries_display_off.html >> [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-dg1-16/igt@debugfs_test@read_all_entries_display_off.html >> >> >> New tests >> --------- >> >> New tests have been introduced between CI_DRM_13153_full and IGTPW_8979_full: >> >> ### New IGT tests (1) ### >> >> * igt@gem_create@create-ext-set-pat: >> - Statuses : 6 skip(s) >> - Exec time: [0.0] s >> >> >> >> Known issues >> ------------ >> >> Here are the changes found in IGTPW_8979_full that come from known issues: >> >> ### IGT changes ### >> >> #### Issues hit #### >> >> * igt@drm_mm@all-tests: >> - shard-snb: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#4579]) +3 similar issues >> [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb7/igt@drm_mm@all-tests.html >> >> * igt@gem_exec_fair@basic-none-solo@rcs0: >> - shard-glk: NOTRUN -> [FAIL][9] ([i915#2842]) >> [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk5/igt@gem_exec_fair@basic-none-solo@rcs0.html >> >> * igt@gem_huc_copy@huc-copy: >> - shard-glk: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#2190]) >> [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk6/igt@gem_huc_copy@huc-copy.html >> >> * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: >> - shard-glk: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#3886]) +2 similar issues >> [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk4/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html >> >> * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: >> - shard-snb: NOTRUN -> [SKIP][12] ([fdo#109271]) +52 similar issues >> [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb5/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html >> >> * igt@kms_chamelium_color@ctm-blue-to-red: >> - shard-glk: NOTRUN -> [SKIP][13] ([fdo#109271]) +80 similar issues >> [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk5/igt@kms_chamelium_color@ctm-blue-to-red.html >> >> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: >> - shard-glk: NOTRUN -> [FAIL][14] ([i915#2346]) >> [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html >> >> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: >> - shard-apl: [PASS][15] -> [FAIL][16] ([i915#2346]) >> [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html >> [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html >> >> * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1: >> - shard-apl: [PASS][17] -> [FAIL][18] ([i915#79]) >> [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html >> [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html >> >> * igt@kms_frontbuffer_tracking@fbc-suspend: >> - shard-apl: [PASS][19] -> [DMESG-WARN][20] ([i915#180] / [i915#1982] / [i915#62]) >> [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl7/igt@kms_frontbuffer_tracking@fbc-suspend.html >> [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html >> >> * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: >> - shard-apl: NOTRUN -> [SKIP][21] ([fdo#109271]) +3 similar issues >> [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html >> >> * igt@kms_lease@lease_revoke@pipe-a-dp-1: >> - shard-apl: [PASS][22] -> [DMESG-WARN][23] ([i915#62]) +6 similar issues >> [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl7/igt@kms_lease@lease_revoke@pipe-a-dp-1.html >> [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl6/igt@kms_lease@lease_revoke@pipe-a-dp-1.html >> >> * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: >> - shard-glk: NOTRUN -> [FAIL][24] ([i915#4573]) +1 similar issue >> [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk1/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html >> >> * igt@kms_psr2_su@frontbuffer-xrgb8888: >> - shard-glk: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#658]) >> [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk2/igt@kms_psr2_su@frontbuffer-xrgb8888.html >> >> * igt@kms_scaling_modes@scaling-mode-full: >> - shard-glk: NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#4579]) +9 similar issues >> [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk2/igt@kms_scaling_modes@scaling-mode-full.html >> >> >> #### Possible fixes #### >> >> * igt@device_reset@unbind-reset-rebind: >> - {shard-rkl}: [ABORT][27] ([i915#5507]) -> [PASS][28] >> [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-rkl-2/igt@device_reset@unbind-reset-rebind.html >> [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-rkl-2/igt@device_reset@unbind-reset-rebind.html >> - shard-apl: [ABORT][29] ([i915#5507]) -> [PASS][30] >> [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl1/igt@device_reset@unbind-reset-rebind.html >> [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl7/igt@device_reset@unbind-reset-rebind.html >> - {shard-tglu}: [ABORT][31] ([i915#5507]) -> [PASS][32] >> [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-tglu-3/igt@device_reset@unbind-reset-rebind.html >> [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-tglu-4/igt@device_reset@unbind-reset-rebind.html >> >> * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: >> - {shard-rkl}: [FAIL][33] ([i915#7742]) -> [PASS][34] >> [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html >> [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html >> >> * igt@gem_ctx_freq@sysfs: >> - {shard-dg1}: [FAIL][35] ([i915#6786]) -> [PASS][36] >> [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-dg1-12/igt@gem_ctx_freq@sysfs.html >> [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-dg1-15/igt@gem_ctx_freq@sysfs.html >> >> * igt@gem_exec_fair@basic-deadline: >> - shard-apl: [FAIL][37] ([i915#2846]) -> [PASS][38] >> [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl2/igt@gem_exec_fair@basic-deadline.html >> [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl6/igt@gem_exec_fair@basic-deadline.html >> >> * igt@gem_ppgtt@blt-vs-render-ctx0: >> - shard-snb: [DMESG-FAIL][39] ([i915#8295]) -> [PASS][40] >> [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-snb6/igt@gem_ppgtt@blt-vs-render-ctx0.html >> [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb2/igt@gem_ppgtt@blt-vs-render-ctx0.html >> >> * igt@i915_pm_rc6_residency@rc6-idle@vecs0: >> - {shard-dg1}: [FAIL][41] ([i915#3591]) -> [PASS][42] >> [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html >> [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html >> >> * igt@i915_pm_rps@reset: >> - shard-snb: [INCOMPLETE][43] ([i915#7790]) -> [PASS][44] >> [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-snb2/igt@i915_pm_rps@reset.html >> [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb5/igt@i915_pm_rps@reset.html >> >> * igt@i915_selftest@perf@engine_cs: >> - shard-snb: [ABORT][45] ([i915#4528] / [i915#4579]) -> [PASS][46] >> [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-snb2/igt@i915_selftest@perf@engine_cs.html >> [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb7/igt@i915_selftest@perf@engine_cs.html >> >> * igt@perf_pmu@idle@rcs0: >> - {shard-rkl}: [FAIL][47] ([i915#4349]) -> [PASS][48] >> [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-rkl-2/igt@perf_pmu@idle@rcs0.html >> [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-rkl-3/igt@perf_pmu@idle@rcs0.html >> >> >> #### Warnings #### >> >> * igt@kms_content_protection@mei_interface: >> - shard-snb: [SKIP][49] ([fdo#109271] / [i915#4579]) -> [SKIP][50] ([fdo#109271]) >> [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-snb6/igt@kms_content_protection@mei_interface.html >> [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb2/igt@kms_content_protection@mei_interface.html >> >> >> {name}: This element is suppressed. This means it is ignored when computing >> the status of the difference (SUCCESS, WARNING, or FAILURE). >> >> [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 >> [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 >> [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 >> [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 >> [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 >> [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 >> [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 >> [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 >> [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 >> [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 >> [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 >> [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 >> [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 >> [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 >> [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 >> [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 >> [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 >> [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 >> [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 >> [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 >> [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 >> [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 >> [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 >> [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 >> [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 >> [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 >> [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 >> [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 >> [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 >> [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 >> [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 >> [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 >> [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 >> [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 >> [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 >> [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 >> [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 >> [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 >> [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 >> [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 >> [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 >> [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 >> [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 >> [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 >> [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258 >> [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 >> [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 >> [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 >> [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 >> [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 >> [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 >> [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 >> [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 >> [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 >> [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 >> [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 >> [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 >> [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 >> [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 >> [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 >> [i915#5507]: https://gitlab.freedesktop.org/drm/intel/issues/5507 >> [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 >> [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 >> [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62 >> [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 >> [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 >> [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 >> [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 >> [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 >> [i915#6786]: https://gitlab.freedesktop.org/drm/intel/issues/6786 >> [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 >> [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 >> [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 >> [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 >> [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 >> [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 >> [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 >> [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 >> [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 >> [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 >> [i915#8295]: https://gitlab.freedesktop.org/drm/intel/issues/8295 >> >> >> Build changes >> ------------- >> >> * CI: CI-20190529 -> None >> * IGT: IGT_7292 -> IGTPW_8979 >> * Piglit: piglit_4509 -> None >> >> CI-20190529: 20190529 >> CI_DRM_13153: 1ceecfa94dd4a059164b23925aecc9db4c4fd3b6 @ git://anongit.freedesktop.org/gfx-ci/linux >> IGTPW_8979: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/index.html >> IGT_7292: 9d9475ffd3b5ae18fd8ec120595385f6c562f249 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git >> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit >> >> == Logs == >> >> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/index.html ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for test/gem_create: exercise gem_create_ext_set_pat 2023-05-25 8:33 ` Tvrtko Ursulin @ 2023-05-25 12:34 ` Yedireswarapu, SaiX Nandan 0 siblings, 0 replies; 9+ messages in thread From: Yedireswarapu, SaiX Nandan @ 2023-05-25 12:34 UTC (permalink / raw) To: Tvrtko Ursulin, Kamil Konieczny, igt-dev@lists.freedesktop.org, Yang, Fei, Veesam, RavitejaX, Marikkar, SanjuX Hi, Issue re-reported, https://patchwork.freedesktop.org/series/117833/ Thanks, Y Sai Nandan -----Original Message----- From: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> Sent: Thursday, May 25, 2023 2:04 PM To: Kamil Konieczny <kamil.konieczny@linux.intel.com>; igt-dev@lists.freedesktop.org; Yang, Fei <fei.yang@intel.com>; Yedireswarapu, SaiX Nandan <saix.nandan.yedireswarapu@intel.com>; Veesam, RavitejaX <ravitejax.veesam@intel.com>; Marikkar, SanjuX <sanjux.marikkar@intel.com> Subject: Re: [igt-dev] ✗ Fi.CI.IGT: failure for test/gem_create: exercise gem_create_ext_set_pat On 24/05/2023 17:02, Kamil Konieczny wrote: > Hi Sai, > > No need for respin as there is new series. I have few comments, see below. > > On 2023-05-17 at 05:49:54 -0000, Patchwork wrote: >> == Series Details == >> >> Series: test/gem_create: exercise gem_create_ext_set_pat >> URL : https://patchwork.freedesktop.org/series/117833/ >> State : failure >> >> == Summary == >> >> CI Bug Log - changes from CI_DRM_13153_full -> IGTPW_8979_full >> ==================================================== >> >> Summary >> ------- >> >> **FAILURE** >> >> Serious unknown changes coming with IGTPW_8979_full absolutely need to be >> verified manually. >> >> If you think the reported changes have nothing to do with the changes >> introduced in IGTPW_8979_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_8979/index.html >> >> Participating hosts (7 -> 7) >> ------------------------------ >> >> No changes in participating hosts >> >> Possible new issues >> ------------------- >> >> Here are the unknown changes that may have been introduced in IGTPW_8979_full: >> >> ### IGT changes ### >> >> #### Possible regressions #### >> >> * {igt@gem_create@create-ext-set-pat} (NEW): >> - {shard-rkl}: NOTRUN -> [SKIP][1] >> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-rkl-7/igt@gem_create@create-ext-set-pat.html >> - {shard-dg1}: NOTRUN -> [SKIP][2] >> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-dg1-16/igt@gem_create@create-ext-set-pat.html >> - {shard-tglu}: NOTRUN -> [SKIP][3] >> [3]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-tglu-2/igt@ >> gem_create@create-ext-set-pat.html > > Please add this to expected skips, this new test is for MTL and above. Shouldn't be for MTL only, I believe skips are because kernel the run was against does not support the API. We need a Test-with: run to show behaviour with the extension across platforms. Regards, Tvrtko > >> >> * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes: >> - shard-apl: [PASS][4] -> [ABORT][5] >> [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html >> [5]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl3/igt@km >> s_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html >> > > This one is unrelated. > > Regards, > Kamil >> >> #### Suppressed #### >> >> The following results come from untrusted machines, tests, or statuses. >> They do not affect the overall result. >> >> * igt@debugfs_test@read_all_entries_display_off: >> - {shard-dg1}: [PASS][6] -> [DMESG-WARN][7] >> [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-dg1-12/igt@debugfs_test@read_all_entries_display_off.html >> [7]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-dg1-16/igt@ >> debugfs_test@read_all_entries_display_off.html >> >> >> New tests >> --------- >> >> New tests have been introduced between CI_DRM_13153_full and IGTPW_8979_full: >> >> ### New IGT tests (1) ### >> >> * igt@gem_create@create-ext-set-pat: >> - Statuses : 6 skip(s) >> - Exec time: [0.0] s >> >> >> >> Known issues >> ------------ >> >> Here are the changes found in IGTPW_8979_full that come from known issues: >> >> ### IGT changes ### >> >> #### Issues hit #### >> >> * igt@drm_mm@all-tests: >> - shard-snb: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#4579]) +3 similar issues >> [8]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb7/igt@dr >> m_mm@all-tests.html >> >> * igt@gem_exec_fair@basic-none-solo@rcs0: >> - shard-glk: NOTRUN -> [FAIL][9] ([i915#2842]) >> [9]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk5/igt@ge >> m_exec_fair@basic-none-solo@rcs0.html >> >> * igt@gem_huc_copy@huc-copy: >> - shard-glk: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#2190]) >> [10]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk6/igt@ge >> m_huc_copy@huc-copy.html >> >> * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: >> - shard-glk: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#3886]) +2 similar issues >> [11]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk4/igt@km >> s_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html >> >> * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: >> - shard-snb: NOTRUN -> [SKIP][12] ([fdo#109271]) +52 similar issues >> [12]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb5/igt@km >> s_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html >> >> * igt@kms_chamelium_color@ctm-blue-to-red: >> - shard-glk: NOTRUN -> [SKIP][13] ([fdo#109271]) +80 similar issues >> [13]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk5/igt@km >> s_chamelium_color@ctm-blue-to-red.html >> >> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: >> - shard-glk: NOTRUN -> [FAIL][14] ([i915#2346]) >> [14]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk3/igt@km >> s_cursor_legacy@flip-vs-cursor-atomic-transitions.html >> >> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: >> - shard-apl: [PASS][15] -> [FAIL][16] ([i915#2346]) >> [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html >> [16]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl3/igt@km >> s_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html >> >> * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1: >> - shard-apl: [PASS][17] -> [FAIL][18] ([i915#79]) >> [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html >> [18]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl4/igt@km >> s_flip@flip-vs-expired-vblank-interruptible@a-dp1.html >> >> * igt@kms_frontbuffer_tracking@fbc-suspend: >> - shard-apl: [PASS][19] -> [DMESG-WARN][20] ([i915#180] / [i915#1982] / [i915#62]) >> [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl7/igt@kms_frontbuffer_tracking@fbc-suspend.html >> [20]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl6/igt@km >> s_frontbuffer_tracking@fbc-suspend.html >> >> * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: >> - shard-apl: NOTRUN -> [SKIP][21] ([fdo#109271]) +3 similar issues >> [21]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl6/igt@km >> s_frontbuffer_tracking@psr-rgb565-draw-render.html >> >> * igt@kms_lease@lease_revoke@pipe-a-dp-1: >> - shard-apl: [PASS][22] -> [DMESG-WARN][23] ([i915#62]) +6 similar issues >> [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl7/igt@kms_lease@lease_revoke@pipe-a-dp-1.html >> [23]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl6/igt@km >> s_lease@lease_revoke@pipe-a-dp-1.html >> >> * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: >> - shard-glk: NOTRUN -> [FAIL][24] ([i915#4573]) +1 similar issue >> [24]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk1/igt@km >> s_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html >> >> * igt@kms_psr2_su@frontbuffer-xrgb8888: >> - shard-glk: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#658]) >> [25]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk2/igt@km >> s_psr2_su@frontbuffer-xrgb8888.html >> >> * igt@kms_scaling_modes@scaling-mode-full: >> - shard-glk: NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#4579]) +9 similar issues >> [26]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk2/igt@km >> s_scaling_modes@scaling-mode-full.html >> >> >> #### Possible fixes #### >> >> * igt@device_reset@unbind-reset-rebind: >> - {shard-rkl}: [ABORT][27] ([i915#5507]) -> [PASS][28] >> [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-rkl-2/igt@device_reset@unbind-reset-rebind.html >> [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-rkl-2/igt@device_reset@unbind-reset-rebind.html >> - shard-apl: [ABORT][29] ([i915#5507]) -> [PASS][30] >> [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl1/igt@device_reset@unbind-reset-rebind.html >> [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl7/igt@device_reset@unbind-reset-rebind.html >> - {shard-tglu}: [ABORT][31] ([i915#5507]) -> [PASS][32] >> [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-tglu-3/igt@device_reset@unbind-reset-rebind.html >> [32]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-tglu-4/igt@ >> device_reset@unbind-reset-rebind.html >> >> * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: >> - {shard-rkl}: [FAIL][33] ([i915#7742]) -> [PASS][34] >> [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html >> [34]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-rkl-1/igt@d >> rm_fdinfo@most-busy-idle-check-all@rcs0.html >> >> * igt@gem_ctx_freq@sysfs: >> - {shard-dg1}: [FAIL][35] ([i915#6786]) -> [PASS][36] >> [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-dg1-12/igt@gem_ctx_freq@sysfs.html >> [36]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-dg1-15/igt@ >> gem_ctx_freq@sysfs.html >> >> * igt@gem_exec_fair@basic-deadline: >> - shard-apl: [FAIL][37] ([i915#2846]) -> [PASS][38] >> [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl2/igt@gem_exec_fair@basic-deadline.html >> [38]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl6/igt@ge >> m_exec_fair@basic-deadline.html >> >> * igt@gem_ppgtt@blt-vs-render-ctx0: >> - shard-snb: [DMESG-FAIL][39] ([i915#8295]) -> [PASS][40] >> [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-snb6/igt@gem_ppgtt@blt-vs-render-ctx0.html >> [40]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb2/igt@ge >> m_ppgtt@blt-vs-render-ctx0.html >> >> * igt@i915_pm_rc6_residency@rc6-idle@vecs0: >> - {shard-dg1}: [FAIL][41] ([i915#3591]) -> [PASS][42] >> [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html >> [42]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-dg1-18/igt@ >> i915_pm_rc6_residency@rc6-idle@vecs0.html >> >> * igt@i915_pm_rps@reset: >> - shard-snb: [INCOMPLETE][43] ([i915#7790]) -> [PASS][44] >> [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-snb2/igt@i915_pm_rps@reset.html >> [44]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb5/igt@i9 >> 15_pm_rps@reset.html >> >> * igt@i915_selftest@perf@engine_cs: >> - shard-snb: [ABORT][45] ([i915#4528] / [i915#4579]) -> [PASS][46] >> [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-snb2/igt@i915_selftest@perf@engine_cs.html >> [46]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb7/igt@i9 >> 15_selftest@perf@engine_cs.html >> >> * igt@perf_pmu@idle@rcs0: >> - {shard-rkl}: [FAIL][47] ([i915#4349]) -> [PASS][48] >> [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-rkl-2/igt@perf_pmu@idle@rcs0.html >> [48]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-rkl-3/igt@p >> erf_pmu@idle@rcs0.html >> >> >> #### Warnings #### >> >> * igt@kms_content_protection@mei_interface: >> - shard-snb: [SKIP][49] ([fdo#109271] / [i915#4579]) -> [SKIP][50] ([fdo#109271]) >> [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-snb6/igt@kms_content_protection@mei_interface.html >> [50]: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb2/igt@km >> s_content_protection@mei_interface.html >> >> >> {name}: This element is suppressed. This means it is ignored when computing >> the status of the difference (SUCCESS, WARNING, or FAILURE). >> >> [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 >> [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 >> [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 >> [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 >> [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 >> [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 >> [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 >> [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 >> [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 >> [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 >> [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 >> [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 >> [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 >> [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 >> [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 >> [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 >> [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 >> [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 >> [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 >> [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 >> [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 >> [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 >> [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 >> [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 >> [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 >> [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 >> [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 >> [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 >> [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 >> [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 >> [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 >> [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 >> [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 >> [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 >> [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 >> [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 >> [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 >> [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 >> [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 >> [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 >> [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 >> [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 >> [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 >> [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 >> [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258 >> [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 >> [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 >> [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 >> [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 >> [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 >> [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 >> [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 >> [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 >> [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 >> [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 >> [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 >> [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 >> [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 >> [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 >> [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 >> [i915#5507]: https://gitlab.freedesktop.org/drm/intel/issues/5507 >> [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 >> [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 >> [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62 >> [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 >> [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 >> [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 >> [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 >> [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 >> [i915#6786]: https://gitlab.freedesktop.org/drm/intel/issues/6786 >> [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 >> [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 >> [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 >> [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 >> [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 >> [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 >> [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 >> [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 >> [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 >> [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 >> [i915#8295]: https://gitlab.freedesktop.org/drm/intel/issues/8295 >> >> >> Build changes >> ------------- >> >> * CI: CI-20190529 -> None >> * IGT: IGT_7292 -> IGTPW_8979 >> * Piglit: piglit_4509 -> None >> >> CI-20190529: 20190529 >> CI_DRM_13153: 1ceecfa94dd4a059164b23925aecc9db4c4fd3b6 @ git://anongit.freedesktop.org/gfx-ci/linux >> IGTPW_8979: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/index.html >> IGT_7292: 9d9475ffd3b5ae18fd8ec120595385f6c562f249 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git >> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ >> git://anongit.freedesktop.org/piglit >> >> == Logs == >> >> For more details see: >> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/index.html ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for test/gem_create: exercise gem_create_ext_set_pat 2023-05-16 18:16 [igt-dev] [PATCH v4 0/1] test/gem_create: exercise gem_create_ext_set_pat fei.yang ` (2 preceding siblings ...) 2023-05-17 5:49 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-05-25 11:56 ` Patchwork 3 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-05-25 11:56 UTC (permalink / raw) To: fei.yang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 17101 bytes --] == Series Details == Series: test/gem_create: exercise gem_create_ext_set_pat URL : https://patchwork.freedesktop.org/series/117833/ State : success == Summary == CI Bug Log - changes from CI_DRM_13153_full -> IGTPW_8979_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/index.html Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8979_full: ### IGT changes ### #### Possible regressions #### * {igt@gem_create@create-ext-set-pat} (NEW): - {shard-rkl}: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-rkl-7/igt@gem_create@create-ext-set-pat.html - {shard-dg1}: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-dg1-16/igt@gem_create@create-ext-set-pat.html - {shard-tglu}: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-tglu-2/igt@gem_create@create-ext-set-pat.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@debugfs_test@read_all_entries_display_off: - {shard-dg1}: [PASS][4] -> [DMESG-WARN][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-dg1-12/igt@debugfs_test@read_all_entries_display_off.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-dg1-16/igt@debugfs_test@read_all_entries_display_off.html New tests --------- New tests have been introduced between CI_DRM_13153_full and IGTPW_8979_full: ### New IGT tests (1) ### * igt@gem_create@create-ext-set-pat: - Statuses : 6 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_8979_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_mm@all-tests: - shard-snb: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#4579]) +3 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb7/igt@drm_mm@all-tests.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-glk: NOTRUN -> [FAIL][7] ([i915#2842]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk5/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#2190]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk6/igt@gem_huc_copy@huc-copy.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#3886]) +2 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk4/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-snb: NOTRUN -> [SKIP][10] ([fdo#109271]) +52 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb5/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-glk: NOTRUN -> [SKIP][11] ([fdo#109271]) +80 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk5/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][12] ([i915#2346]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][13] -> [FAIL][14] ([i915#2346]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1: - shard-apl: [PASS][15] -> [FAIL][16] ([i915#79]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-apl: [PASS][17] -> [DMESG-WARN][18] ([i915#180] / [i915#1982] / [i915#62]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl7/igt@kms_frontbuffer_tracking@fbc-suspend.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl6/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-apl: NOTRUN -> [SKIP][19] ([fdo#109271]) +3 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_lease@lease_revoke@pipe-a-dp-1: - shard-apl: [PASS][20] -> [DMESG-WARN][21] ([i915#62]) +6 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl7/igt@kms_lease@lease_revoke@pipe-a-dp-1.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl6/igt@kms_lease@lease_revoke@pipe-a-dp-1.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes: - shard-apl: [PASS][22] -> [ABORT][23] ([i915#180]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][24] ([i915#4573]) +1 similar issue [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk1/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-glk: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#658]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk2/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_scaling_modes@scaling-mode-full: - shard-glk: NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#4579]) +9 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-glk2/igt@kms_scaling_modes@scaling-mode-full.html #### Possible fixes #### * igt@device_reset@unbind-reset-rebind: - {shard-rkl}: [ABORT][27] ([i915#5507]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-rkl-2/igt@device_reset@unbind-reset-rebind.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-rkl-2/igt@device_reset@unbind-reset-rebind.html - shard-apl: [ABORT][29] ([i915#5507]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl1/igt@device_reset@unbind-reset-rebind.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl7/igt@device_reset@unbind-reset-rebind.html - {shard-tglu}: [ABORT][31] ([i915#5507]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-tglu-3/igt@device_reset@unbind-reset-rebind.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-tglu-4/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - {shard-rkl}: [FAIL][33] ([i915#7742]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@gem_ctx_freq@sysfs: - {shard-dg1}: [FAIL][35] ([i915#6786]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-dg1-12/igt@gem_ctx_freq@sysfs.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-dg1-15/igt@gem_ctx_freq@sysfs.html * igt@gem_exec_fair@basic-deadline: - shard-apl: [FAIL][37] ([i915#2846]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-apl2/igt@gem_exec_fair@basic-deadline.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-apl6/igt@gem_exec_fair@basic-deadline.html * igt@gem_ppgtt@blt-vs-render-ctx0: - shard-snb: [DMESG-FAIL][39] ([i915#8295]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-snb6/igt@gem_ppgtt@blt-vs-render-ctx0.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb2/igt@gem_ppgtt@blt-vs-render-ctx0.html * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - {shard-dg1}: [FAIL][41] ([i915#3591]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@i915_pm_rps@reset: - shard-snb: [INCOMPLETE][43] ([i915#7790]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-snb2/igt@i915_pm_rps@reset.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb5/igt@i915_pm_rps@reset.html * igt@i915_selftest@perf@engine_cs: - shard-snb: [ABORT][45] ([i915#4528] / [i915#4579]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-snb2/igt@i915_selftest@perf@engine_cs.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb7/igt@i915_selftest@perf@engine_cs.html * igt@perf_pmu@idle@rcs0: - {shard-rkl}: [FAIL][47] ([i915#4349]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-rkl-2/igt@perf_pmu@idle@rcs0.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-rkl-3/igt@perf_pmu@idle@rcs0.html #### Warnings #### * igt@kms_content_protection@mei_interface: - shard-snb: [SKIP][49] ([fdo#109271] / [i915#4579]) -> [SKIP][50] ([fdo#109271]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13153/shard-snb6/igt@kms_content_protection@mei_interface.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/shard-snb2/igt@kms_content_protection@mei_interface.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5507]: https://gitlab.freedesktop.org/drm/intel/issues/5507 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6786]: https://gitlab.freedesktop.org/drm/intel/issues/6786 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8295]: https://gitlab.freedesktop.org/drm/intel/issues/8295 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7292 -> IGTPW_8979 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13153: 1ceecfa94dd4a059164b23925aecc9db4c4fd3b6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8979: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/index.html IGT_7292: 9d9475ffd3b5ae18fd8ec120595385f6c562f249 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8979/index.html [-- Attachment #2: Type: text/html, Size: 15572 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2023-05-25 12:34 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-05-16 18:16 [igt-dev] [PATCH v4 0/1] test/gem_create: exercise gem_create_ext_set_pat fei.yang 2023-05-16 18:16 ` [igt-dev] [PATCH v4 1/1] " fei.yang 2023-05-17 9:31 ` Kamil Konieczny 2023-05-16 19:47 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2023-05-17 5:49 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-05-24 16:02 ` Kamil Konieczny 2023-05-25 8:33 ` Tvrtko Ursulin 2023-05-25 12:34 ` Yedireswarapu, SaiX Nandan 2023-05-25 11:56 ` [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