All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] tests/perf: Fix timeout for RC6 re-enabling
@ 2019-04-16 13:51 Imre Deak
  2019-04-16 13:56 ` Chris Wilson
                   ` (4 more replies)
  0 siblings, 5 replies; 9+ messages in thread
From: Imre Deak @ 2019-04-16 13:51 UTC (permalink / raw)
  To: igt-dev

After closing the perf stream the parking the GPU engines may easily
take more than 1 second: releasing the FD itself results in a new
request submission via i915_perf_release()->i915_oa_stream_destroy()->
gen8_disable_metric_set(). That means a >1sec delay for the delayed
unpark to be called due to the delay from

 queue_delayed_work(retire_work, round_jiffies_up_relative(HZ))

+ the delay from

 mod_delayed_work(idle_work, msecs_to_jiffies(100))

Scheduling may push this delay even further, I measured >2sec delays on
my GLK. Based on this give some slack for the RC6 residency counter to
change.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=103179
Cc: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Imre Deak <imre.deak@intel.com>
---
 tests/perf.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/tests/perf.c b/tests/perf.c
index 4307d36a..5dc10108 100644
--- a/tests/perf.c
+++ b/tests/perf.c
@@ -3591,6 +3591,7 @@ test_rc6_disable(void)
 	};
 	unsigned long n_events_start, n_events_end;
 	unsigned long rc6_enabled;
+	int i;
 
 	rc6_enabled = 0;
 	igt_sysfs_scanf(sysfs, "power/rc6_enable", "%lu", &rc6_enabled);
@@ -3606,8 +3607,12 @@ test_rc6_disable(void)
 	__perf_close(stream_fd);
 
 	n_events_start = rc6_residency_ms();
-	nanosleep(&(struct timespec){ .tv_sec = 1, .tv_nsec = 0 }, NULL);
-	n_events_end = rc6_residency_ms();
+	for (i = 0; i < 5; i++) {
+		nanosleep(&(struct timespec){ .tv_sec = 1, .tv_nsec = 0 }, NULL);
+		n_events_end = rc6_residency_ms();
+		if (n_events_end != n_events_start)
+			break;
+	}
 	igt_assert_neq(n_events_end - n_events_start, 0);
 }
 
-- 
2.13.2

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

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

* Re: [igt-dev] [PATCH i-g-t] tests/perf: Fix timeout for RC6 re-enabling
  2019-04-16 13:51 [igt-dev] [PATCH i-g-t] tests/perf: Fix timeout for RC6 re-enabling Imre Deak
@ 2019-04-16 13:56 ` Chris Wilson
  2019-04-16 14:01   ` Imre Deak
  2019-04-16 14:03 ` Lionel Landwerlin
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 9+ messages in thread
From: Chris Wilson @ 2019-04-16 13:56 UTC (permalink / raw)
  To: Imre Deak, igt-dev

Quoting Imre Deak (2019-04-16 14:51:35)
> After closing the perf stream the parking the GPU engines may easily
> take more than 1 second: releasing the FD itself results in a new
> request submission via i915_perf_release()->i915_oa_stream_destroy()->
> gen8_disable_metric_set(). That means a >1sec delay for the delayed
> unpark to be called due to the delay from

igt_drop_caches_set(DROP_IDLE);

flushes the idle work handler immediately, though you will probably want
DROP_ACTIVE | DROP_RETIRE to complete the picture, see
gem_quiescent_gpu().
-Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] [PATCH i-g-t] tests/perf: Fix timeout for RC6 re-enabling
  2019-04-16 13:56 ` Chris Wilson
@ 2019-04-16 14:01   ` Imre Deak
  0 siblings, 0 replies; 9+ messages in thread
From: Imre Deak @ 2019-04-16 14:01 UTC (permalink / raw)
  To: Chris Wilson; +Cc: igt-dev

On Tue, Apr 16, 2019 at 02:56:59PM +0100, Chris Wilson wrote:
> Quoting Imre Deak (2019-04-16 14:51:35)
> > After closing the perf stream the parking the GPU engines may easily
> > take more than 1 second: releasing the FD itself results in a new
> > request submission via i915_perf_release()->i915_oa_stream_destroy()->
> > gen8_disable_metric_set(). That means a >1sec delay for the delayed
> > unpark to be called due to the delay from
> 
> igt_drop_caches_set(DROP_IDLE);
> 
> flushes the idle work handler immediately, though you will probably want
> DROP_ACTIVE | DROP_RETIRE to complete the picture, see
> gem_quiescent_gpu().

Thanks, seems to work, will respin with that. 

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

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

* Re: [igt-dev] [PATCH i-g-t] tests/perf: Fix timeout for RC6 re-enabling
  2019-04-16 13:51 [igt-dev] [PATCH i-g-t] tests/perf: Fix timeout for RC6 re-enabling Imre Deak
  2019-04-16 13:56 ` Chris Wilson
@ 2019-04-16 14:03 ` Lionel Landwerlin
  2019-04-16 14:09 ` [igt-dev] [PATCH v2] " Imre Deak
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 9+ messages in thread
From: Lionel Landwerlin @ 2019-04-16 14:03 UTC (permalink / raw)
  To: Imre Deak, igt-dev

On 16/04/2019 14:51, Imre Deak wrote:
> After closing the perf stream the parking the GPU engines may easily
> take more than 1 second: releasing the FD itself results in a new
> request submission via i915_perf_release()->i915_oa_stream_destroy()->
> gen8_disable_metric_set(). That means a >1sec delay for the delayed
> unpark to be called due to the delay from
>
>   queue_delayed_work(retire_work, round_jiffies_up_relative(HZ))
>
> + the delay from
>
>   mod_delayed_work(idle_work, msecs_to_jiffies(100))
>
> Scheduling may push this delay even further, I measured >2sec delays on
> my GLK. Based on this give some slack for the RC6 residency counter to
> change.


Thanks a lot for looking into this.

Whatever you do it will probably be better than the current state :)


Adding a couple of people who are also looking at fixing this test.


-Lionel


>
> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=103179
> Cc: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
> Cc: Chris Wilson <chris@chris-wilson.co.uk>
> Signed-off-by: Imre Deak <imre.deak@intel.com>
> ---
>   tests/perf.c | 9 +++++++--
>   1 file changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/tests/perf.c b/tests/perf.c
> index 4307d36a..5dc10108 100644
> --- a/tests/perf.c
> +++ b/tests/perf.c
> @@ -3591,6 +3591,7 @@ test_rc6_disable(void)
>   	};
>   	unsigned long n_events_start, n_events_end;
>   	unsigned long rc6_enabled;
> +	int i;
>   
>   	rc6_enabled = 0;
>   	igt_sysfs_scanf(sysfs, "power/rc6_enable", "%lu", &rc6_enabled);
> @@ -3606,8 +3607,12 @@ test_rc6_disable(void)
>   	__perf_close(stream_fd);
>   
>   	n_events_start = rc6_residency_ms();
> -	nanosleep(&(struct timespec){ .tv_sec = 1, .tv_nsec = 0 }, NULL);
> -	n_events_end = rc6_residency_ms();
> +	for (i = 0; i < 5; i++) {
> +		nanosleep(&(struct timespec){ .tv_sec = 1, .tv_nsec = 0 }, NULL);
> +		n_events_end = rc6_residency_ms();
> +		if (n_events_end != n_events_start)
> +			break;
> +	}
>   	igt_assert_neq(n_events_end - n_events_start, 0);
>   }
>   


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

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

* [igt-dev] [PATCH v2] tests/perf: Fix timeout for RC6 re-enabling
  2019-04-16 13:51 [igt-dev] [PATCH i-g-t] tests/perf: Fix timeout for RC6 re-enabling Imre Deak
  2019-04-16 13:56 ` Chris Wilson
  2019-04-16 14:03 ` Lionel Landwerlin
@ 2019-04-16 14:09 ` Imre Deak
  2019-04-16 14:12   ` Lionel Landwerlin
  2019-04-16 14:47 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/perf: Fix timeout for RC6 re-enabling (rev2) Patchwork
  2019-04-16 21:08 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  4 siblings, 1 reply; 9+ messages in thread
From: Imre Deak @ 2019-04-16 14:09 UTC (permalink / raw)
  To: igt-dev

After closing the perf stream the parking the GPU engines may easily
take more than 1 second: releasing the FD itself results in a new
request submission via i915_perf_release()->i915_oa_stream_destroy()->
gen8_disable_metric_set(). That means a >1sec delay for the delayed
unpark to be called due to the delay from

 queue_delayed_work(retire_work, round_jiffies_up_relative(HZ))

+ the delay from

 mod_delayed_work(idle_work, msecs_to_jiffies(100))

Scheduling may push this delay even further, I measured >2sec delays on
my GLK.

Fix this by calling gem_quiescent_gpu() which syncs up with the idle
work, thus making sure we'll see RC6 residency afterwards.

v2:
- Use gem_quiescent_gpu() instead of increasing the timeout. (Chris)

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=103179
Cc: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Imre Deak <imre.deak@intel.com>
---
 tests/perf.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tests/perf.c b/tests/perf.c
index 4307d36a..f2c0aeb8 100644
--- a/tests/perf.c
+++ b/tests/perf.c
@@ -3604,6 +3604,7 @@ test_rc6_disable(void)
 	igt_assert_eq(n_events_end - n_events_start, 0);
 
 	__perf_close(stream_fd);
+	gem_quiescent_gpu(drm_fd);
 
 	n_events_start = rc6_residency_ms();
 	nanosleep(&(struct timespec){ .tv_sec = 1, .tv_nsec = 0 }, NULL);
-- 
2.13.2

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

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

* Re: [igt-dev] [PATCH v2] tests/perf: Fix timeout for RC6 re-enabling
  2019-04-16 14:09 ` [igt-dev] [PATCH v2] " Imre Deak
@ 2019-04-16 14:12   ` Lionel Landwerlin
  0 siblings, 0 replies; 9+ messages in thread
From: Lionel Landwerlin @ 2019-04-16 14:12 UTC (permalink / raw)
  To: Imre Deak, igt-dev

On 16/04/2019 15:09, Imre Deak wrote:
> After closing the perf stream the parking the GPU engines may easily
> take more than 1 second: releasing the FD itself results in a new
> request submission via i915_perf_release()->i915_oa_stream_destroy()->
> gen8_disable_metric_set(). That means a >1sec delay for the delayed
> unpark to be called due to the delay from
>
>   queue_delayed_work(retire_work, round_jiffies_up_relative(HZ))
>
> + the delay from
>
>   mod_delayed_work(idle_work, msecs_to_jiffies(100))
>
> Scheduling may push this delay even further, I measured >2sec delays on
> my GLK.
>
> Fix this by calling gem_quiescent_gpu() which syncs up with the idle
> work, thus making sure we'll see RC6 residency afterwards.
>
> v2:
> - Use gem_quiescent_gpu() instead of increasing the timeout. (Chris)
>
> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=103179
> Cc: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
> Cc: Chris Wilson <chris@chris-wilson.co.uk>
> Signed-off-by: Imre Deak <imre.deak@intel.com>


Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>


> ---
>   tests/perf.c | 1 +
>   1 file changed, 1 insertion(+)
>
> diff --git a/tests/perf.c b/tests/perf.c
> index 4307d36a..f2c0aeb8 100644
> --- a/tests/perf.c
> +++ b/tests/perf.c
> @@ -3604,6 +3604,7 @@ test_rc6_disable(void)
>   	igt_assert_eq(n_events_end - n_events_start, 0);
>   
>   	__perf_close(stream_fd);
> +	gem_quiescent_gpu(drm_fd);
>   
>   	n_events_start = rc6_residency_ms();
>   	nanosleep(&(struct timespec){ .tv_sec = 1, .tv_nsec = 0 }, NULL);


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

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/perf: Fix timeout for RC6 re-enabling (rev2)
  2019-04-16 13:51 [igt-dev] [PATCH i-g-t] tests/perf: Fix timeout for RC6 re-enabling Imre Deak
                   ` (2 preceding siblings ...)
  2019-04-16 14:09 ` [igt-dev] [PATCH v2] " Imre Deak
@ 2019-04-16 14:47 ` Patchwork
  2019-04-16 15:28   ` Imre Deak
  2019-04-16 21:08 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  4 siblings, 1 reply; 9+ messages in thread
From: Patchwork @ 2019-04-16 14:47 UTC (permalink / raw)
  To: Imre Deak; +Cc: igt-dev

== Series Details ==

Series: tests/perf: Fix timeout for RC6 re-enabling (rev2)
URL   : https://patchwork.freedesktop.org/series/59582/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_5938 -> IGTPW_2868
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/59582/revisions/2/mbox/

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

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

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_basic@semaphore:
    - fi-bdw-5557u:       NOTRUN -> SKIP [fdo#109271] +38

  * igt@gem_exec_suspend@basic-s3:
    - fi-blb-e6850:       PASS -> INCOMPLETE [fdo#107718]

  * igt@i915_pm_rpm@module-reload:
    - fi-skl-6770hq:      PASS -> FAIL [fdo#108511]

  * igt@i915_selftest@live_contexts:
    - fi-bdw-gvtdvm:      PASS -> DMESG-FAIL [fdo#110235 ]

  * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
    - fi-glk-dsi:         PASS -> INCOMPLETE [fdo#103359] / [k.org#198133]

  * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-a:
    - fi-byt-clapper:     PASS -> FAIL [fdo#103191]

  * igt@kms_psr@cursor_plane_move:
    - fi-skl-6260u:       NOTRUN -> SKIP [fdo#109271] +37

  
#### Possible fixes ####

  * igt@i915_selftest@live_contexts:
    - fi-skl-gvtdvm:      DMESG-FAIL [fdo#110235 ] -> PASS

  * igt@kms_frontbuffer_tracking@basic:
    - fi-byt-clapper:     FAIL [fdo#103167] -> PASS

  
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103191]: https://bugs.freedesktop.org/show_bug.cgi?id=103191
  [fdo#103359]: https://bugs.freedesktop.org/show_bug.cgi?id=103359
  [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718
  [fdo#108511]: https://bugs.freedesktop.org/show_bug.cgi?id=108511
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#110235 ]: https://bugs.freedesktop.org/show_bug.cgi?id=110235 
  [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133


Participating hosts (47 -> 42)
------------------------------

  Additional (2): fi-bdw-5557u fi-skl-6260u 
  Missing    (7): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-bsw-cyan fi-ctg-p8600 fi-icl-u3 fi-bdw-samus 


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

    * IGT: IGT_4951 -> IGTPW_2868

  CI_DRM_5938: 61a332623362ea87cdde81115229b1b955335654 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_2868: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2868/
  IGT_4951: cc9a60c029432b5843724e4f2c57f9f815f7adbb @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

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

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

* Re: [igt-dev] ✓ Fi.CI.BAT: success for tests/perf: Fix timeout for RC6 re-enabling (rev2)
  2019-04-16 14:47 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/perf: Fix timeout for RC6 re-enabling (rev2) Patchwork
@ 2019-04-16 15:28   ` Imre Deak
  0 siblings, 0 replies; 9+ messages in thread
From: Imre Deak @ 2019-04-16 15:28 UTC (permalink / raw)
  To: igt-dev, Chris Wilson, Lionel Landwerlin

On Tue, Apr 16, 2019 at 02:47:53PM +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: tests/perf: Fix timeout for RC6 re-enabling (rev2)
> URL   : https://patchwork.freedesktop.org/series/59582/
> State : success

Thanks for the reviews, pushed.

> 
> == Summary ==
> 
> CI Bug Log - changes from CI_DRM_5938 -> IGTPW_2868
> ====================================================
> 
> Summary
> -------
> 
>   **SUCCESS**
> 
>   No regressions found.
> 
>   External URL: https://patchwork.freedesktop.org/api/1.0/series/59582/revisions/2/mbox/
> 
> Known issues
> ------------
> 
>   Here are the changes found in IGTPW_2868 that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@amdgpu/amd_basic@semaphore:
>     - fi-bdw-5557u:       NOTRUN -> SKIP [fdo#109271] +38
> 
>   * igt@gem_exec_suspend@basic-s3:
>     - fi-blb-e6850:       PASS -> INCOMPLETE [fdo#107718]
> 
>   * igt@i915_pm_rpm@module-reload:
>     - fi-skl-6770hq:      PASS -> FAIL [fdo#108511]
> 
>   * igt@i915_selftest@live_contexts:
>     - fi-bdw-gvtdvm:      PASS -> DMESG-FAIL [fdo#110235 ]
> 
>   * igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
>     - fi-glk-dsi:         PASS -> INCOMPLETE [fdo#103359] / [k.org#198133]
> 
>   * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-a:
>     - fi-byt-clapper:     PASS -> FAIL [fdo#103191]
> 
>   * igt@kms_psr@cursor_plane_move:
>     - fi-skl-6260u:       NOTRUN -> SKIP [fdo#109271] +37
> 
>   
> #### Possible fixes ####
> 
>   * igt@i915_selftest@live_contexts:
>     - fi-skl-gvtdvm:      DMESG-FAIL [fdo#110235 ] -> PASS
> 
>   * igt@kms_frontbuffer_tracking@basic:
>     - fi-byt-clapper:     FAIL [fdo#103167] -> PASS
> 
>   
>   [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
>   [fdo#103191]: https://bugs.freedesktop.org/show_bug.cgi?id=103191
>   [fdo#103359]: https://bugs.freedesktop.org/show_bug.cgi?id=103359
>   [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718
>   [fdo#108511]: https://bugs.freedesktop.org/show_bug.cgi?id=108511
>   [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   [fdo#110235 ]: https://bugs.freedesktop.org/show_bug.cgi?id=110235 
>   [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133
> 
> 
> Participating hosts (47 -> 42)
> ------------------------------
> 
>   Additional (2): fi-bdw-5557u fi-skl-6260u 
>   Missing    (7): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-bsw-cyan fi-ctg-p8600 fi-icl-u3 fi-bdw-samus 
> 
> 
> Build changes
> -------------
> 
>     * IGT: IGT_4951 -> IGTPW_2868
> 
>   CI_DRM_5938: 61a332623362ea87cdde81115229b1b955335654 @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGTPW_2868: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2868/
>   IGT_4951: cc9a60c029432b5843724e4f2c57f9f815f7adbb @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2868/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✓ Fi.CI.IGT: success for tests/perf: Fix timeout for RC6 re-enabling (rev2)
  2019-04-16 13:51 [igt-dev] [PATCH i-g-t] tests/perf: Fix timeout for RC6 re-enabling Imre Deak
                   ` (3 preceding siblings ...)
  2019-04-16 14:47 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/perf: Fix timeout for RC6 re-enabling (rev2) Patchwork
@ 2019-04-16 21:08 ` Patchwork
  4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2019-04-16 21:08 UTC (permalink / raw)
  To: Imre Deak; +Cc: igt-dev

== Series Details ==

Series: tests/perf: Fix timeout for RC6 re-enabling (rev2)
URL   : https://patchwork.freedesktop.org/series/59582/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_5938_full -> IGTPW_2868_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/59582/revisions/2/mbox/

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_eio@in-flight-suspend:
    - shard-apl:          PASS -> DMESG-WARN [fdo#108566] +5

  * igt@gem_exec_parallel@bsd2-fds:
    - shard-iclb:         NOTRUN -> SKIP [fdo#109276] +12

  * igt@gem_userptr_blits@coherency-sync:
    - shard-iclb:         NOTRUN -> SKIP [fdo#109290]

  * igt@i915_pm_lpsp@edp-native:
    - shard-iclb:         NOTRUN -> SKIP [fdo#109301]

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-kbl:          PASS -> INCOMPLETE [fdo#103665]

  * igt@kms_atomic_transition@3x-modeset-transitions-nonblocking-fencing:
    - shard-snb:          NOTRUN -> SKIP [fdo#109271] / [fdo#109278] +2

  * igt@kms_atomic_transition@6x-modeset-transitions:
    - shard-iclb:         NOTRUN -> SKIP [fdo#109278] +11

  * igt@kms_chamelium@hdmi-crc-planes-random:
    - shard-iclb:         NOTRUN -> SKIP [fdo#109284] +4

  * igt@kms_color@pipe-b-degamma:
    - shard-iclb:         NOTRUN -> FAIL [fdo#104782] +1

  * igt@kms_cursor_crc@cursor-512x170-onscreen:
    - shard-iclb:         NOTRUN -> SKIP [fdo#109279]

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
    - shard-hsw:          PASS -> FAIL [fdo#105767]

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
    - shard-glk:          PASS -> FAIL [fdo#104873]

  * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
    - shard-iclb:         NOTRUN -> SKIP [fdo#109274] +10

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-glk:          PASS -> FAIL [fdo#105363]

  * igt@kms_force_connector_basic@prune-stale-modes:
    - shard-iclb:         NOTRUN -> SKIP [fdo#109285]

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-render:
    - shard-apl:          PASS -> FAIL [fdo#103167]
    - shard-kbl:          PASS -> FAIL [fdo#103167]

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite:
    - shard-iclb:         PASS -> FAIL [fdo#103167] +3

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt:
    - shard-glk:          PASS -> FAIL [fdo#103167]

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt:
    - shard-iclb:         NOTRUN -> SKIP [fdo#109280] +26

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt:
    - shard-iclb:         PASS -> FAIL [fdo#109247] +15

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff:
    - shard-kbl:          NOTRUN -> SKIP [fdo#109271] +2

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
    - shard-snb:          NOTRUN -> SKIP [fdo#109271] +38

  * igt@kms_lease@page_flip_implicit_plane:
    - shard-iclb:         NOTRUN -> FAIL [fdo#110281]

  * igt@kms_plane_scaling@pipe-b-scaler-with-rotation:
    - shard-iclb:         NOTRUN -> FAIL [fdo#109052]

  * igt@kms_psr2_su@page_flip:
    - shard-iclb:         PASS -> SKIP [fdo#109642]

  * igt@kms_psr@basic:
    - shard-iclb:         PASS -> FAIL [fdo#107383] / [fdo#110215]

  * igt@kms_psr@psr2_cursor_mmap_cpu:
    - shard-iclb:         PASS -> SKIP [fdo#109441] +2

  * igt@kms_psr@psr2_primary_mmap_gtt:
    - shard-iclb:         NOTRUN -> SKIP [fdo#109441] +2

  * igt@kms_psr@sprite_mmap_gtt:
    - shard-iclb:         NOTRUN -> FAIL [fdo#107383] / [fdo#110215] +2

  * igt@kms_rotation_crc@multiplane-rotation-cropping-top:
    - shard-kbl:          PASS -> FAIL [fdo#109016]

  * igt@kms_vrr@flip-basic:
    - shard-iclb:         NOTRUN -> SKIP [fdo#109502]

  * igt@perf@per-context-mode-unprivileged:
    - shard-iclb:         NOTRUN -> SKIP [fdo#109289] +1

  * igt@perf_pmu@rc6:
    - shard-kbl:          PASS -> SKIP [fdo#109271]

  * igt@prime_nv_pcopy@test3_2:
    - shard-iclb:         NOTRUN -> SKIP [fdo#109291] +2

  * igt@prime_vgem@fence-flip-hang:
    - shard-iclb:         NOTRUN -> SKIP [fdo#109295]

  
#### Possible fixes ####

  * igt@gem_tiled_swapping@non-threaded:
    - shard-snb:          FAIL [fdo#108686] -> PASS

  * igt@gem_workarounds@suspend-resume:
    - shard-apl:          DMESG-WARN [fdo#108566] -> PASS +6

  * igt@i915_pm_rc6_residency@rc6-accuracy:
    - shard-snb:          SKIP [fdo#109271] -> PASS

  * igt@i915_pm_rpm@i2c:
    - shard-iclb:         DMESG-WARN [fdo#109982] -> PASS

  * igt@kms_cursor_crc@cursor-128x42-sliding:
    - shard-iclb:         INCOMPLETE -> PASS

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt:
    - shard-iclb:         FAIL [fdo#109247] -> PASS +12

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
    - shard-iclb:         FAIL [fdo#103167] -> PASS +4

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - shard-kbl:          INCOMPLETE [fdo#103665] -> PASS

  * igt@kms_plane_scaling@pipe-a-scaler-with-pixel-format:
    - shard-glk:          SKIP [fdo#109271] / [fdo#109278] -> PASS

  * igt@kms_psr2_su@frontbuffer:
    - shard-iclb:         SKIP [fdo#109642] -> PASS

  * igt@kms_psr@psr2_cursor_blt:
    - shard-iclb:         SKIP [fdo#109441] -> PASS

  * igt@kms_psr@sprite_render:
    - shard-iclb:         FAIL [fdo#107383] / [fdo#110215] -> PASS +2

  * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
    - shard-kbl:          DMESG-FAIL [fdo#105763] -> PASS

  * igt@kms_setmode@basic:
    - shard-kbl:          FAIL [fdo#99912] -> PASS

  * igt@perf@oa-exponents:
    - shard-glk:          FAIL [fdo#105483] -> PASS

  
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
  [fdo#104782]: https://bugs.freedesktop.org/show_bug.cgi?id=104782
  [fdo#104873]: https://bugs.freedesktop.org/show_bug.cgi?id=104873
  [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363
  [fdo#105483]: https://bugs.freedesktop.org/show_bug.cgi?id=105483
  [fdo#105763]: https://bugs.freedesktop.org/show_bug.cgi?id=105763
  [fdo#105767]: https://bugs.freedesktop.org/show_bug.cgi?id=105767
  [fdo#107383]: https://bugs.freedesktop.org/show_bug.cgi?id=107383
  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
  [fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686
  [fdo#109016]: https://bugs.freedesktop.org/show_bug.cgi?id=109016
  [fdo#109052]: https://bugs.freedesktop.org/show_bug.cgi?id=109052
  [fdo#109247]: https://bugs.freedesktop.org/show_bug.cgi?id=109247
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109290]: https://bugs.freedesktop.org/show_bug.cgi?id=109290
  [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
  [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [fdo#109301]: https://bugs.freedesktop.org/show_bug.cgi?id=109301
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109502]: https://bugs.freedesktop.org/show_bug.cgi?id=109502
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#109982]: https://bugs.freedesktop.org/show_bug.cgi?id=109982
  [fdo#110215]: https://bugs.freedesktop.org/show_bug.cgi?id=110215
  [fdo#110281]: https://bugs.freedesktop.org/show_bug.cgi?id=110281
  [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912


Participating hosts (10 -> 6)
------------------------------

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


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

    * IGT: IGT_4951 -> IGTPW_2868
    * Piglit: piglit_4509 -> None

  CI_DRM_5938: 61a332623362ea87cdde81115229b1b955335654 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_2868: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2868/
  IGT_4951: cc9a60c029432b5843724e4f2c57f9f815f7adbb @ 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_2868/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2019-04-16 21:08 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-16 13:51 [igt-dev] [PATCH i-g-t] tests/perf: Fix timeout for RC6 re-enabling Imre Deak
2019-04-16 13:56 ` Chris Wilson
2019-04-16 14:01   ` Imre Deak
2019-04-16 14:03 ` Lionel Landwerlin
2019-04-16 14:09 ` [igt-dev] [PATCH v2] " Imre Deak
2019-04-16 14:12   ` Lionel Landwerlin
2019-04-16 14:47 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/perf: Fix timeout for RC6 re-enabling (rev2) Patchwork
2019-04-16 15:28   ` Imre Deak
2019-04-16 21:08 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.