* [igt-dev] [PATCH i-g-t 0/2] Add missing change in xe_create
@ 2023-04-03 10:33 Zbigniew Kempczyński
2023-04-03 10:33 ` [igt-dev] [PATCH i-g-t 1/2] xe/xe_create: Use system configuration page size Zbigniew Kempczyński
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Zbigniew Kempczyński @ 2023-04-03 10:33 UTC (permalink / raw)
To: igt-dev
During the review I merged this in another branch so it wasn't pushed
properly to master branch.
Also add this subtest to BAT run. Expect the failure on vram as this
is not addressed in the kernel yet.
Zbigniew Kempczyński (2):
xe/xe_create: Use system configuration page size
intel-ci/xe-fast-feedback: Add xe_create@create-invalid-size subtest
to BAT
tests/intel-ci/xe-fast-feedback.testlist | 1 +
tests/xe/xe_create.c | 5 +++--
2 files changed, 4 insertions(+), 2 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] [PATCH i-g-t 1/2] xe/xe_create: Use system configuration page size
2023-04-03 10:33 [igt-dev] [PATCH i-g-t 0/2] Add missing change in xe_create Zbigniew Kempczyński
@ 2023-04-03 10:33 ` Zbigniew Kempczyński
2023-04-03 10:33 ` [igt-dev] [PATCH i-g-t 2/2] intel-ci/xe-fast-feedback: Add xe_create@create-invalid-size subtest to BAT Zbigniew Kempczyński
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Zbigniew Kempczyński @ 2023-04-03 10:33 UTC (permalink / raw)
To: igt-dev
During the review Maarten asked to use _SC_PAGESIZE, unfortunately
this left on branch I didn't merge. Fix this to be page size
independent.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
---
tests/xe/xe_create.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/tests/xe/xe_create.c b/tests/xe/xe_create.c
index ae841f8092..74833639f4 100644
--- a/tests/xe/xe_create.c
+++ b/tests/xe/xe_create.c
@@ -50,6 +50,7 @@ static void create_invalid_size(int fd)
{
struct drm_xe_query_mem_region *memregion;
uint64_t memreg = all_memory_regions(fd), region;
+ const uint32_t page_size = sysconf(_SC_PAGESIZE);
uint32_t vm;
uint32_t handle;
int ret;
@@ -72,9 +73,9 @@ static void create_invalid_size(int fd)
* second try, add page size to min page size if it is
* bigger than page size.
*/
- if (memregion->min_page_size > PAGE_SIZE) {
+ if (memregion->min_page_size > page_size) {
ret = __create_bo(fd, vm,
- memregion->min_page_size + PAGE_SIZE,
+ memregion->min_page_size + page_size,
region, &handle);
if (!ret) {
gem_close(fd, handle);
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] intel-ci/xe-fast-feedback: Add xe_create@create-invalid-size subtest to BAT
2023-04-03 10:33 [igt-dev] [PATCH i-g-t 0/2] Add missing change in xe_create Zbigniew Kempczyński
2023-04-03 10:33 ` [igt-dev] [PATCH i-g-t 1/2] xe/xe_create: Use system configuration page size Zbigniew Kempczyński
@ 2023-04-03 10:33 ` Zbigniew Kempczyński
2023-04-03 10:56 ` [igt-dev] [PATCH i-g-t 0/2] Add missing change in xe_create Mauro Carvalho Chehab
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Zbigniew Kempczyński @ 2023-04-03 10:33 UTC (permalink / raw)
To: igt-dev
Verifies object size passed by the use match region alignments during bo
create ioctl.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
---
tests/intel-ci/xe-fast-feedback.testlist | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/intel-ci/xe-fast-feedback.testlist b/tests/intel-ci/xe-fast-feedback.testlist
index 5f3bd2e917..9b2d4cac8a 100644
--- a/tests/intel-ci/xe-fast-feedback.testlist
+++ b/tests/intel-ci/xe-fast-feedback.testlist
@@ -2,6 +2,7 @@
igt@xe_module_load@load
igt@xe_compute@compute-square
+igt@xe_create@create-invalid-size
igt@xe_debugfs@base
igt@xe_debugfs@gt
igt@xe_debugfs@forcewake
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 0/2] Add missing change in xe_create
2023-04-03 10:33 [igt-dev] [PATCH i-g-t 0/2] Add missing change in xe_create Zbigniew Kempczyński
2023-04-03 10:33 ` [igt-dev] [PATCH i-g-t 1/2] xe/xe_create: Use system configuration page size Zbigniew Kempczyński
2023-04-03 10:33 ` [igt-dev] [PATCH i-g-t 2/2] intel-ci/xe-fast-feedback: Add xe_create@create-invalid-size subtest to BAT Zbigniew Kempczyński
@ 2023-04-03 10:56 ` Mauro Carvalho Chehab
2023-04-03 12:23 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2023-04-03 16:05 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Mauro Carvalho Chehab @ 2023-04-03 10:56 UTC (permalink / raw)
To: igt-dev
Hi,
On 4/3/23 12:33, Zbigniew Kempczyński wrote:
> During the review I merged this in another branch so it wasn't pushed
> properly to master branch.
>
> Also add this subtest to BAT run. Expect the failure on vram as this
> is not addressed in the kernel yet.
>
> Zbigniew Kempczyński (2):
> xe/xe_create: Use system configuration page size
> intel-ci/xe-fast-feedback: Add xe_create@create-invalid-size subtest
> to BAT
>
> tests/intel-ci/xe-fast-feedback.testlist | 1 +
> tests/xe/xe_create.c | 5 +++--
> 2 files changed, 4 insertions(+), 2 deletions(-)
>
Didn't test patch 2, but, assuming it passes on all platforms:
Reviewed-by: Mauro Carvalho Chehab <mchehab@kernel.org>
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Add missing change in xe_create
2023-04-03 10:33 [igt-dev] [PATCH i-g-t 0/2] Add missing change in xe_create Zbigniew Kempczyński
` (2 preceding siblings ...)
2023-04-03 10:56 ` [igt-dev] [PATCH i-g-t 0/2] Add missing change in xe_create Mauro Carvalho Chehab
@ 2023-04-03 12:23 ` Patchwork
2023-04-03 16:05 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2023-04-03 12:23 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3383 bytes --]
== Series Details ==
Series: Add missing change in xe_create
URL : https://patchwork.freedesktop.org/series/116016/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12957 -> IGTPW_8736
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/index.html
Participating hosts (37 -> 36)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_8736 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_pm_rps@basic-api:
- bat-dg2-11: [PASS][1] -> [FAIL][2] ([i915#8308])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12957/bat-dg2-11/igt@i915_pm_rps@basic-api.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/bat-dg2-11/igt@i915_pm_rps@basic-api.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: NOTRUN -> [SKIP][3] ([i915#5354])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1:
- bat-dg2-8: [PASS][4] -> [FAIL][5] ([i915#7932]) +1 similar issue
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12957/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1.html
#### Warnings ####
* igt@i915_selftest@live@slpc:
- bat-rpls-2: [DMESG-FAIL][6] ([i915#6997] / [i915#7913]) -> [DMESG-FAIL][7] ([i915#6367] / [i915#7913] / [i915#7996])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12957/bat-rpls-2/igt@i915_selftest@live@slpc.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/bat-rpls-2/igt@i915_selftest@live@slpc.html
- bat-rpls-1: [DMESG-FAIL][8] ([i915#6367]) -> [DMESG-FAIL][9] ([i915#6367] / [i915#7996])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12957/bat-rpls-1/igt@i915_selftest@live@slpc.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/bat-rpls-1/igt@i915_selftest@live@slpc.html
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932
[i915#7996]: https://gitlab.freedesktop.org/drm/intel/issues/7996
[i915#8308]: https://gitlab.freedesktop.org/drm/intel/issues/8308
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7233 -> IGTPW_8736
CI-20190529: 20190529
CI_DRM_12957: 72243ec74997623b2caf4be353d55876e3071bc6 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8736: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/index.html
IGT_7233: 716520b469a2745e1882780f2aabbc88eb19332c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
-igt@kms_dsc@dsc-with-invalid-bpc
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/index.html
[-- Attachment #2: Type: text/html, Size: 4343 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Add missing change in xe_create
2023-04-03 10:33 [igt-dev] [PATCH i-g-t 0/2] Add missing change in xe_create Zbigniew Kempczyński
` (3 preceding siblings ...)
2023-04-03 12:23 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2023-04-03 16:05 ` Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2023-04-03 16:05 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 20754 bytes --]
== Series Details ==
Series: Add missing change in xe_create
URL : https://patchwork.freedesktop.org/series/116016/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_12957_full -> IGTPW_8736_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/index.html
Participating hosts (7 -> 7)
------------------------------
Additional (1): shard-rkl
Missing (1): shard-rkl0
New tests
---------
New tests have been introduced between CI_DRM_12957_full and IGTPW_8736_full:
### New IGT tests (12) ###
* igt@kms_cursor_edge_walk@128x128-left-edge@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_cursor_edge_walk@128x128-right-edge@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_cursor_edge_walk@256x256-right-edge@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_cursor_edge_walk@256x256-top-edge@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_cursor_edge_walk@64x64-left-edge@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_cursor_edge_walk@64x64-right-edge@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_cursor_edge_walk@64x64-top-bottom@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_cursor_edge_walk@64x64-top-edge@pipe-b-hdmi-a-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_flip@flip-vs-modeset-vs-hang@b-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_flip@flip-vs-panning-vs-hang@b-hdmi-a2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_8736_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_barrier_race@remote-request@rcs0:
- shard-glk: [PASS][1] -> [ABORT][2] ([i915#8190])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12957/shard-glk1/igt@gem_barrier_race@remote-request@rcs0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/shard-glk4/igt@gem_barrier_race@remote-request@rcs0.html
* igt@gem_exec_fair@basic-deadline:
- shard-glk: [PASS][3] -> [FAIL][4] ([i915#2846])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12957/shard-glk3/igt@gem_exec_fair@basic-deadline.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/shard-glk7/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none@rcs0:
- shard-glk: NOTRUN -> [FAIL][5] ([i915#2842]) +2 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/shard-glk3/igt@gem_exec_fair@basic-none@rcs0.html
* igt@i915_selftest@live@gt_heartbeat:
- shard-apl: [PASS][6] -> [DMESG-FAIL][7] ([i915#5334])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12957/shard-apl1/igt@i915_selftest@live@gt_heartbeat.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/shard-apl6/igt@i915_selftest@live@gt_heartbeat.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-snb: NOTRUN -> [SKIP][8] ([fdo#109271]) +9 similar issues
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/shard-snb4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-1:
- shard-glk: [PASS][9] -> [DMESG-WARN][10] ([i915#118])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12957/shard-glk6/igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-1.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/shard-glk3/igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-apl: [PASS][11] -> [FAIL][12] ([i915#2346])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12957/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][13] -> [FAIL][14] ([i915#2122])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12957/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][15] ([fdo#109271]) +43 similar issues
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/shard-glk6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1:
- shard-apl: [PASS][16] -> [FAIL][17] ([i915#1188])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12957/shard-apl2/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/shard-apl2/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#658]) +1 similar issue
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/shard-glk9/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
* igt@perf@stress-open-close@0-rcs0:
- shard-glk: [PASS][19] -> [ABORT][20] ([i915#5213])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12957/shard-glk3/igt@perf@stress-open-close@0-rcs0.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/shard-glk3/igt@perf@stress-open-close@0-rcs0.html
#### Possible fixes ####
* igt@gem_ctx_exec@basic-nohangcheck:
- {shard-tglu}: [FAIL][21] ([i915#6268]) -> [PASS][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12957/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/shard-tglu-10/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][23] ([i915#2842]) -> [PASS][24]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12957/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@i915_pm_dc@dc9-dpms:
- {shard-tglu}: [SKIP][25] ([i915#4281]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12957/shard-tglu-3/igt@i915_pm_dc@dc9-dpms.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rc6_residency@rc6-fence:
- {shard-tglu}: [WARN][27] ([i915#2681]) -> [PASS][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12957/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rps@basic-api:
- {shard-dg1}: [FAIL][29] ([i915#8308]) -> [PASS][30]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12957/shard-dg1-15/igt@i915_pm_rps@basic-api.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/shard-dg1-17/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@reset:
- shard-snb: [INCOMPLETE][31] ([i915#7790]) -> [PASS][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12957/shard-snb2/igt@i915_pm_rps@reset.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/shard-snb4/igt@i915_pm_rps@reset.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1:
- shard-apl: [FAIL][33] ([i915#2521]) -> [PASS][34]
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12957/shard-apl7/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/shard-apl7/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-1.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [FAIL][35] ([i915#2346]) -> [PASS][36]
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12957/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[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#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
[i915#1188]: https://gitlab.freedesktop.org/drm/intel/issues/1188
[i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
[i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
[i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434
[i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435
[i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[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#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
[i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
[i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344
[i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
[i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
[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#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984
[i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011
[i915#8150]: https://gitlab.freedesktop.org/drm/intel/issues/8150
[i915#8190]: https://gitlab.freedesktop.org/drm/intel/issues/8190
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8308]: https://gitlab.freedesktop.org/drm/intel/issues/8308
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7233 -> IGTPW_8736
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_12957: 72243ec74997623b2caf4be353d55876e3071bc6 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8736: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8736/index.html
IGT_7233: 716520b469a2745e1882780f2aabbc88eb19332c @ 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_8736/index.html
[-- Attachment #2: Type: text/html, Size: 12597 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-04-03 16:05 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-03 10:33 [igt-dev] [PATCH i-g-t 0/2] Add missing change in xe_create Zbigniew Kempczyński
2023-04-03 10:33 ` [igt-dev] [PATCH i-g-t 1/2] xe/xe_create: Use system configuration page size Zbigniew Kempczyński
2023-04-03 10:33 ` [igt-dev] [PATCH i-g-t 2/2] intel-ci/xe-fast-feedback: Add xe_create@create-invalid-size subtest to BAT Zbigniew Kempczyński
2023-04-03 10:56 ` [igt-dev] [PATCH i-g-t 0/2] Add missing change in xe_create Mauro Carvalho Chehab
2023-04-03 12:23 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2023-04-03 16:05 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox