[CI][DRMTIP] igt@kms_flip@busy-flip - fail - Failed assertion: do_page_flip(o, new_fb_id, 0) == -16
Submitted by LAKSHMINARAYANA VUDUM @l4kshmi
Assigned to Intel GFX Bugs mailing list
Link to original bug (#110536)
Description
https://intel-gfx-ci.01.org/tree/drm-tip/drmtip_264/fi-bwr-2160/igt@kms_flip@busy-flip.html
Starting subtest: busy-flip
(kms_flip:1144) CRITICAL: Test assertion failure function run_test_step, file ../tests/kms_flip.c:767:
(kms_flip:1144) CRITICAL: Failed assertion: do_page_flip(o, new_fb_id, 0) == -16
(kms_flip:1144) CRITICAL: error: 0 != -16
Subtest busy-flip failed.
**** DEBUG ****
(kms_flip:1144) DEBUG: Test requirement passed: (flags & TEST_HANG) == 0 || !is_wedged(drm_fd)
(kms_flip:1144) DEBUG: Test requirement passed: resources
(kms_flip:1144) DEBUG: Test requirement passed: modes
(kms_flip:1144) INFO: Beginning busy-flip on pipe A, connector VGA-1
(kms_flip:1144) igt_fb-DEBUG: igt_create_fb_with_bo_size(width=1024, height=768, format=XR24(0x34325258), modifier=0x0, size=0)
(kms_flip:1144) igt_fb-DEBUG: igt_create_fb_with_bo_size(handle=2, pitch=4096)
(kms_flip:1144) ioctl_wrappers-DEBUG: Test requirement passed: igt_has_fb_modifiers(fd)
(kms_flip:1144) igt_fb-DEBUG: igt_create_fb_with_bo_size(width=1024, height=768, format=XR24(0x34325258), modifier=0x0, size=0)
(kms_flip:1144) igt_fb-DEBUG: igt_create_fb_with_bo_size(handle=3, pitch=4096)
(kms_flip:1144) ioctl_wrappers-DEBUG: Test requirement passed: igt_has_fb_modifiers(fd)
(kms_flip:1144) igt_fb-DEBUG: Test requirement passed: cairo_surface_status(fb->cairo_surface) == CAIRO_STATUS_SUCCESS
(kms_flip:1144) igt_fb-DEBUG: Test requirement passed: cairo_surface_status(fb->cairo_surface) == CAIRO_STATUS_SUCCESS
(kms_flip:1144) igt_kms-INFO: 1024x768 60 1024 1048 1184 1344 768 771 777 806 0xa 0x40 65000
(kms_flip:1144) DEBUG: name = flip
last_ts = 0.000000
- Show closed items
Activity
-
Newest first Oldest first
-
Show all activity Show comments only Show history only
added CI feature: display/Other platform: BSW/CHT platform: BYT platform: CFL platform: I965GM priority::low severity::minor + 1 deleted label
CI Bug Log said:The CI Bug Log issue associated to this bug has been updated.
New filters associated
* BWR: igt@kms_flip@busy-flip - fail - Failed assertion: do_page_flip(o, new_fb_id, 0) == -16
- https://intel-gfx-ci.01.org/tree/drm-tip/drmtip_264/fi-bwr-2160/igt@kms_flip@busy-flip.html CI Bug Log said:A CI Bug Log filter associated to this bug has been updated:
BWR: igt@kms_flip@busy-flip - fail - Failed assertion: do_page_flip(o, new_fb_id, 0) == -16
BWR GLK: igt@kms_flip@busy-flip - fail - Failed assertion: do_page_flip(o, new_fb_id, 0) == -16
New failures caught by the filter:
CI Bug Log said:A CI Bug Log filter associated to this bug has been updated:
BWR GLK: igt@kms_flip@busy-flip - fail - Failed assertion: do_page_flip(o, new_fb_id, 0) == -16
BWR BSW GLK: igt@kms_flip@busy-flip - fail - Failed assertion: do_page_flip(o, new_fb_id, 0) == -16
New failures caught by the filter:
CI Bug Log said:A CI Bug Log filter associated to this bug has been updated:
BWR BSW GLK: igt@kms_flip@busy-flip - fail - Failed assertion: do_page_flip(o, new_fb_id, 0) == -16
BWR BYT BSW GLK: igt@kms_flip@busy-flip - fail - Failed assertion: do_page_flip(o, new_fb_id, 0) == -16
New failures caught by the filter:
Matt Roper@mattrope
said:Our pageflip ioctl is supposed to return -EBUSY to userspace if a second pageflip is submitted while a first is still pending. This test tries to exercise that by attempting to submit two flip requests within the same vblank (since the first flip won't be able to complete if the vblank hasn't happened yet); in this case the second flip is occasionally returning a success return code rather than -EBUSY, hence the failure.
The problem here most likely does not arise from the kernel behavior, but rather from the fragility of the testing approach. The test software in userspace doesn't have any way to guarantee that both flips are actually submitted within the same vblank, so any unexpected delay in OS scheduling could cause the two flips to land in different vblanks; when that happens the first flip has already completed before the second is issued, to the second flip is successful (rather than EBUSY) and the test sees that as incorrect behavior. The test attempts to mitigate this unluckiness as much as possible by doing a forced vblank wait before the first flip in the hopes that the first flip will happen very shortly after the vblank and give the second flip time to be submitted within the same window, but this strategy is not foolproof and unexpected scheduling delay caused by other background tasks can still cause one or both of the flips to be issued later than we'd hope. It's probably not surprising that the occasional failures we get from this test happen on some of our slowest machines (atom rather than core).
Since we can't absolutely guarantee that both flips are submitted within the same vblank window, one alternative to consider would be to try to make the first flip take longer than a single vblank to complete. Flips will block until outstanding rendering against their framebuffer is completed, so issuing a complicated render operation on the first framebuffer being flipped could make that flip take multiple vblank periods to complete, effectively extending the window for us to submit a second flip and receive -EBUSY. Of course performing complicated rendering operations in IGT without a full GL stack isn't terribly easy either. Maybe another alternative would be a debugfs interface that causes the very next flip issued to take an artificially long time to complete by internally creating a fence that the flip must wait on?
There shouldn't be any end-user impact here, only a small impact to CI from false positive failures. Marking this bug as 'low' importance. Vanshidhar Konda closed a related bug:*** Bug 111513 has been marked as a duplicate of this bug. ***
CI Bug Log said:A CI Bug Log filter associated to this bug has been updated:
BWR BYT BSW GLK: igt@kms_flip@busy-flip - fail - Failed assertion: do_page_flip(o, new_fb_id, 0) == -16
BWR BYT BSW GLK: igt@kms_flip@busy-flip - fail - Failed assertion: do_page_flip(o, new_fb_id, 0) == -16
New failures caught by the filter:
- Reporter
A CI Bug Log filter associated to this bug has been updated:
BWR BYT BSW GLK: igt@kms_flip@busy-flip - fail - Failed assertion: do_page_flip(o, new_fb_id, 0) == -16 BWR BYT BSW SKL GLK: igt@kms_flip@busy-flip - fail - Failed assertion: do_page_flip(o, new_fb_id, 0) == -16
New failures caught by the filter:
- Reporter
A CI Bug Log filter associated to this bug has been updated by Lakshmi Vudum:
Description: BWR BYT BSW SKL GLK: igt@kms_flip@busy-flip - fail - Failed assertion: do_page_flip(o, new_fb_id, 0) == -16
Equivalent query: runconfig_tag IS IN ["DRM-TIP"] AND (machine_name IS IN ["shard-skl", "shard-skl1", "fi-glk-1", "shard-skl2", "shard-skl3", "shard-skl4", "shard-skl5", "fi-skl-6770hq", "shard-skl6", "shard-skl7", "shard-skl8", "fi-skl-6260u", "shard-skl10", "shard-skl9", "fi-skl-lmem", "fi-byt-n2820", "fi-skl-6700hq", "fi-skl-6600u", "fi-tgl-u", "re-tgl-u", "fi-bsw-n3050", "fi-byt-j1900", "fi-tgl-u2", "shard-tglb1", "fi-glk-dsi", "shard-tglb2", "fi-bwr-2160", "shard-tglb3", "re-tgl1-display", "re-tgl2-display", "shard-tglb4", "shard-tglb5", "shard-tglb6", "shard-tglb7", "shard-tglb8", "shard-tglb0", "fi-tgl-y", "re-tgl-y", "fi-bsw-nick", "fi-skl-6700k2", "re-tgl-cham", "shard-tglb9", "fi-tgl-guc", "fi-skl-gvtdvm", "fi-tgl-dsi", "re-tgl-u2", "ba-tgl-1", "fi-skl-guc", "fi-glk-j4005", "shard-glk", "shard-glk1", "shard-glk3", "shard-glk4", "shard-glk5", "shard-glk2", "shard-glk8", "shard-glk6", "shard-glk7", "fi-byt-squawks", "fi-bsw-cyan", "fi-whl-u", "shard-glk9", "fi-skl-iommu", "fi-bsw-kefka", "fi-skl-caroline", "fi-byt-clapper"] OR machine_tag IS IN ["BWR", "WHL", "BYT", "BSW", "SKL", "TGL", "GLK"]) AND ((testsuite_name = "IGT" AND test_name IS IN ["igt@kms_flip@busy-flip"])) AND ((testsuite_name = "IGT" AND status_name IS IN ["fail"])) AND stderr ~= 'Failed assertion: do_page_flip\(o, new_fb_id, 0\) == -16'
New failures caught by the filter:
- Reporter
A CI Bug Log filter associated to this bug has been updated by Lakshmi Vudum:
Description: BWR BYT BSW SKL GLK TGL: igt@kms_flip@busy-flip - fail - Failed assertion: do_page_flip(o, new_fb_id, 0) == -16
Equivalent query: runconfig_tag IS IN ["DRM-TIP"] AND (machine_name IS IN ["shard-skl", "shard-skl1", "fi-glk-1", "shard-skl2", "shard-skl3", "shard-skl4", "shard-skl5", "fi-skl-6770hq", "shard-skl6", "shard-skl7", "shard-skl8", "fi-skl-6260u", "shard-skl10", "shard-skl9", "fi-skl-lmem", "fi-byt-n2820", "fi-skl-6700hq", "fi-skl-6600u", "fi-tgl-u", "re-tgl-u", "fi-bsw-n3050", "fi-byt-j1900", "fi-tgl-u2", "shard-tglb1", "fi-glk-dsi", "shard-tglb2", "fi-bwr-2160", "shard-tglb3", "re-tgl1-display", "re-tgl2-display", "shard-tglb4", "shard-tglb5", "shard-tglb6", "shard-tglb7", "shard-tglb8", "shard-tglb0", "fi-tgl-y", "re-tgl-y", "fi-bsw-nick", "fi-skl-6700k2", "re-tgl-cham", "shard-tglb9", "fi-tgl-guc", "fi-skl-gvtdvm", "fi-tgl-dsi", "re-tgl-u2", "ba-tgl-1", "fi-skl-guc", "fi-glk-j4005", "shard-glk", "shard-glk1", "shard-glk3", "shard-glk4", "shard-glk5", "shard-glk2", "shard-glk8", "shard-glk6", "shard-glk7", "fi-byt-squawks", "fi-bsw-cyan", "fi-whl-u", "shard-glk9", "fi-skl-iommu", "fi-bsw-kefka", "fi-skl-caroline", "fi-byt-clapper"] OR machine_tag IS IN ["BWR", "WHL", "BYT", "BSW", "SKL", "TGL", "GLK"]) AND ((testsuite_name = "IGT" AND test_name IS IN ["igt@kms_flip@busy-flip"])) AND ((testsuite_name = "IGT" AND status_name IS IN ["fail"])) AND stderr ~= 'Failed assertion: do_page_flip\(o, new_fb_id, 0\) == -16'
No new failures caught with the new filter
- LAKSHMINARAYANA VUDUM added platform: TGL label
added platform: TGL label
- Reporter
The CI Bug Log issue associated to this bug has been updated by Lakshmi Vudum.
New filters associated
- TGL: igt@kms_flip@* - fail - Failed assertion: (do_page_flip(o, new_fb_id, !(o->flags & (1 << 16)))) == 0 (No new failures associated)
- LAKSHMINARAYANA VUDUM marked #1350 (closed) as a duplicate of this issue
marked #1350 (closed) as a duplicate of this issue
- Reporter
A CI Bug Log filter associated to this bug has been updated by Lakshmi Vudum:
Description: BWR BYT BSW SKL GLK TGL: igt@kms_flip@busy-flip.* - fail - Failed assertion: do_page_flip(o, new_fb_id, 0) == -16
Equivalent query: runconfig_tag IS IN ["DRM-TIP"] AND (machine_name IS IN ["shard-skl", "shard-skl1", "fi-glk-1", "shard-skl2", "shard-skl3", "shard-skl4", "shard-skl5", "fi-skl-6770hq", "shard-skl6", "shard-skl7", "shard-skl8", "fi-skl-6260u", "shard-skl10", "shard-skl9", "fi-skl-lmem", "fi-byt-n2820", "fi-skl-6700hq", "fi-skl-6600u", "fi-tgl-u", "re-tgl-u", "fi-bsw-n3050", "fi-byt-j1900", "fi-tgl-u2", "shard-tglb1", "fi-glk-dsi", "shard-tglb2", "fi-bwr-2160", "shard-tglb3", "re-tgl1-display", "re-tgl2-display", "shard-tglb4", "shard-tglb5", "shard-tglb6", "shard-tglb7", "shard-tglb8", "shard-tglb0", "fi-tgl-y", "re-tgl-y", "fi-bsw-nick", "fi-skl-6700k2", "re-tgl-cham", "shard-tglb9", "fi-tgl-guc", "fi-skl-gvtdvm", "fi-tgl-dsi", "re-tgl-u2", "ba-tgl-1", "fi-skl-guc", "custom-tgl-joshikun", "fi-glk-j4005", "shard-glk", "shard-glk1", "shard-glk3", "shard-glk4", "shard-glk5", "shard-glk2", "shard-glk8", "shard-glk6", "shard-glk7", "fi-byt-squawks", "fi-bsw-cyan", "fi-whl-u", "shard-glk9", "fi-skl-iommu", "fi-bsw-kefka", "fi-skl-caroline", "fi-byt-clapper"] OR machine_tag IS IN ["BWR", "WHL", "BYT", "BSW", "SKL", "TGL", "GLK"]) AND ((testsuite_name = "IGT" AND test_name IS IN ["igt@kms_flip@busy-flip@b-hdmi-a1", "igt@kms_flip@busy-flip@b-lvds1", "igt@kms_flip@busy-flip@b-vga1", "igt@kms_flip@busy-flip@c-hdmi-a2", "igt@kms_flip@busy-flip@c-hdmi-a1", "igt@kms_flip@busy-flip@c-vga1", "igt@kms_flip@busy-flip@c-dsi1", "igt@kms_flip@busy-flip@a-vga1", "igt@kms_flip@busy-flip@c-edp1", "igt@kms_flip@busy-flip@a-hdmi-a1", "igt@kms_flip@busy-flip@a-lvds1", "igt@kms_flip@busy-flip@b-dp1", "igt@kms_flip@busy-flip@b-dp2", "igt@kms_flip@busy-flip", "igt@kms_flip@busy-flip@b-hdmi-a2", "igt@kms_flip@busy-flip@b-dvi-d1", "igt@kms_flip@busy-flip@b-dsi1", "igt@kms_flip@busy-flip@c-dp1", "igt@kms_flip@busy-flip@c-dp2", "igt@kms_flip@busy-flip@a-dvi-d1", "igt@kms_flip@busy-flip@d-edp1", "igt@kms_flip@busy-flip@a-dsi1", "igt@kms_flip@busy-flip@a-hdmi-a2", "igt@kms_flip@busy-flip@a-dp2", "igt@kms_flip@busy-flip@d-dsi1", "igt@kms_flip@busy-flip@d-dp2", "igt@kms_flip@busy-flip@a-dp1", "igt@kms_flip@busy-flip@b-edp1", "igt@kms_flip@busy-flip@a-edp1"])) AND ((testsuite_name = "IGT" AND status_name IS IN ["fail"])) AND stderr ~= 'Failed assertion: do_page_flip\(o, new_fb_id, 0\) == -16'
New failures caught by the filter:
- Reporter
The CI Bug Log issue associated to this bug has been updated by Lakshmi Vudum.
Removed filters
- GEN9 TGL: igt@kms_flip@* - fail - Failed assertion: (do_page_flip(o, new_fb_id, !(o->flags & (1 << 16)))) == 0 (added on an hour ago)
New filters associated
- GEN9 TGL: igt@kms_flip@* - fail - Failed assertion: (do_page_flip(o, new_fb_id, !(o->flags & (1 << 16)))) == 0 (No new failures associated)
- LAKSHMINARAYANA VUDUM added platform: RKL label
added platform: RKL label
- Reporter
The CI Bug Log issue associated to this bug has been updated by Lakshmi Vudum.
New filters associated
- RKL: igt@kms_flip@*Failed assertion: (do_page_flip(o, new_fb_id, !(o->flags & (1 << 16)))) == 0
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8817/re-rkl-1/igt@kms_flip@2x-flip-vs-fences@ab-edp1-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8817/re-rkl-1/igt@kms_flip@2x-flip-vs-fences@ac-edp1-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8817/re-rkl-1/igt@kms_flip@2x-flip-vs-fences@bc-edp1-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8817/re-rkl-1/igt@kms_flip@2x-flip-vs-fences-interruptible@ab-edp1-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8817/re-rkl-1/igt@kms_flip@2x-flip-vs-fences-interruptible@ac-edp1-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8817/re-rkl-1/igt@kms_flip@2x-flip-vs-fences-interruptible@bc-edp1-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8817/re-rkl-1/igt@kms_flip@flip-vs-fences@a-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8817/re-rkl-1/igt@kms_flip@flip-vs-fences@b-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8817/re-rkl-1/igt@kms_flip@flip-vs-fences@c-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8817/re-rkl-1/igt@kms_flip@flip-vs-fences-interruptible@a-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8817/re-rkl-1/igt@kms_flip@flip-vs-fences-interruptible@b-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8817/re-rkl-1/igt@kms_flip@flip-vs-fences-interruptible@c-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8777/re-rkl-1/igt@kms_flip@2x-flip-vs-fences@ab-edp1-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8777/re-rkl-1/igt@kms_flip@2x-flip-vs-fences@ac-edp1-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8777/re-rkl-1/igt@kms_flip@2x-flip-vs-fences@bc-edp1-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8777/re-rkl-1/igt@kms_flip@2x-flip-vs-fences-interruptible@ab-edp1-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8777/re-rkl-1/igt@kms_flip@2x-flip-vs-fences-interruptible@ac-edp1-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8777/re-rkl-1/igt@kms_flip@2x-flip-vs-fences-interruptible@bc-edp1-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8777/re-rkl-1/igt@kms_flip@flip-vs-fences@a-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8777/re-rkl-1/igt@kms_flip@flip-vs-fences@b-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8777/re-rkl-1/igt@kms_flip@flip-vs-fences@c-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8777/re-rkl-1/igt@kms_flip@flip-vs-fences-interruptible@a-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8777/re-rkl-1/igt@kms_flip@flip-vs-fences-interruptible@b-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8777/re-rkl-1/igt@kms_flip@flip-vs-fences-interruptible@c-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8778/re-rkl-cham/igt@kms_flip@2x-flip-vs-fences@ac-edp1-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8778/re-rkl-cham/igt@kms_flip@2x-flip-vs-fences@bc-edp1-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8778/re-rkl-cham/igt@kms_flip@2x-flip-vs-fences-interruptible@ac-edp1-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8778/re-rkl-cham/igt@kms_flip@2x-flip-vs-fences-interruptible@bc-edp1-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8778/re-rkl-cham/igt@kms_flip@flip-vs-fences@a-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8778/re-rkl-cham/igt@kms_flip@flip-vs-fences@b-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8778/re-rkl-cham/igt@kms_flip@flip-vs-fences@c-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8778/re-rkl-cham/igt@kms_flip@flip-vs-fences-interruptible@a-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8778/re-rkl-cham/igt@kms_flip@flip-vs-fences-interruptible@b-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8778/re-rkl-cham/igt@kms_flip@flip-vs-fences-interruptible@c-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8786/re-rkl-1/igt@kms_flip@2x-flip-vs-fences@ab-edp1-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8786/re-rkl-1/igt@kms_flip@2x-flip-vs-fences@ac-edp1-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8786/re-rkl-1/igt@kms_flip@2x-flip-vs-fences@bc-edp1-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8786/re-rkl-1/igt@kms_flip@2x-flip-vs-fences-interruptible@ab-edp1-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8786/re-rkl-1/igt@kms_flip@2x-flip-vs-fences-interruptible@ac-edp1-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8786/re-rkl-1/igt@kms_flip@2x-flip-vs-fences-interruptible@bc-edp1-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8786/re-rkl-1/igt@kms_flip@flip-vs-fences@a-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8786/re-rkl-1/igt@kms_flip@flip-vs-fences@b-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8786/re-rkl-1/igt@kms_flip@flip-vs-fences@c-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8786/re-rkl-1/igt@kms_flip@flip-vs-fences-interruptible@a-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8786/re-rkl-1/igt@kms_flip@flip-vs-fences-interruptible@b-hdmi-a3.html
- https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8786/re-rkl-1/igt@kms_flip@flip-vs-fences-interruptible@c-hdmi-a3.html
- RKL: igt@kms_flip@*Failed assertion: (do_page_flip(o, new_fb_id, !(o->flags & (1 << 16)))) == 0
- Reporter
All applicable "igt@kms_flip@busy-flip" test cases are passing in latest resume run on RKL platfrom with DRM_9003 & IGT_5781". Log :- http://gfx-ci.fi.intel.com/cibuglog-ng/metrics/passrate_per_test?query_key=e53045571d6bf36b3bf81b93240dc1335732750e
Error not observed on Shard for GLK, TGL & HSW. https://intel-gfx-ci.01.org/tree/drm-tip/shards-all.html?testfilter=igt@kms_flip@busy-flip
CFL -- Issue not observed with latest DRM_655. Log :- http://gfx-ci.fi.intel.com/cibuglog-ng/results/all?query_key=2c08888a9b44cb690a49ec094209831899b669b4
BSW -- Issue not observed with latest DRM_655. Log :- http://gfx-ci.fi.intel.com/cibuglog-ng/results/all?query_key=71f58cea05318733b228a6038518b58486cd9967
BYT -- Issue not observed with latest DRM_655. Log :- http://gfx-ci.fi.intel.com/cibuglog-ng/results/all?query_key=62239b7a15c494e9568dcd918f064b6e3769707a
Hence closing the ticket.
- LAXMINARAYANA closed
closed