public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] lib/igt_chamelium: wait for worker thread to finish
@ 2019-06-05 10:36 Simon Ser
  2019-06-05 11:51 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork
                   ` (6 more replies)
  0 siblings, 7 replies; 10+ messages in thread
From: Simon Ser @ 2019-06-05 10:36 UTC (permalink / raw)
  To: igt-dev; +Cc: martin.peres

Whenever we change a pipe's resolution, we need to perform a FSM on the
Chamelium: the video receiver will be restarted and the Chamelium device will
send a hotplug event. All of this happens during the XML-RPC call.

To handle the hotplug event, we start a new thread (and execute the XML-RPC
request in the main thread in a blocking fashion). Some state is associated
with the hotplug thread and stored in fsm_monitor_args. We initialize this
state before starting the thread, and perform cleanup after cancelling it.

However pthread_cancel is asynchronous: it merely queues a cancellation request
for the thread. Thus cleaning up after pthread_cancel is racy: the thread might
still be running and using fsm_monitor_args.mon. Since this is shared memory,
this can lead to segmentation faults or strange behaviour.

This commit fixes the race by calling pthread_join before cleaning up the
state. This ensures that either the thread has been successfully cancelled,
either it has terminated.

This is an attempt to fix this bug:
https://bugs.freedesktop.org/show_bug.cgi?id=110730

Signed-off-by: Simon Ser <simon.ser@intel.com>
---
 lib/igt_chamelium.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/igt_chamelium.c b/lib/igt_chamelium.c
index 75f03d8469aa..eaf3b5b07097 100644
--- a/lib/igt_chamelium.c
+++ b/lib/igt_chamelium.c
@@ -302,6 +302,7 @@ static xmlrpc_value *__chamelium_rpc_va(struct chamelium *chamelium,

 	if (fsm_port) {
 		pthread_cancel(fsm_thread_id);
+		pthread_join(fsm_thread_id, NULL);
 		igt_cleanup_hotplug(monitor_args.mon);
 	}

--
2.21.0

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [igt-dev] ✗ Fi.CI.BAT: failure for lib/igt_chamelium: wait for worker thread to finish
  2019-06-05 10:36 [igt-dev] [PATCH i-g-t] lib/igt_chamelium: wait for worker thread to finish Simon Ser
@ 2019-06-05 11:51 ` Patchwork
  2019-06-05 12:03   ` Ser, Simon
  2019-06-05 15:47 ` [igt-dev] [PATCH i-g-t] " Arkadiusz Hiler
                   ` (5 subsequent siblings)
  6 siblings, 1 reply; 10+ messages in thread
From: Patchwork @ 2019-06-05 11:51 UTC (permalink / raw)
  To: Simon Ser; +Cc: igt-dev

== Series Details ==

Series: lib/igt_chamelium: wait for worker thread to finish
URL   : https://patchwork.freedesktop.org/series/61648/
State : failure

== Summary ==

CI Bug Log - changes from IGT_5039 -> IGTPW_3115
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_3115 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_3115, 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/61648/revisions/1/mbox/

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in IGTPW_3115:

### IGT changes ###

#### Possible regressions ####

  * igt@i915_module_load@reload-with-fault-injection:
    - fi-icl-u3:          [PASS][1] -> [WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5039/fi-icl-u3/igt@i915_module_load@reload-with-fault-injection.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3115/fi-icl-u3/igt@i915_module_load@reload-with-fault-injection.html

  * igt@i915_selftest@live_contexts:
    - fi-icl-u3:          [PASS][3] -> [SKIP][4] +18 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5039/fi-icl-u3/igt@i915_selftest@live_contexts.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3115/fi-icl-u3/igt@i915_selftest@live_contexts.html

  * igt@i915_selftest@live_hangcheck:
    - fi-kbl-7567u:       [PASS][5] -> [DMESG-FAIL][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5039/fi-kbl-7567u/igt@i915_selftest@live_hangcheck.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3115/fi-kbl-7567u/igt@i915_selftest@live_hangcheck.html

  
#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * {igt@i915_selftest@live_blt}:
    - fi-icl-u3:          [PASS][7] -> [SKIP][8] +2 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5039/fi-icl-u3/igt@i915_selftest@live_blt.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3115/fi-icl-u3/igt@i915_selftest@live_blt.html

  
Known issues
------------

  Here are the changes found in IGTPW_3115 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@i915_module_load@reload-no-display:
    - fi-icl-u3:          [PASS][9] -> [DMESG-WARN][10] ([fdo#107724])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5039/fi-icl-u3/igt@i915_module_load@reload-no-display.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3115/fi-icl-u3/igt@i915_module_load@reload-no-display.html

  * igt@i915_selftest@live_requests:
    - fi-icl-u3:          [PASS][11] -> [SKIP][12] ([fdo#109644] / [fdo#110464])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5039/fi-icl-u3/igt@i915_selftest@live_requests.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3115/fi-icl-u3/igt@i915_selftest@live_requests.html

  * igt@kms_frontbuffer_tracking@basic:
    - fi-icl-u2:          [PASS][13] -> [FAIL][14] ([fdo#103167])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5039/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3115/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html

  
#### Possible fixes ####

  * igt@core_auth@basic-auth:
    - fi-icl-u3:          [DMESG-WARN][15] ([fdo#107724]) -> [PASS][16]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5039/fi-icl-u3/igt@core_auth@basic-auth.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3115/fi-icl-u3/igt@core_auth@basic-auth.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#109644]: https://bugs.freedesktop.org/show_bug.cgi?id=109644
  [fdo#110464]: https://bugs.freedesktop.org/show_bug.cgi?id=110464


Participating hosts (55 -> 45)
------------------------------

  Missing    (10): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-gdg-551 fi-kbl-7560u fi-byt-clapper fi-bdw-samus fi-kbl-r 


Build changes
-------------

  * IGT: IGT_5039 -> IGTPW_3115

  CI_DRM_6194: 10a75edfc43885387e1e9e2bc50f9678e9bf59d6 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3115: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3115/
  IGT_5039: 2d4f470bba1cb51ed116fb80b170f717c6294714 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3115/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [igt-dev] ✗ Fi.CI.BAT: failure for lib/igt_chamelium: wait for worker thread to finish
  2019-06-05 11:51 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork
@ 2019-06-05 12:03   ` Ser, Simon
  0 siblings, 0 replies; 10+ messages in thread
From: Ser, Simon @ 2019-06-05 12:03 UTC (permalink / raw)
  To: igt-dev@lists.freedesktop.org, martin.peres@linux.intel.com

On Wed, 2019-06-05 at 11:51 +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: lib/igt_chamelium: wait for worker thread to finish
> URL   : https://patchwork.freedesktop.org/series/61648/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from IGT_5039 -> IGTPW_3115
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_3115 absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_3115, 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/61648/revisions/1/mbox/
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_3115:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_module_load@reload-with-fault-injection:
>     - fi-icl-u3:          [PASS][1] -> [WARN][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5039/fi-icl-u3/igt@i915_module_load@reload-with-fault-injection.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3115/fi-icl-u3/igt@i915_module_load@reload-with-fault-injection.html
> 
>   * igt@i915_selftest@live_contexts:
>     - fi-icl-u3:          [PASS][3] -> [SKIP][4] +18 similar issues
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5039/fi-icl-u3/igt@i915_selftest@live_contexts.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3115/fi-icl-u3/igt@i915_selftest@live_contexts.html
> 
>   * igt@i915_selftest@live_hangcheck:
>     - fi-kbl-7567u:       [PASS][5] -> [DMESG-FAIL][6]
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5039/fi-kbl-7567u/igt@i915_selftest@live_hangcheck.html
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3115/fi-kbl-7567u/igt@i915_selftest@live_hangcheck.html

Cc Martin

>   
> #### Suppressed ####
> 
>   The following results come from untrusted machines, tests, or statuses.
>   They do not affect the overall result.
> 
>   * {igt@i915_selftest@live_blt}:
>     - fi-icl-u3:          [PASS][7] -> [SKIP][8] +2 similar issues
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5039/fi-icl-u3/igt@i915_selftest@live_blt.html
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3115/fi-icl-u3/igt@i915_selftest@live_blt.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_3115 that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@i915_module_load@reload-no-display:
>     - fi-icl-u3:          [PASS][9] -> [DMESG-WARN][10] ([fdo#107724])
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5039/fi-icl-u3/igt@i915_module_load@reload-no-display.html
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3115/fi-icl-u3/igt@i915_module_load@reload-no-display.html
> 
>   * igt@i915_selftest@live_requests:
>     - fi-icl-u3:          [PASS][11] -> [SKIP][12] ([fdo#109644] / [fdo#110464])
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5039/fi-icl-u3/igt@i915_selftest@live_requests.html
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3115/fi-icl-u3/igt@i915_selftest@live_requests.html
> 
>   * igt@kms_frontbuffer_tracking@basic:
>     - fi-icl-u2:          [PASS][13] -> [FAIL][14] ([fdo#103167])
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5039/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3115/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@core_auth@basic-auth:
>     - fi-icl-u3:          [DMESG-WARN][15] ([fdo#107724]) -> [PASS][16]
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5039/fi-icl-u3/igt@core_auth@basic-auth.html
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3115/fi-icl-u3/igt@core_auth@basic-auth.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
>   [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
>   [fdo#109644]: https://bugs.freedesktop.org/show_bug.cgi?id=109644
>   [fdo#110464]: https://bugs.freedesktop.org/show_bug.cgi?id=110464
> 
> 
> Participating hosts (55 -> 45)
> ------------------------------
> 
>   Missing    (10): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-gdg-551 fi-kbl-7560u fi-byt-clapper fi-bdw-samus fi-kbl-r 
> 
> 
> Build changes
> -------------
> 
>   * IGT: IGT_5039 -> IGTPW_3115
> 
>   CI_DRM_6194: 10a75edfc43885387e1e9e2bc50f9678e9bf59d6 @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_3115: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3115/
>   IGT_5039: 2d4f470bba1cb51ed116fb80b170f717c6294714 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3115/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [igt-dev] [PATCH i-g-t] lib/igt_chamelium: wait for worker thread to finish
  2019-06-05 10:36 [igt-dev] [PATCH i-g-t] lib/igt_chamelium: wait for worker thread to finish Simon Ser
  2019-06-05 11:51 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork
@ 2019-06-05 15:47 ` Arkadiusz Hiler
  2019-06-05 16:44 ` [igt-dev] ✗ Fi.CI.BAT: failure for lib/igt_chamelium: wait for worker thread to finish (rev2) Patchwork
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Arkadiusz Hiler @ 2019-06-05 15:47 UTC (permalink / raw)
  To: Simon Ser; +Cc: igt-dev, martin.peres

On Wed, Jun 05, 2019 at 01:36:27PM +0300, Simon Ser wrote:
> Whenever we change a pipe's resolution, we need to perform a FSM on the
> Chamelium: the video receiver will be restarted and the Chamelium device will
> send a hotplug event. All of this happens during the XML-RPC call.
> 
> To handle the hotplug event, we start a new thread (and execute the XML-RPC
> request in the main thread in a blocking fashion). Some state is associated
> with the hotplug thread and stored in fsm_monitor_args. We initialize this
> state before starting the thread, and perform cleanup after cancelling it.
> 
> However pthread_cancel is asynchronous: it merely queues a cancellation request
> for the thread. Thus cleaning up after pthread_cancel is racy: the thread might
> still be running and using fsm_monitor_args.mon. Since this is shared memory,
> this can lead to segmentation faults or strange behaviour.
> 
> This commit fixes the race by calling pthread_join before cleaning up the
> state. This ensures that either the thread has been successfully cancelled,
> either it has terminated.
> 
> This is an attempt to fix this bug:
> https://bugs.freedesktop.org/show_bug.cgi?id=110730
> 
> Signed-off-by: Simon Ser <simon.ser@intel.com>
Reviewed-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [igt-dev] ✗ Fi.CI.BAT: failure for lib/igt_chamelium: wait for worker thread to finish (rev2)
  2019-06-05 10:36 [igt-dev] [PATCH i-g-t] lib/igt_chamelium: wait for worker thread to finish Simon Ser
  2019-06-05 11:51 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork
  2019-06-05 15:47 ` [igt-dev] [PATCH i-g-t] " Arkadiusz Hiler
@ 2019-06-05 16:44 ` Patchwork
  2019-06-06  7:05   ` Ser, Simon
  2019-06-06 13:50 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_chamelium: wait for worker thread to finish (rev3) Patchwork
                   ` (3 subsequent siblings)
  6 siblings, 1 reply; 10+ messages in thread
From: Patchwork @ 2019-06-05 16:44 UTC (permalink / raw)
  To: Ser, Simon; +Cc: igt-dev

== Series Details ==

Series: lib/igt_chamelium: wait for worker thread to finish (rev2)
URL   : https://patchwork.freedesktop.org/series/61648/
State : failure

== Summary ==

CI Bug Log - changes from IGT_5040 -> IGTPW_3121
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_3121 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_3121, 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/61648/revisions/2/mbox/

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in IGTPW_3121:

### IGT changes ###

#### Possible regressions ####

  * igt@i915_pm_rpm@module-reload:
    - fi-skl-6600u:       [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5040/fi-skl-6600u/igt@i915_pm_rpm@module-reload.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3121/fi-skl-6600u/igt@i915_pm_rpm@module-reload.html

  
Known issues
------------

  Here are the changes found in IGTPW_3121 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_create@basic-files:
    - fi-icl-y:           [PASS][3] -> [INCOMPLETE][4] ([fdo#107713] / [fdo#109100])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5040/fi-icl-y/igt@gem_ctx_create@basic-files.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3121/fi-icl-y/igt@gem_ctx_create@basic-files.html

  * igt@i915_selftest@live_sanitycheck:
    - fi-icl-u3:          [PASS][5] -> [DMESG-WARN][6] ([fdo#107724]) +1 similar issue
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5040/fi-icl-u3/igt@i915_selftest@live_sanitycheck.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3121/fi-icl-u3/igt@i915_selftest@live_sanitycheck.html

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-kbl-7500u:       [PASS][7] -> [FAIL][8] ([fdo#109485])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5040/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3121/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html

  
#### Possible fixes ####

  * igt@gem_exec_reloc@basic-softpin:
    - fi-icl-u3:          [DMESG-WARN][9] ([fdo#107724]) -> [PASS][10] +2 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5040/fi-icl-u3/igt@gem_exec_reloc@basic-softpin.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3121/fi-icl-u3/igt@gem_exec_reloc@basic-softpin.html

  * igt@gem_mmap_gtt@basic-small-bo-tiledy:
    - fi-elk-e7500:       [FAIL][11] -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5040/fi-elk-e7500/igt@gem_mmap_gtt@basic-small-bo-tiledy.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3121/fi-elk-e7500/igt@gem_mmap_gtt@basic-small-bo-tiledy.html

  * igt@kms_frontbuffer_tracking@basic:
    - fi-icl-u2:          [FAIL][13] ([fdo#103167]) -> [PASS][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5040/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3121/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html

  
#### Warnings ####

  * igt@gem_ctx_create@basic-files:
    - fi-pnv-d510:        [SKIP][15] ([fdo#109271]) -> [INCOMPLETE][16] ([fdo#110740])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5040/fi-pnv-d510/igt@gem_ctx_create@basic-files.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3121/fi-pnv-d510/igt@gem_ctx_create@basic-files.html

  
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109485]: https://bugs.freedesktop.org/show_bug.cgi?id=109485
  [fdo#110740]: https://bugs.freedesktop.org/show_bug.cgi?id=110740


Participating hosts (52 -> 44)
------------------------------

  Missing    (8): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-skl-6260u fi-whl-u fi-byt-clapper fi-bdw-samus 


Build changes
-------------

  * IGT: IGT_5040 -> IGTPW_3121

  CI_DRM_6195: 06b71939f2477c76f9eecb1dd5e99dcb25cb8371 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3121: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3121/
  IGT_5040: f190ab5dcd3fa52f4b47bc28c01bcfbbdc888826 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3121/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [igt-dev] ✗ Fi.CI.BAT: failure for lib/igt_chamelium: wait for worker thread to finish (rev2)
  2019-06-05 16:44 ` [igt-dev] ✗ Fi.CI.BAT: failure for lib/igt_chamelium: wait for worker thread to finish (rev2) Patchwork
@ 2019-06-06  7:05   ` Ser, Simon
  0 siblings, 0 replies; 10+ messages in thread
From: Ser, Simon @ 2019-06-06  7:05 UTC (permalink / raw)
  To: igt-dev@lists.freedesktop.org, martin.peres@linux.intel.com

On Wed, 2019-06-05 at 16:44 +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: lib/igt_chamelium: wait for worker thread to finish (rev2)
> URL   : https://patchwork.freedesktop.org/series/61648/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from IGT_5040 -> IGTPW_3121
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with IGTPW_3121 absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in IGTPW_3121, 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/61648/revisions/2/mbox/
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in IGTPW_3121:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@i915_pm_rpm@module-reload:
>     - fi-skl-6600u:       [PASS][1] -> [FAIL][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5040/fi-skl-6600u/igt@i915_pm_rpm@module-reload.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3121/fi-skl-6600u/igt@i915_pm_rpm@module-reload.html

Cc Martin

> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_3121 that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_ctx_create@basic-files:
>     - fi-icl-y:           [PASS][3] -> [INCOMPLETE][4] ([fdo#107713] / [fdo#109100])
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5040/fi-icl-y/igt@gem_ctx_create@basic-files.html
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3121/fi-icl-y/igt@gem_ctx_create@basic-files.html
> 
>   * igt@i915_selftest@live_sanitycheck:
>     - fi-icl-u3:          [PASS][5] -> [DMESG-WARN][6] ([fdo#107724]) +1 similar issue
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5040/fi-icl-u3/igt@i915_selftest@live_sanitycheck.html
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3121/fi-icl-u3/igt@i915_selftest@live_sanitycheck.html
> 
>   * igt@kms_chamelium@hdmi-hpd-fast:
>     - fi-kbl-7500u:       [PASS][7] -> [FAIL][8] ([fdo#109485])
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5040/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3121/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_exec_reloc@basic-softpin:
>     - fi-icl-u3:          [DMESG-WARN][9] ([fdo#107724]) -> [PASS][10] +2 similar issues
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5040/fi-icl-u3/igt@gem_exec_reloc@basic-softpin.html
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3121/fi-icl-u3/igt@gem_exec_reloc@basic-softpin.html
> 
>   * igt@gem_mmap_gtt@basic-small-bo-tiledy:
>     - fi-elk-e7500:       [FAIL][11] -> [PASS][12]
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5040/fi-elk-e7500/igt@gem_mmap_gtt@basic-small-bo-tiledy.html
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3121/fi-elk-e7500/igt@gem_mmap_gtt@basic-small-bo-tiledy.html
> 
>   * igt@kms_frontbuffer_tracking@basic:
>     - fi-icl-u2:          [FAIL][13] ([fdo#103167]) -> [PASS][14]
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5040/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3121/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html
> 
>   
> #### Warnings ####
> 
>   * igt@gem_ctx_create@basic-files:
>     - fi-pnv-d510:        [SKIP][15] ([fdo#109271]) -> [INCOMPLETE][16] ([fdo#110740])
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5040/fi-pnv-d510/igt@gem_ctx_create@basic-files.html
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3121/fi-pnv-d510/igt@gem_ctx_create@basic-files.html
> 
>   
>   [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
>   [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
>   [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
>   [fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100
>   [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   [fdo#109485]: https://bugs.freedesktop.org/show_bug.cgi?id=109485
>   [fdo#110740]: https://bugs.freedesktop.org/show_bug.cgi?id=110740
> 
> 
> Participating hosts (52 -> 44)
> ------------------------------
> 
>   Missing    (8): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-skl-6260u fi-whl-u fi-byt-clapper fi-bdw-samus 
> 
> 
> Build changes
> -------------
> 
>   * IGT: IGT_5040 -> IGTPW_3121
> 
>   CI_DRM_6195: 06b71939f2477c76f9eecb1dd5e99dcb25cb8371 @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_3121: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3121/
>   IGT_5040: f190ab5dcd3fa52f4b47bc28c01bcfbbdc888826 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3121/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_chamelium: wait for worker thread to finish (rev3)
  2019-06-05 10:36 [igt-dev] [PATCH i-g-t] lib/igt_chamelium: wait for worker thread to finish Simon Ser
                   ` (2 preceding siblings ...)
  2019-06-05 16:44 ` [igt-dev] ✗ Fi.CI.BAT: failure for lib/igt_chamelium: wait for worker thread to finish (rev2) Patchwork
@ 2019-06-06 13:50 ` Patchwork
  2019-06-06 15:30 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_chamelium: wait for worker thread to finish (rev4) Patchwork
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2019-06-06 13:50 UTC (permalink / raw)
  To: Simon Ser; +Cc: igt-dev

== Series Details ==

Series: lib/igt_chamelium: wait for worker thread to finish (rev3)
URL   : https://patchwork.freedesktop.org/series/61648/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_6206 -> IGTPW_3128
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/61648/revisions/3/mbox/

Known issues
------------

  Here are the changes found in IGTPW_3128 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_switch@basic-default:
    - fi-icl-u2:          [PASS][1] -> [INCOMPLETE][2] ([fdo#107713] / [fdo#108569])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6206/fi-icl-u2/igt@gem_ctx_switch@basic-default.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/fi-icl-u2/igt@gem_ctx_switch@basic-default.html

  * igt@gem_exec_create@basic:
    - fi-cml-u:           [PASS][3] -> [INCOMPLETE][4] ([fdo#110566])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6206/fi-cml-u/igt@gem_exec_create@basic.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/fi-cml-u/igt@gem_exec_create@basic.html

  * igt@i915_selftest@live_evict:
    - fi-bsw-kefka:       [PASS][5] -> [DMESG-WARN][6] ([fdo#107709])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6206/fi-bsw-kefka/igt@i915_selftest@live_evict.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/fi-bsw-kefka/igt@i915_selftest@live_evict.html

  
  [fdo#107709]: https://bugs.freedesktop.org/show_bug.cgi?id=107709
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
  [fdo#110566]: https://bugs.freedesktop.org/show_bug.cgi?id=110566


Participating hosts (55 -> 44)
------------------------------

  Missing    (11): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-icl-u3 fi-pnv-d510 fi-kbl-7560u fi-icl-dsi fi-bdw-samus 


Build changes
-------------

  * IGT: IGT_5043 -> IGTPW_3128

  CI_DRM_6206: 14ef563cbee376503d3551992d71f2f075e7462c @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3128: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/
  IGT_5043: 3e2b20817b68ab41377c1b86207a1e7309fc3779 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_chamelium: wait for worker thread to finish (rev4)
  2019-06-05 10:36 [igt-dev] [PATCH i-g-t] lib/igt_chamelium: wait for worker thread to finish Simon Ser
                   ` (3 preceding siblings ...)
  2019-06-06 13:50 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_chamelium: wait for worker thread to finish (rev3) Patchwork
@ 2019-06-06 15:30 ` Patchwork
  2019-06-08 16:21 ` [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_chamelium: wait for worker thread to finish (rev3) Patchwork
  2019-06-08 22:38 ` [igt-dev] ✓ Fi.CI.IGT: success for lib/igt_chamelium: wait for worker thread to finish (rev4) Patchwork
  6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2019-06-06 15:30 UTC (permalink / raw)
  To: Simon Ser; +Cc: igt-dev

== Series Details ==

Series: lib/igt_chamelium: wait for worker thread to finish (rev4)
URL   : https://patchwork.freedesktop.org/series/61648/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_6209 -> IGTPW_3129
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/61648/revisions/4/mbox/

Known issues
------------

  Here are the changes found in IGTPW_3129 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_frontbuffer_tracking@basic:
    - fi-icl-u3:          [PASS][1] -> [FAIL][2] ([fdo#103167])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6209/fi-icl-u3/igt@kms_frontbuffer_tracking@basic.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3129/fi-icl-u3/igt@kms_frontbuffer_tracking@basic.html

  * igt@vgem_basic@dmabuf-fence-before:
    - fi-icl-u3:          [PASS][3] -> [DMESG-WARN][4] ([fdo#107724])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6209/fi-icl-u3/igt@vgem_basic@dmabuf-fence-before.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3129/fi-icl-u3/igt@vgem_basic@dmabuf-fence-before.html

  
#### Possible fixes ####

  * igt@core_auth@basic-auth:
    - fi-icl-u3:          [DMESG-WARN][5] ([fdo#107724]) -> [PASS][6] +2 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6209/fi-icl-u3/igt@core_auth@basic-auth.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3129/fi-icl-u3/igt@core_auth@basic-auth.html

  * igt@gem_exec_create@basic:
    - {fi-icl-guc}:       [INCOMPLETE][7] ([fdo#107713]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6209/fi-icl-guc/igt@gem_exec_create@basic.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3129/fi-icl-guc/igt@gem_exec_create@basic.html

  * igt@kms_frontbuffer_tracking@basic:
    - fi-icl-dsi:         [FAIL][9] ([fdo#103167]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6209/fi-icl-dsi/igt@kms_frontbuffer_tracking@basic.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3129/fi-icl-dsi/igt@kms_frontbuffer_tracking@basic.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724


Participating hosts (52 -> 48)
------------------------------

  Additional (2): fi-bsw-n3050 fi-pnv-d510 
  Missing    (6): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-byt-clapper fi-bdw-samus 


Build changes
-------------

  * IGT: IGT_5044 -> IGTPW_3129

  CI_DRM_6209: 47ccfdbca30b28d7604a5a18c532b5f3e14990f0 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3129: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3129/
  IGT_5044: 4e0cc92bfba69c7a5b195a0e80613ba05001cf30 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3129/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_chamelium: wait for worker thread to finish (rev3)
  2019-06-05 10:36 [igt-dev] [PATCH i-g-t] lib/igt_chamelium: wait for worker thread to finish Simon Ser
                   ` (4 preceding siblings ...)
  2019-06-06 15:30 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_chamelium: wait for worker thread to finish (rev4) Patchwork
@ 2019-06-08 16:21 ` Patchwork
  2019-06-08 22:38 ` [igt-dev] ✓ Fi.CI.IGT: success for lib/igt_chamelium: wait for worker thread to finish (rev4) Patchwork
  6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2019-06-08 16:21 UTC (permalink / raw)
  To: Simon Ser; +Cc: igt-dev

== Series Details ==

Series: lib/igt_chamelium: wait for worker thread to finish (rev3)
URL   : https://patchwork.freedesktop.org/series/61648/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_6206_full -> IGTPW_3128_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_3128_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_3128_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/61648/revisions/3/mbox/

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in IGTPW_3128_full:

### IGT changes ###

#### Possible regressions ####

  * igt@gem_mmap_gtt@forked-medium-copy-odd:
    - shard-kbl:          [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6206/shard-kbl6/igt@gem_mmap_gtt@forked-medium-copy-odd.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/shard-kbl6/igt@gem_mmap_gtt@forked-medium-copy-odd.html

  
Known issues
------------

  Here are the changes found in IGTPW_3128_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_mmap_gtt@forked-big-copy:
    - shard-iclb:         [PASS][3] -> [INCOMPLETE][4] ([fdo#107713] / [fdo#109100])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6206/shard-iclb1/igt@gem_mmap_gtt@forked-big-copy.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/shard-iclb3/igt@gem_mmap_gtt@forked-big-copy.html

  * igt@kms_cursor_crc@pipe-c-cursor-64x21-onscreen:
    - shard-apl:          [PASS][5] -> [FAIL][6] ([fdo#103232])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6206/shard-apl3/igt@kms_cursor_crc@pipe-c-cursor-64x21-onscreen.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/shard-apl2/igt@kms_cursor_crc@pipe-c-cursor-64x21-onscreen.html
    - shard-kbl:          [PASS][7] -> [FAIL][8] ([fdo#103232])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6206/shard-kbl7/igt@kms_cursor_crc@pipe-c-cursor-64x21-onscreen.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-64x21-onscreen.html

  * igt@kms_cursor_edge_walk@pipe-b-256x256-bottom-edge:
    - shard-iclb:         [PASS][9] -> [INCOMPLETE][10] ([fdo#107713])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6206/shard-iclb3/igt@kms_cursor_edge_walk@pipe-b-256x256-bottom-edge.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/shard-iclb7/igt@kms_cursor_edge_walk@pipe-b-256x256-bottom-edge.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-iclb:         [PASS][11] -> [FAIL][12] ([fdo#103167]) +3 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6206/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
    - shard-apl:          [PASS][13] -> [DMESG-WARN][14] ([fdo#108566]) +2 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6206/shard-apl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html

  * igt@kms_psr@psr2_sprite_plane_move:
    - shard-iclb:         [PASS][15] -> [SKIP][16] ([fdo#109441]) +2 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6206/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/shard-iclb8/igt@kms_psr@psr2_sprite_plane_move.html

  * igt@perf@blocking:
    - shard-iclb:         [PASS][17] -> [FAIL][18] ([fdo#110728])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6206/shard-iclb2/igt@perf@blocking.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/shard-iclb7/igt@perf@blocking.html

  
#### Possible fixes ####

  * {igt@gem_exec_balancer@bonded-imm}:
    - shard-iclb:         [FAIL][19] ([fdo#110851]) -> [PASS][20] +1 similar issue
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6206/shard-iclb1/igt@gem_exec_balancer@bonded-imm.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/shard-iclb3/igt@gem_exec_balancer@bonded-imm.html

  * igt@gem_mmap_gtt@forked-basic-small-copy-odd:
    - shard-iclb:         [INCOMPLETE][21] ([fdo#107713]) -> [PASS][22]
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6206/shard-iclb7/igt@gem_mmap_gtt@forked-basic-small-copy-odd.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/shard-iclb1/igt@gem_mmap_gtt@forked-basic-small-copy-odd.html

  * igt@gem_tiled_swapping@non-threaded:
    - shard-iclb:         [FAIL][23] ([fdo#108686]) -> [PASS][24]
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6206/shard-iclb4/igt@gem_tiled_swapping@non-threaded.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/shard-iclb7/igt@gem_tiled_swapping@non-threaded.html

  * igt@i915_pm_rpm@universal-planes:
    - shard-iclb:         [INCOMPLETE][25] ([fdo#107713] / [fdo#108840]) -> [PASS][26]
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6206/shard-iclb5/igt@i915_pm_rpm@universal-planes.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/shard-iclb2/igt@i915_pm_rpm@universal-planes.html

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-apl:          [DMESG-WARN][27] ([fdo#108566]) -> [PASS][28] +3 similar issues
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6206/shard-apl5/igt@i915_suspend@fence-restore-tiled2untiled.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/shard-apl5/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@kms_cursor_crc@pipe-b-cursor-128x128-random:
    - shard-kbl:          [FAIL][29] ([fdo#103232]) -> [PASS][30]
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6206/shard-kbl2/igt@kms_cursor_crc@pipe-b-cursor-128x128-random.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-128x128-random.html
    - shard-apl:          [FAIL][31] ([fdo#103232]) -> [PASS][32]
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6206/shard-apl3/igt@kms_cursor_crc@pipe-b-cursor-128x128-random.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/shard-apl7/igt@kms_cursor_crc@pipe-b-cursor-128x128-random.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite:
    - shard-iclb:         [FAIL][33] ([fdo#103167]) -> [PASS][34] +4 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6206/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html

  * igt@kms_psr2_su@frontbuffer:
    - shard-iclb:         [SKIP][35] ([fdo#109642]) -> [PASS][36]
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6206/shard-iclb7/igt@kms_psr2_su@frontbuffer.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/shard-iclb2/igt@kms_psr2_su@frontbuffer.html

  * igt@kms_psr@psr2_cursor_render:
    - shard-iclb:         [SKIP][37] ([fdo#109441]) -> [PASS][38] +2 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6206/shard-iclb7/igt@kms_psr@psr2_cursor_render.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/shard-iclb2/igt@kms_psr@psr2_cursor_render.html

  * igt@perf@polling:
    - shard-iclb:         [FAIL][39] ([fdo#110728]) -> [PASS][40]
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6206/shard-iclb7/igt@perf@polling.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/shard-iclb8/igt@perf@polling.html

  
#### Warnings ####

  * igt@gem_mmap_gtt@forked-big-copy-xy:
    - shard-iclb:         [INCOMPLETE][41] ([fdo#107713] / [fdo#109100]) -> [TIMEOUT][42] ([fdo#109673])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6206/shard-iclb6/igt@gem_mmap_gtt@forked-big-copy-xy.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/shard-iclb1/igt@gem_mmap_gtt@forked-big-copy-xy.html

  * igt@gem_tiled_swapping@non-threaded:
    - shard-kbl:          [DMESG-WARN][43] ([fdo#108686]) -> [FAIL][44] ([fdo#108686])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6206/shard-kbl3/igt@gem_tiled_swapping@non-threaded.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/shard-kbl7/igt@gem_tiled_swapping@non-threaded.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
  [fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686
  [fdo#108840]: https://bugs.freedesktop.org/show_bug.cgi?id=108840
  [fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#109673]: https://bugs.freedesktop.org/show_bug.cgi?id=109673
  [fdo#110728]: https://bugs.freedesktop.org/show_bug.cgi?id=110728
  [fdo#110851]: https://bugs.freedesktop.org/show_bug.cgi?id=110851


Participating hosts (9 -> 5)
------------------------------

  Missing    (4): pig-skl-6260u shard-skl pig-hsw-4770r pig-glk-j5005 


Build changes
-------------

  * IGT: IGT_5043 -> IGTPW_3128
  * Piglit: piglit_4509 -> None

  CI_DRM_6206: 14ef563cbee376503d3551992d71f2f075e7462c @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3128: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/
  IGT_5043: 3e2b20817b68ab41377c1b86207a1e7309fc3779 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3128/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 10+ messages in thread

* [igt-dev] ✓ Fi.CI.IGT: success for lib/igt_chamelium: wait for worker thread to finish (rev4)
  2019-06-05 10:36 [igt-dev] [PATCH i-g-t] lib/igt_chamelium: wait for worker thread to finish Simon Ser
                   ` (5 preceding siblings ...)
  2019-06-08 16:21 ` [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_chamelium: wait for worker thread to finish (rev3) Patchwork
@ 2019-06-08 22:38 ` Patchwork
  6 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2019-06-08 22:38 UTC (permalink / raw)
  To: Simon Ser; +Cc: igt-dev

== Series Details ==

Series: lib/igt_chamelium: wait for worker thread to finish (rev4)
URL   : https://patchwork.freedesktop.org/series/61648/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_6209_full -> IGTPW_3129_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/61648/revisions/4/mbox/

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in IGTPW_3129_full:

### IGT changes ###

#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * {igt@gem_ctx_engines@independent}:
    - shard-snb:          [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6209/shard-snb7/igt@gem_ctx_engines@independent.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3129/shard-snb4/igt@gem_ctx_engines@independent.html

  
Known issues
------------

  Here are the changes found in IGTPW_3129_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_eio@in-flight-suspend:
    - shard-kbl:          [PASS][3] -> [FAIL][4] ([fdo#110667])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6209/shard-kbl7/igt@gem_eio@in-flight-suspend.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3129/shard-kbl4/igt@gem_eio@in-flight-suspend.html

  * igt@gem_persistent_relocs@forked-thrash-inactive:
    - shard-glk:          [PASS][5] -> [INCOMPLETE][6] ([fdo#103359] / [k.org#198133])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6209/shard-glk6/igt@gem_persistent_relocs@forked-thrash-inactive.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3129/shard-glk6/igt@gem_persistent_relocs@forked-thrash-inactive.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
    - shard-iclb:         [PASS][7] -> [FAIL][8] ([fdo#103167]) +2 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6209/shard-iclb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3129/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
    - shard-apl:          [PASS][9] -> [DMESG-WARN][10] ([fdo#108566]) +2 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6209/shard-apl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3129/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html

  * igt@kms_psr@psr2_cursor_plane_onoff:
    - shard-iclb:         [PASS][11] -> [SKIP][12] ([fdo#109441]) +2 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6209/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3129/shard-iclb8/igt@kms_psr@psr2_cursor_plane_onoff.html

  
#### Possible fixes ####

  * igt@gem_ctx_engines@execute-one:
    - shard-snb:          [DMESG-WARN][13] -> [PASS][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6209/shard-snb7/igt@gem_ctx_engines@execute-one.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3129/shard-snb1/igt@gem_ctx_engines@execute-one.html

  * igt@gem_ctx_isolation@rcs0-s3:
    - shard-apl:          [DMESG-WARN][15] ([fdo#108566]) -> [PASS][16] +2 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6209/shard-apl6/igt@gem_ctx_isolation@rcs0-s3.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3129/shard-apl8/igt@gem_ctx_isolation@rcs0-s3.html

  * igt@kms_cursor_crc@pipe-c-cursor-128x128-random:
    - shard-apl:          [FAIL][17] ([fdo#103232]) -> [PASS][18]
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6209/shard-apl1/igt@kms_cursor_crc@pipe-c-cursor-128x128-random.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3129/shard-apl5/igt@kms_cursor_crc@pipe-c-cursor-128x128-random.html
    - shard-kbl:          [FAIL][19] ([fdo#103232]) -> [PASS][20]
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6209/shard-kbl7/igt@kms_cursor_crc@pipe-c-cursor-128x128-random.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3129/shard-kbl6/igt@kms_cursor_crc@pipe-c-cursor-128x128-random.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite:
    - shard-iclb:         [FAIL][21] ([fdo#103167]) -> [PASS][22] +3 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6209/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3129/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html

  * igt@kms_properties@get_properties-sanity-non-atomic:
    - shard-apl:          [INCOMPLETE][23] ([fdo#103927]) -> [PASS][24]
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6209/shard-apl7/igt@kms_properties@get_properties-sanity-non-atomic.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3129/shard-apl3/igt@kms_properties@get_properties-sanity-non-atomic.html

  * igt@kms_sysfs_edid_timing:
    - shard-iclb:         [FAIL][25] ([fdo#100047]) -> [PASS][26]
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6209/shard-iclb3/igt@kms_sysfs_edid_timing.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3129/shard-iclb8/igt@kms_sysfs_edid_timing.html

  * igt@perf@blocking:
    - shard-iclb:         [FAIL][27] ([fdo#110728]) -> [PASS][28]
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6209/shard-iclb5/igt@perf@blocking.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3129/shard-iclb6/igt@perf@blocking.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#100047]: https://bugs.freedesktop.org/show_bug.cgi?id=100047
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
  [fdo#103359]: https://bugs.freedesktop.org/show_bug.cgi?id=103359
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#110667]: https://bugs.freedesktop.org/show_bug.cgi?id=110667
  [fdo#110728]: https://bugs.freedesktop.org/show_bug.cgi?id=110728
  [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133


Participating hosts (9 -> 5)
------------------------------

  Missing    (4): pig-skl-6260u shard-skl pig-hsw-4770r pig-glk-j5005 


Build changes
-------------

  * IGT: IGT_5044 -> IGTPW_3129
  * Piglit: piglit_4509 -> None

  CI_DRM_6209: 47ccfdbca30b28d7604a5a18c532b5f3e14990f0 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3129: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3129/
  IGT_5044: 4e0cc92bfba69c7a5b195a0e80613ba05001cf30 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3129/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2019-06-08 22:38 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-05 10:36 [igt-dev] [PATCH i-g-t] lib/igt_chamelium: wait for worker thread to finish Simon Ser
2019-06-05 11:51 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork
2019-06-05 12:03   ` Ser, Simon
2019-06-05 15:47 ` [igt-dev] [PATCH i-g-t] " Arkadiusz Hiler
2019-06-05 16:44 ` [igt-dev] ✗ Fi.CI.BAT: failure for lib/igt_chamelium: wait for worker thread to finish (rev2) Patchwork
2019-06-06  7:05   ` Ser, Simon
2019-06-06 13:50 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_chamelium: wait for worker thread to finish (rev3) Patchwork
2019-06-06 15:30 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_chamelium: wait for worker thread to finish (rev4) Patchwork
2019-06-08 16:21 ` [igt-dev] ✗ Fi.CI.IGT: failure for lib/igt_chamelium: wait for worker thread to finish (rev3) Patchwork
2019-06-08 22:38 ` [igt-dev] ✓ Fi.CI.IGT: success for lib/igt_chamelium: wait for worker thread to finish (rev4) Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox