* [igt-dev] [PATCH i-g-t v2 1/3] tests/kms_frontbuffer_tracking: Pass the debugfs fd to psr_wait_entry()
@ 2018-09-20 17:59 José Roberto de Souza
2018-09-20 17:59 ` [igt-dev] [PATCH i-g-t v2 2/3] lib/igt_psr: Give a explicit parameter name to functions that expect debugfs fd José Roberto de Souza
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: José Roberto de Souza @ 2018-09-20 17:59 UTC (permalink / raw)
To: igt-dev
psr_wait_entry() uses the fd to the debugfs directory not the fd
the drm device.
This fix some kms_frontbuffers_tracking tests:
...
(kms_frontbuffer_tracking:1353) DEBUG: Calculated CRC: pipe:[94a0476d 00000000 00000000 00000000 00000000]
(kms_frontbuffer_tracking:1353) DEBUG: Test requirement passed: !fbc_not_enough_stolen()
(kms_frontbuffer_tracking:1353) DEBUG: Test requirement passed: !fbc_stride_not_supported()
(kms_frontbuffer_tracking:1353) DEBUG: Test requirement passed: !fbc_mode_too_large()
(kms_frontbuffer_tracking:1353) DEBUG: fbc_is_enabled()?
FBC enabled
Compressing: yes
(kms_frontbuffer_tracking:1353) DEBUG: fbc_is_enabled(IGT_LOG_DEBUG) took 0ms
(kms_frontbuffer_tracking:1353) DEBUG: fbc_is_compressing() took 0ms
(kms_frontbuffer_tracking:1353) CRITICAL: Test assertion failure function do_status_assertions, file ../tests/kms_frontbuffer_tracking.c:1634:
(kms_frontbuffer_tracking:1353) CRITICAL: Failed assertion: psr_wait_entry(drm.fd)
(kms_frontbuffer_tracking:1353) CRITICAL: Last errno: 20, Not a directory
(kms_frontbuffer_tracking:1353) CRITICAL: PSR still disabled
(kms_frontbuffer_tracking:1353) igt_core-INFO: Stack trace:
(kms_frontbuffer_tracking:1353) igt_core-INFO: #0 ../lib/igt_core.c:1467 __igt_fail_assert()
(kms_frontbuffer_tracking:1353) igt_core-INFO: #1 ../tests/kms_frontbuffer_tracking.c:1635 do_status_assertions()
(kms_frontbuffer_tracking:1353) igt_core-INFO: #2 ../tests/kms_frontbuffer_tracking.c:1663 __do_assertions()
(kms_frontbuffer_tracking:1353) igt_core-INFO: #3 ../tests/kms_frontbuffer_tracking.c:1687 enable_prim_screen_and_wait()
(kms_frontbuffer_tracking:1353) igt_core-INFO: #4 ../tests/kms_frontbuffer_tracking.c:1847 prepare_subtest_screens()
(kms_frontbuffer_tracking:1353) igt_core-INFO: #5 ../tests/kms_frontbuffer_tracking.c:1867 prepare_subtest()
(kms_frontbuffer_tracking:1353) igt_core-INFO: #6 ../tests/kms_frontbuffer_tracking.c:2987 tilingchange_subtest()
(kms_frontbuffer_tracking:1353) igt_core-INFO: #7 ../tests/kms_frontbuffer_tracking.c:3474 main()
(kms_frontbuffer_tracking:1353) igt_core-INFO: #8 ../csu/libc-start.c:344 __libc_start_main()
(kms_frontbuffer_tracking:1353) igt_core-INFO: #9 [_start+0x2a]
v2: Fixing code style
Reviewed-by: Dhinakaran Pandiyan <dhinakaran.pandiyan@intel.com>
Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
---
tests/kms_frontbuffer_tracking.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/tests/kms_frontbuffer_tracking.c b/tests/kms_frontbuffer_tracking.c
index b33f3128..1bce6760 100644
--- a/tests/kms_frontbuffer_tracking.c
+++ b/tests/kms_frontbuffer_tracking.c
@@ -1631,7 +1631,8 @@ static void do_status_assertions(int flags)
}
if (flags & ASSERT_PSR_ENABLED)
- igt_assert_f(psr_wait_entry(drm.fd), "PSR still disabled\n");
+ igt_assert_f(psr_wait_entry(drm.debugfs),
+ "PSR still disabled\n");
else if (flags & ASSERT_PSR_DISABLED)
igt_assert_f(psr_active(drm.debugfs, false),
"PSR still enabled\n");
--
2.19.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 7+ messages in thread* [igt-dev] [PATCH i-g-t v2 2/3] lib/igt_psr: Give a explicit parameter name to functions that expect debugfs fd 2018-09-20 17:59 [igt-dev] [PATCH i-g-t v2 1/3] tests/kms_frontbuffer_tracking: Pass the debugfs fd to psr_wait_entry() José Roberto de Souza @ 2018-09-20 17:59 ` José Roberto de Souza 2018-09-20 17:59 ` [igt-dev] [PATCH i-g-t v2 3/3] test/kms_fbcon_fbt: " José Roberto de Souza ` (4 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: José Roberto de Souza @ 2018-09-20 17:59 UTC (permalink / raw) To: igt-dev Let's rename to debugfs_fd all the parameters of the functions that expect debugfs fd to avoid call one those functions with the wrong file descriptor. Reviewed-by: Dhinakaran Pandiyan <dhinakaran.pandiyan@intel.com> Signed-off-by: José Roberto de Souza <jose.souza@intel.com> --- lib/igt_psr.c | 36 +++++++++++++++++++----------------- lib/igt_psr.h | 8 ++++---- 2 files changed, 23 insertions(+), 21 deletions(-) diff --git a/lib/igt_psr.c b/lib/igt_psr.c index 6c5cf43d..c2bae95b 100644 --- a/lib/igt_psr.c +++ b/lib/igt_psr.c @@ -25,28 +25,30 @@ #include "igt_sysfs.h" #include <errno.h> -bool psr_active(int fd, bool check_active) +bool psr_active(int debugfs_fd, bool check_active) { bool active; char buf[512]; - igt_debugfs_simple_read(fd, "i915_edp_psr_status", buf, sizeof(buf)); + igt_debugfs_simple_read(debugfs_fd, "i915_edp_psr_status", buf, + sizeof(buf)); active = strstr(buf, "HW Enabled & Active bit: yes\n") && (strstr(buf, "SRDENT") || strstr(buf, "SLEEP")); return check_active ? active : !active; } -bool psr_wait_entry(int fd) +bool psr_wait_entry(int debugfs_fd) { - return igt_wait(psr_active(fd, true), 500, 1); + return igt_wait(psr_active(debugfs_fd, true), 500, 1); } -static ssize_t psr_write(int fd, const char *buf) +static ssize_t psr_write(int debugfs_fd, const char *buf) { - return igt_sysfs_write(fd, "i915_edp_psr_debug", buf, strlen(buf)); + return igt_sysfs_write(debugfs_fd, "i915_edp_psr_debug", buf, + strlen(buf)); } -static int has_psr_debugfs(int fd) +static int has_psr_debugfs(int debugfs_fd) { int ret; @@ -55,14 +57,14 @@ static int has_psr_debugfs(int fd) * Legacy mode will return OK here, debugfs api will return -EINVAL. * -ENODEV is returned when PSR is unavailable. */ - ret = psr_write(fd, "0xf"); + ret = psr_write(debugfs_fd, "0xf"); if (ret == -EINVAL) return 0; else if (ret < 0) return ret; /* legacy debugfs api, we enabled irqs by writing, disable them. */ - psr_write(fd, "0"); + psr_write(debugfs_fd, "0"); return -EINVAL; } @@ -86,11 +88,11 @@ static void restore_psr_debugfs(int sig) psr_write(psr_restore_debugfs_fd, "0"); } -static bool psr_set(int fd, bool enable) +static bool psr_set(int debugfs_fd, bool enable) { int ret; - ret = has_psr_debugfs(fd); + ret = has_psr_debugfs(debugfs_fd); if (ret == -ENODEV) { igt_skip_on_f(enable, "PSR not available\n"); return false; @@ -99,13 +101,13 @@ static bool psr_set(int fd, bool enable) if (ret == -EINVAL) { ret = psr_modparam_set(enable); } else { - ret = psr_write(fd, enable ? "0x3" : "0x1"); + ret = psr_write(debugfs_fd, enable ? "0x3" : "0x1"); igt_assert(ret > 0); } /* Restore original value on exit */ if (psr_restore_debugfs_fd == -1) { - psr_restore_debugfs_fd = dup(fd); + psr_restore_debugfs_fd = dup(debugfs_fd); igt_assert(psr_restore_debugfs_fd >= 0); igt_install_exit_handler(restore_psr_debugfs); } @@ -113,12 +115,12 @@ static bool psr_set(int fd, bool enable) return ret; } -bool psr_enable(int fd) +bool psr_enable(int debugfs_fd) { - return psr_set(fd, true); + return psr_set(debugfs_fd, true); } -bool psr_disable(int fd) +bool psr_disable(int debugfs_fd) { - return psr_set(fd, false); + return psr_set(debugfs_fd, false); } diff --git a/lib/igt_psr.h b/lib/igt_psr.h index 0ef22c3d..7c846afb 100644 --- a/lib/igt_psr.h +++ b/lib/igt_psr.h @@ -28,9 +28,9 @@ #include "igt_core.h" #include "igt_aux.h" -bool psr_wait_entry(int fd); -bool psr_active(int fd, bool check_active); -bool psr_enable(int fd); -bool psr_disable(int fd); +bool psr_wait_entry(int debugfs_fd); +bool psr_active(int debugfs_fd, bool check_active); +bool psr_enable(int debugfs_fd); +bool psr_disable(int debugfs_fd); #endif -- 2.19.0 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] [PATCH i-g-t v2 3/3] test/kms_fbcon_fbt: Give a explicit parameter name to functions that expect debugfs fd 2018-09-20 17:59 [igt-dev] [PATCH i-g-t v2 1/3] tests/kms_frontbuffer_tracking: Pass the debugfs fd to psr_wait_entry() José Roberto de Souza 2018-09-20 17:59 ` [igt-dev] [PATCH i-g-t v2 2/3] lib/igt_psr: Give a explicit parameter name to functions that expect debugfs fd José Roberto de Souza @ 2018-09-20 17:59 ` José Roberto de Souza 2018-09-20 18:26 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v2,1/3] tests/kms_frontbuffer_tracking: Pass the debugfs fd to psr_wait_entry() Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: José Roberto de Souza @ 2018-09-20 17:59 UTC (permalink / raw) To: igt-dev Let's rename to debugfs_fd all the parameters of the functions that expect debugfs fd to avoid call one those functions with the wrong file descriptor. v2: - Fixing code style - Renaming fbc_wait_until_enabled() too Reviewed-by: Dhinakaran Pandiyan <dhinakaran.pandiyan@intel.com> Signed-off-by: José Roberto de Souza <jose.souza@intel.com> --- tests/kms_fbcon_fbt.c | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/tests/kms_fbcon_fbt.c b/tests/kms_fbcon_fbt.c index 138eda9b..8de3da83 100644 --- a/tests/kms_fbcon_fbt.c +++ b/tests/kms_fbcon_fbt.c @@ -121,10 +121,10 @@ static bool fbc_is_enabled(int debugfs_fd) return strstr(buf, "FBC enabled\n"); } -static bool fbc_wait_until_enabled(int fd) +static bool fbc_wait_until_enabled(int debugfs_fd) { - bool r = igt_wait(fbc_is_enabled(fd), 5000, 1); - fbc_print_status(fd); + bool r = igt_wait(fbc_is_enabled(debugfs_fd), 5000, 1); + fbc_print_status(debugfs_fd); return r; } @@ -203,34 +203,35 @@ static bool psr_is_enabled(int debugfs_fd) return strstr(buf, "\nHW Enabled & Active bit: yes\n"); } -static bool psr_wait_until_enabled(int fd) +static bool psr_wait_until_enabled(int debugfs_fd) { - bool r = igt_wait(psr_is_enabled(fd), 5000, 1); - psr_print_status(fd); + bool r = igt_wait(psr_is_enabled(debugfs_fd), 5000, 1); + + psr_print_status(debugfs_fd); return r; } -static void disable_features(int fd) +static void disable_features(int debugfs_fd) { igt_set_module_param_int("enable_fbc", 0); - psr_disable(fd); + psr_disable(debugfs_fd); } -static inline void fbc_modparam_enable(int fd) +static inline void fbc_modparam_enable(int debugfs_fd) { igt_set_module_param_int("enable_fbc", 1); } -static inline void psr_debugfs_enable(int fd) +static inline void psr_debugfs_enable(int debugfs_fd) { - psr_enable(fd); + psr_enable(debugfs_fd); } struct feature { - bool (*supported_on_chipset)(int fd); - bool (*wait_until_enabled)(int fd); + bool (*supported_on_chipset)(int debugfs_fd); + bool (*wait_until_enabled)(int debugfs_fd); bool (*connector_possible_fn)(drmModeConnectorPtr connector); - void (*enable)(int fd); + void (*enable)(int debugfs_fd); } fbc = { .supported_on_chipset = fbc_supported_on_chipset, .wait_until_enabled = fbc_wait_until_enabled, -- 2.19.0 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v2,1/3] tests/kms_frontbuffer_tracking: Pass the debugfs fd to psr_wait_entry() 2018-09-20 17:59 [igt-dev] [PATCH i-g-t v2 1/3] tests/kms_frontbuffer_tracking: Pass the debugfs fd to psr_wait_entry() José Roberto de Souza 2018-09-20 17:59 ` [igt-dev] [PATCH i-g-t v2 2/3] lib/igt_psr: Give a explicit parameter name to functions that expect debugfs fd José Roberto de Souza 2018-09-20 17:59 ` [igt-dev] [PATCH i-g-t v2 3/3] test/kms_fbcon_fbt: " José Roberto de Souza @ 2018-09-20 18:26 ` Patchwork 2018-09-20 21:51 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2018-09-20 18:26 UTC (permalink / raw) To: Souza, Jose; +Cc: igt-dev == Series Details == Series: series starting with [i-g-t,v2,1/3] tests/kms_frontbuffer_tracking: Pass the debugfs fd to psr_wait_entry() URL : https://patchwork.freedesktop.org/series/49980/ State : success == Summary == = CI Bug Log - changes from CI_DRM_4844 -> IGTPW_1861 = == Summary - WARNING == Minor unknown changes coming with IGTPW_1861 need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_1861, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://patchwork.freedesktop.org/api/1.0/series/49980/revisions/1/mbox/ == Possible new issues == Here are the unknown changes that may have been introduced in IGTPW_1861: === IGT changes === ==== Warnings ==== igt@pm_rpm@module-reload: fi-hsw-4770r: SKIP -> PASS == Known issues == Here are the changes found in IGTPW_1861 that come from known issues: === IGT changes === ==== Issues hit ==== igt@gem_exec_suspend@basic-s3: fi-bdw-samus: PASS -> INCOMPLETE (fdo#107773) igt@kms_frontbuffer_tracking@basic: fi-byt-clapper: PASS -> FAIL (fdo#103167) igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: fi-byt-clapper: PASS -> FAIL (fdo#103191, fdo#107362) ==== Possible fixes ==== igt@drv_module_reload@basic-reload: fi-glk-j4005: DMESG-WARN (fdo#106725, fdo#106248) -> PASS igt@drv_module_reload@basic-reload-inject: fi-hsw-4770r: DMESG-WARN (fdo#107924, fdo#107425) -> PASS igt@drv_selftest@mock_hugepages: fi-bwr-2160: DMESG-FAIL (fdo#107930) -> PASS igt@gem_exec_suspend@basic-s4-devices: fi-kbl-7500u: DMESG-WARN (fdo#105128, fdo#107139) -> PASS igt@kms_flip@basic-flip-vs-modeset: fi-glk-j4005: DMESG-WARN (fdo#106000) -> PASS fi-skl-6700hq: DMESG-WARN (fdo#105998) -> PASS igt@kms_psr@primary_mmap_gtt: fi-cnl-u: FAIL (fdo#107383) -> PASS +3 igt@pm_rpm@module-reload: fi-glk-j4005: DMESG-WARN (fdo#107726) -> PASS fdo#103167 https://bugs.freedesktop.org/show_bug.cgi?id=103167 fdo#103191 https://bugs.freedesktop.org/show_bug.cgi?id=103191 fdo#105128 https://bugs.freedesktop.org/show_bug.cgi?id=105128 fdo#105998 https://bugs.freedesktop.org/show_bug.cgi?id=105998 fdo#106000 https://bugs.freedesktop.org/show_bug.cgi?id=106000 fdo#106248 https://bugs.freedesktop.org/show_bug.cgi?id=106248 fdo#106725 https://bugs.freedesktop.org/show_bug.cgi?id=106725 fdo#107139 https://bugs.freedesktop.org/show_bug.cgi?id=107139 fdo#107362 https://bugs.freedesktop.org/show_bug.cgi?id=107362 fdo#107383 https://bugs.freedesktop.org/show_bug.cgi?id=107383 fdo#107425 https://bugs.freedesktop.org/show_bug.cgi?id=107425 fdo#107726 https://bugs.freedesktop.org/show_bug.cgi?id=107726 fdo#107773 https://bugs.freedesktop.org/show_bug.cgi?id=107773 fdo#107924 https://bugs.freedesktop.org/show_bug.cgi?id=107924 fdo#107930 https://bugs.freedesktop.org/show_bug.cgi?id=107930 == Participating hosts (52 -> 47) == Additional (1): fi-gdg-551 Missing (6): fi-ilk-m540 fi-hsw-4200u fi-byt-j1900 fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 == Build changes == * IGT: IGT_4646 -> IGTPW_1861 CI_DRM_4844: 73c0da2189956c18a0fff343bd84eb0493f81db1 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_1861: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1861/ IGT_4646: d409cc6f234fbc0122c64be27ba85b5603658de5 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1861/issues.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,v2,1/3] tests/kms_frontbuffer_tracking: Pass the debugfs fd to psr_wait_entry() 2018-09-20 17:59 [igt-dev] [PATCH i-g-t v2 1/3] tests/kms_frontbuffer_tracking: Pass the debugfs fd to psr_wait_entry() José Roberto de Souza ` (2 preceding siblings ...) 2018-09-20 18:26 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v2,1/3] tests/kms_frontbuffer_tracking: Pass the debugfs fd to psr_wait_entry() Patchwork @ 2018-09-20 21:51 ` Patchwork 2018-09-20 23:05 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2018-09-21 3:40 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2018-09-20 21:51 UTC (permalink / raw) To: José Roberto de Souza; +Cc: igt-dev == Series Details == Series: series starting with [i-g-t,v2,1/3] tests/kms_frontbuffer_tracking: Pass the debugfs fd to psr_wait_entry() URL : https://patchwork.freedesktop.org/series/49980/ State : success == Summary == = CI Bug Log - changes from IGT_4646_full -> IGTPW_1861_full = == Summary - SUCCESS == No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/49980/revisions/1/mbox/ == Known issues == Here are the changes found in IGTPW_1861_full that come from known issues: === IGT changes === ==== Issues hit ==== igt@gem_render_linear_blits@basic: shard-kbl: PASS -> INCOMPLETE (fdo#103665) igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-b: shard-glk: PASS -> DMESG-WARN (fdo#107956) igt@kms_draw_crc@draw-method-xrgb2101010-render-ytiled: shard-glk: PASS -> FAIL (fdo#103184) igt@kms_setmode@basic: shard-apl: PASS -> FAIL (fdo#99912) ==== Possible fixes ==== igt@drv_selftest@live_contexts: shard-glk: DMESG-FAIL (fdo#107979) -> PASS igt@gem_userptr_blits@readonly-pwrite-unsync: shard-glk: DMESG-WARN (fdo#106538, fdo#105763) -> PASS igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-a: shard-glk: DMESG-WARN (fdo#107956) -> PASS igt@kms_chv_cursor_fail@pipe-a-64x64-bottom-edge: shard-glk: FAIL (fdo#104671) -> PASS igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: shard-glk: FAIL (fdo#106509, fdo#105454) -> PASS igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-xtiled: shard-glk: FAIL (fdo#103184) -> PASS igt@kms_flip@2x-plain-flip-ts-check-interruptible: shard-glk: FAIL (fdo#100368) -> PASS igt@kms_flip@flip-vs-expired-vblank-interruptible: shard-glk: FAIL (fdo#105363) -> PASS igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt: shard-glk: FAIL (fdo#103167) -> PASS fdo#100368 https://bugs.freedesktop.org/show_bug.cgi?id=100368 fdo#103167 https://bugs.freedesktop.org/show_bug.cgi?id=103167 fdo#103184 https://bugs.freedesktop.org/show_bug.cgi?id=103184 fdo#103665 https://bugs.freedesktop.org/show_bug.cgi?id=103665 fdo#104671 https://bugs.freedesktop.org/show_bug.cgi?id=104671 fdo#105363 https://bugs.freedesktop.org/show_bug.cgi?id=105363 fdo#105454 https://bugs.freedesktop.org/show_bug.cgi?id=105454 fdo#105763 https://bugs.freedesktop.org/show_bug.cgi?id=105763 fdo#106509 https://bugs.freedesktop.org/show_bug.cgi?id=106509 fdo#106538 https://bugs.freedesktop.org/show_bug.cgi?id=106538 fdo#107956 https://bugs.freedesktop.org/show_bug.cgi?id=107956 fdo#107979 https://bugs.freedesktop.org/show_bug.cgi?id=107979 fdo#99912 https://bugs.freedesktop.org/show_bug.cgi?id=99912 == Participating hosts (5 -> 5) == No changes in participating hosts == Build changes == * IGT: IGT_4646 -> IGTPW_1861 * Linux: CI_DRM_4836 -> CI_DRM_4844 CI_DRM_4836: b2b0444aa439ade1ed809a91a19d382fbb5e7700 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_4844: 73c0da2189956c18a0fff343bd84eb0493f81db1 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_1861: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1861/ IGT_4646: d409cc6f234fbc0122c64be27ba85b5603658de5 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1861/shards.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v2,1/3] tests/kms_frontbuffer_tracking: Pass the debugfs fd to psr_wait_entry() 2018-09-20 17:59 [igt-dev] [PATCH i-g-t v2 1/3] tests/kms_frontbuffer_tracking: Pass the debugfs fd to psr_wait_entry() José Roberto de Souza ` (3 preceding siblings ...) 2018-09-20 21:51 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork @ 2018-09-20 23:05 ` Patchwork 2018-09-21 3:40 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2018-09-20 23:05 UTC (permalink / raw) To: Souza, Jose; +Cc: igt-dev == Series Details == Series: series starting with [i-g-t,v2,1/3] tests/kms_frontbuffer_tracking: Pass the debugfs fd to psr_wait_entry() URL : https://patchwork.freedesktop.org/series/49980/ State : success == Summary == = CI Bug Log - changes from CI_DRM_4844 -> IGTPW_1862 = == Summary - WARNING == Minor unknown changes coming with IGTPW_1862 need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_1862, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://patchwork.freedesktop.org/api/1.0/series/49980/revisions/1/mbox/ == Possible new issues == Here are the unknown changes that may have been introduced in IGTPW_1862: === IGT changes === ==== Warnings ==== igt@pm_rpm@module-reload: fi-hsw-4770r: SKIP -> PASS == Known issues == Here are the changes found in IGTPW_1862 that come from known issues: === IGT changes === ==== Issues hit ==== igt@drv_selftest@live_hangcheck: fi-kbl-guc: PASS -> INCOMPLETE (fdo#106693) igt@gem_exec_suspend@basic-s3: fi-blb-e6850: PASS -> INCOMPLETE (fdo#107718) igt@kms_pipe_crc_basic@nonblocking-crc-pipe-a-frame-sequence: fi-byt-clapper: PASS -> FAIL (fdo#103191, fdo#107362) igt@kms_pipe_crc_basic@read-crc-pipe-a: fi-byt-clapper: PASS -> FAIL (fdo#107362) igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b: fi-bdw-samus: PASS -> INCOMPLETE (fdo#107773) ==== Possible fixes ==== igt@drv_module_reload@basic-reload: fi-glk-j4005: DMESG-WARN (fdo#106248, fdo#106725) -> PASS igt@drv_module_reload@basic-reload-inject: fi-hsw-4770r: DMESG-WARN (fdo#107924, fdo#107425) -> PASS igt@drv_selftest@mock_hugepages: fi-bwr-2160: DMESG-FAIL (fdo#107930) -> PASS igt@gem_exec_suspend@basic-s4-devices: fi-kbl-7500u: DMESG-WARN (fdo#107139, fdo#105128) -> PASS igt@kms_flip@basic-flip-vs-modeset: fi-glk-j4005: DMESG-WARN (fdo#106000) -> PASS fi-skl-6700hq: DMESG-WARN (fdo#105998) -> PASS igt@kms_psr@primary_mmap_gtt: fi-cnl-u: FAIL (fdo#107383) -> PASS +3 igt@pm_rpm@module-reload: fi-glk-j4005: DMESG-WARN (fdo#107726) -> PASS fdo#103191 https://bugs.freedesktop.org/show_bug.cgi?id=103191 fdo#105128 https://bugs.freedesktop.org/show_bug.cgi?id=105128 fdo#105998 https://bugs.freedesktop.org/show_bug.cgi?id=105998 fdo#106000 https://bugs.freedesktop.org/show_bug.cgi?id=106000 fdo#106248 https://bugs.freedesktop.org/show_bug.cgi?id=106248 fdo#106693 https://bugs.freedesktop.org/show_bug.cgi?id=106693 fdo#106725 https://bugs.freedesktop.org/show_bug.cgi?id=106725 fdo#107139 https://bugs.freedesktop.org/show_bug.cgi?id=107139 fdo#107362 https://bugs.freedesktop.org/show_bug.cgi?id=107362 fdo#107383 https://bugs.freedesktop.org/show_bug.cgi?id=107383 fdo#107425 https://bugs.freedesktop.org/show_bug.cgi?id=107425 fdo#107718 https://bugs.freedesktop.org/show_bug.cgi?id=107718 fdo#107726 https://bugs.freedesktop.org/show_bug.cgi?id=107726 fdo#107773 https://bugs.freedesktop.org/show_bug.cgi?id=107773 fdo#107924 https://bugs.freedesktop.org/show_bug.cgi?id=107924 fdo#107930 https://bugs.freedesktop.org/show_bug.cgi?id=107930 == Participating hosts (52 -> 47) == Additional (1): fi-gdg-551 Missing (6): fi-ilk-m540 fi-hsw-4200u fi-byt-j1900 fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 == Build changes == * IGT: IGT_4646 -> IGTPW_1862 CI_DRM_4844: 73c0da2189956c18a0fff343bd84eb0493f81db1 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_1862: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1862/ IGT_4646: d409cc6f234fbc0122c64be27ba85b5603658de5 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1862/issues.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,v2,1/3] tests/kms_frontbuffer_tracking: Pass the debugfs fd to psr_wait_entry() 2018-09-20 17:59 [igt-dev] [PATCH i-g-t v2 1/3] tests/kms_frontbuffer_tracking: Pass the debugfs fd to psr_wait_entry() José Roberto de Souza ` (4 preceding siblings ...) 2018-09-20 23:05 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork @ 2018-09-21 3:40 ` Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2018-09-21 3:40 UTC (permalink / raw) To: José Roberto de Souza; +Cc: igt-dev == Series Details == Series: series starting with [i-g-t,v2,1/3] tests/kms_frontbuffer_tracking: Pass the debugfs fd to psr_wait_entry() URL : https://patchwork.freedesktop.org/series/49980/ State : success == Summary == = CI Bug Log - changes from IGT_4646_full -> IGTPW_1862_full = == Summary - WARNING == Minor unknown changes coming with IGTPW_1862_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_1862_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://patchwork.freedesktop.org/api/1.0/series/49980/revisions/1/mbox/ == Possible new issues == Here are the unknown changes that may have been introduced in IGTPW_1862_full: === IGT changes === ==== Warnings ==== igt@perf_pmu@rc6: shard-kbl: PASS -> SKIP == Known issues == Here are the changes found in IGTPW_1862_full that come from known issues: === IGT changes === ==== Issues hit ==== igt@gem_exec_await@wide-contexts: shard-apl: PASS -> FAIL (fdo#100007) igt@kms_atomic_transition@1x-modeset-transitions-nonblocking: shard-apl: PASS -> DMESG-WARN (fdo#105602, fdo#103558) +5 igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-b: shard-glk: PASS -> DMESG-WARN (fdo#107956) igt@kms_plane@pixel-format-pipe-a-planes: shard-snb: PASS -> FAIL (fdo#107749, fdo#103166) igt@prime_busy@hang-bsd: shard-glk: PASS -> INCOMPLETE (fdo#103359, k.org#198133) ==== Possible fixes ==== igt@drv_selftest@live_contexts: shard-glk: DMESG-FAIL (fdo#107979) -> PASS igt@gem_userptr_blits@readonly-pwrite-unsync: shard-glk: DMESG-WARN (fdo#106538, fdo#105763) -> PASS +1 igt@kms_chv_cursor_fail@pipe-a-64x64-bottom-edge: shard-glk: FAIL (fdo#104671) -> PASS igt@kms_draw_crc@draw-method-xrgb2101010-mmap-gtt-xtiled: shard-glk: FAIL (fdo#103184) -> PASS igt@kms_fbcon_fbt@fbc-suspend: shard-snb: DMESG-WARN (fdo#102365) -> PASS igt@kms_flip@2x-plain-flip-ts-check-interruptible: shard-glk: FAIL (fdo#100368) -> PASS igt@kms_flip@flip-vs-expired-vblank-interruptible: shard-glk: FAIL (fdo#105363) -> PASS igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack: shard-snb: INCOMPLETE (fdo#105411) -> PASS igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt: shard-glk: FAIL (fdo#103167) -> PASS igt@kms_plane_multiple@atomic-pipe-a-tiling-x: shard-snb: FAIL (fdo#103166) -> PASS igt@kms_setmode@basic: shard-hsw: FAIL (fdo#99912) -> PASS fdo#100007 https://bugs.freedesktop.org/show_bug.cgi?id=100007 fdo#100368 https://bugs.freedesktop.org/show_bug.cgi?id=100368 fdo#102365 https://bugs.freedesktop.org/show_bug.cgi?id=102365 fdo#103166 https://bugs.freedesktop.org/show_bug.cgi?id=103166 fdo#103167 https://bugs.freedesktop.org/show_bug.cgi?id=103167 fdo#103184 https://bugs.freedesktop.org/show_bug.cgi?id=103184 fdo#103359 https://bugs.freedesktop.org/show_bug.cgi?id=103359 fdo#103558 https://bugs.freedesktop.org/show_bug.cgi?id=103558 fdo#104671 https://bugs.freedesktop.org/show_bug.cgi?id=104671 fdo#105363 https://bugs.freedesktop.org/show_bug.cgi?id=105363 fdo#105411 https://bugs.freedesktop.org/show_bug.cgi?id=105411 fdo#105602 https://bugs.freedesktop.org/show_bug.cgi?id=105602 fdo#105763 https://bugs.freedesktop.org/show_bug.cgi?id=105763 fdo#106538 https://bugs.freedesktop.org/show_bug.cgi?id=106538 fdo#107749 https://bugs.freedesktop.org/show_bug.cgi?id=107749 fdo#107956 https://bugs.freedesktop.org/show_bug.cgi?id=107956 fdo#107979 https://bugs.freedesktop.org/show_bug.cgi?id=107979 fdo#99912 https://bugs.freedesktop.org/show_bug.cgi?id=99912 k.org#198133 https://bugzilla.kernel.org/show_bug.cgi?id=198133 == Participating hosts (5 -> 5) == No changes in participating hosts == Build changes == * IGT: IGT_4646 -> IGTPW_1862 * Linux: CI_DRM_4836 -> CI_DRM_4844 CI_DRM_4836: b2b0444aa439ade1ed809a91a19d382fbb5e7700 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_4844: 73c0da2189956c18a0fff343bd84eb0493f81db1 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_1862: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1862/ IGT_4646: d409cc6f234fbc0122c64be27ba85b5603658de5 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1862/shards.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2018-09-21 3:40 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2018-09-20 17:59 [igt-dev] [PATCH i-g-t v2 1/3] tests/kms_frontbuffer_tracking: Pass the debugfs fd to psr_wait_entry() José Roberto de Souza 2018-09-20 17:59 ` [igt-dev] [PATCH i-g-t v2 2/3] lib/igt_psr: Give a explicit parameter name to functions that expect debugfs fd José Roberto de Souza 2018-09-20 17:59 ` [igt-dev] [PATCH i-g-t v2 3/3] test/kms_fbcon_fbt: " José Roberto de Souza 2018-09-20 18:26 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v2,1/3] tests/kms_frontbuffer_tracking: Pass the debugfs fd to psr_wait_entry() Patchwork 2018-09-20 21:51 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2018-09-20 23:05 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2018-09-21 3:40 ` [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; as well as URLs for NNTP newsgroup(s).