All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t] lib/i915: Fix test enumeration on legacy kernels
@ 2019-05-23  8:39 ` Tvrtko Ursulin
  0 siblings, 0 replies; 6+ messages in thread
From: Tvrtko Ursulin @ 2019-05-23  8:39 UTC (permalink / raw)
  To: igt-dev; +Cc: Intel-gfx

From: Tvrtko Ursulin <tvrtko.ursulin@intel.com>

Where engine discovery and context engine map are not supported we must
not call the asserting gem_class_instance_to_eb_flags from the engine
list initalizer. (Since not all engines can be addressed using the legacy
execbuf API.)

Instead extract the code into lower level __gem_class_instance_to_eb_flags
helper which can return errors the caller can manually handle then.

Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Cc: Andi Shyti <andi.shyti@intel.com>
---
 lib/i915/gem_engine_topology.c | 17 +++++++++++++----
 lib/igt_gt.c                   | 28 +++++++++++++++++++---------
 lib/igt_gt.h                   |  5 +++++
 3 files changed, 37 insertions(+), 13 deletions(-)

diff --git a/lib/i915/gem_engine_topology.c b/lib/i915/gem_engine_topology.c
index d0c8bd5aaeac..1748231a1de0 100644
--- a/lib/i915/gem_engine_topology.c
+++ b/lib/i915/gem_engine_topology.c
@@ -222,15 +222,24 @@ struct intel_engine_data intel_init_engine_list(int fd, uint32_t ctx_id)
 		__for_each_static_engine(e2) {
 			struct intel_execution_engine2 *__e2 =
 				&engine_data.engines[engine_data.nengines];
+			int flags;
+
+			flags = __gem_class_instance_to_eb_flags(fd,
+								 e2->class,
+								 e2->instance);
+
+			__e2->flags = flags;
 
 			if (!igt_only_list_subtests()) {
-				__e2->flags = gem_class_instance_to_eb_flags(fd,
-						e2->class, e2->instance);
+				/*
+				 * Skip engines not suported with legacy
+				 * execbuf.
+				 */
+				if (flags < 0)
+					continue;
 
 				if (!gem_has_ring(fd, __e2->flags))
 					continue;
-			} else {
-				__e2->flags = -1; /* 0xfff... */
 			}
 
 			__e2->name       = e2->name;
diff --git a/lib/igt_gt.c b/lib/igt_gt.c
index 6b7c037e6d10..1a81a1fb405f 100644
--- a/lib/igt_gt.c
+++ b/lib/igt_gt.c
@@ -611,15 +611,13 @@ int gem_execbuf_flags_to_engine_class(unsigned int flags)
 	}
 }
 
-unsigned int
-gem_class_instance_to_eb_flags(int gem_fd,
-			       enum drm_i915_gem_engine_class class,
-			       unsigned int instance)
+int
+__gem_class_instance_to_eb_flags(int gem_fd,
+				 enum drm_i915_gem_engine_class class,
+				 unsigned int instance)
 {
-	if (class != I915_ENGINE_CLASS_VIDEO)
-		igt_assert(instance == 0);
-	else
-		igt_assert(instance >= 0 && instance <= 1);
+	if (instance > 1 || (class != I915_ENGINE_CLASS_VIDEO && instance > 0))
+		return -1;
 
 	switch (class) {
 	case I915_ENGINE_CLASS_RENDER:
@@ -640,10 +638,22 @@ gem_class_instance_to_eb_flags(int gem_fd,
 		return I915_EXEC_VEBOX;
 	case I915_ENGINE_CLASS_INVALID:
 	default:
-		igt_assert(0);
+		return -1;
 	};
 }
 
+unsigned int
+gem_class_instance_to_eb_flags(int gem_fd,
+			       enum drm_i915_gem_engine_class class,
+			       unsigned int instance)
+{
+	int flags = __gem_class_instance_to_eb_flags(gem_fd, class, instance);
+
+	igt_assert(flags >= 0);
+
+	return flags;
+}
+
 bool gem_has_engine(int gem_fd,
 		    enum drm_i915_gem_engine_class class,
 		    unsigned int instance)
diff --git a/lib/igt_gt.h b/lib/igt_gt.h
index 77318e2a82b8..189b9bf70a8b 100644
--- a/lib/igt_gt.h
+++ b/lib/igt_gt.h
@@ -102,6 +102,11 @@ extern const struct intel_execution_engine2 {
 
 int gem_execbuf_flags_to_engine_class(unsigned int flags);
 
+int
+__gem_class_instance_to_eb_flags(int gem_fd,
+				 enum drm_i915_gem_engine_class class,
+				 unsigned int instance);
+
 unsigned int
 gem_class_instance_to_eb_flags(int gem_fd,
 			       enum drm_i915_gem_engine_class class,
-- 
2.20.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* [igt-dev] [PATCH i-g-t] lib/i915: Fix test enumeration on legacy kernels
@ 2019-05-23  8:39 ` Tvrtko Ursulin
  0 siblings, 0 replies; 6+ messages in thread
From: Tvrtko Ursulin @ 2019-05-23  8:39 UTC (permalink / raw)
  To: igt-dev; +Cc: Intel-gfx, Tvrtko Ursulin

From: Tvrtko Ursulin <tvrtko.ursulin@intel.com>

Where engine discovery and context engine map are not supported we must
not call the asserting gem_class_instance_to_eb_flags from the engine
list initalizer. (Since not all engines can be addressed using the legacy
execbuf API.)

Instead extract the code into lower level __gem_class_instance_to_eb_flags
helper which can return errors the caller can manually handle then.

Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Cc: Andi Shyti <andi.shyti@intel.com>
---
 lib/i915/gem_engine_topology.c | 17 +++++++++++++----
 lib/igt_gt.c                   | 28 +++++++++++++++++++---------
 lib/igt_gt.h                   |  5 +++++
 3 files changed, 37 insertions(+), 13 deletions(-)

diff --git a/lib/i915/gem_engine_topology.c b/lib/i915/gem_engine_topology.c
index d0c8bd5aaeac..1748231a1de0 100644
--- a/lib/i915/gem_engine_topology.c
+++ b/lib/i915/gem_engine_topology.c
@@ -222,15 +222,24 @@ struct intel_engine_data intel_init_engine_list(int fd, uint32_t ctx_id)
 		__for_each_static_engine(e2) {
 			struct intel_execution_engine2 *__e2 =
 				&engine_data.engines[engine_data.nengines];
+			int flags;
+
+			flags = __gem_class_instance_to_eb_flags(fd,
+								 e2->class,
+								 e2->instance);
+
+			__e2->flags = flags;
 
 			if (!igt_only_list_subtests()) {
-				__e2->flags = gem_class_instance_to_eb_flags(fd,
-						e2->class, e2->instance);
+				/*
+				 * Skip engines not suported with legacy
+				 * execbuf.
+				 */
+				if (flags < 0)
+					continue;
 
 				if (!gem_has_ring(fd, __e2->flags))
 					continue;
-			} else {
-				__e2->flags = -1; /* 0xfff... */
 			}
 
 			__e2->name       = e2->name;
diff --git a/lib/igt_gt.c b/lib/igt_gt.c
index 6b7c037e6d10..1a81a1fb405f 100644
--- a/lib/igt_gt.c
+++ b/lib/igt_gt.c
@@ -611,15 +611,13 @@ int gem_execbuf_flags_to_engine_class(unsigned int flags)
 	}
 }
 
-unsigned int
-gem_class_instance_to_eb_flags(int gem_fd,
-			       enum drm_i915_gem_engine_class class,
-			       unsigned int instance)
+int
+__gem_class_instance_to_eb_flags(int gem_fd,
+				 enum drm_i915_gem_engine_class class,
+				 unsigned int instance)
 {
-	if (class != I915_ENGINE_CLASS_VIDEO)
-		igt_assert(instance == 0);
-	else
-		igt_assert(instance >= 0 && instance <= 1);
+	if (instance > 1 || (class != I915_ENGINE_CLASS_VIDEO && instance > 0))
+		return -1;
 
 	switch (class) {
 	case I915_ENGINE_CLASS_RENDER:
@@ -640,10 +638,22 @@ gem_class_instance_to_eb_flags(int gem_fd,
 		return I915_EXEC_VEBOX;
 	case I915_ENGINE_CLASS_INVALID:
 	default:
-		igt_assert(0);
+		return -1;
 	};
 }
 
+unsigned int
+gem_class_instance_to_eb_flags(int gem_fd,
+			       enum drm_i915_gem_engine_class class,
+			       unsigned int instance)
+{
+	int flags = __gem_class_instance_to_eb_flags(gem_fd, class, instance);
+
+	igt_assert(flags >= 0);
+
+	return flags;
+}
+
 bool gem_has_engine(int gem_fd,
 		    enum drm_i915_gem_engine_class class,
 		    unsigned int instance)
diff --git a/lib/igt_gt.h b/lib/igt_gt.h
index 77318e2a82b8..189b9bf70a8b 100644
--- a/lib/igt_gt.h
+++ b/lib/igt_gt.h
@@ -102,6 +102,11 @@ extern const struct intel_execution_engine2 {
 
 int gem_execbuf_flags_to_engine_class(unsigned int flags);
 
+int
+__gem_class_instance_to_eb_flags(int gem_fd,
+				 enum drm_i915_gem_engine_class class,
+				 unsigned int instance);
+
 unsigned int
 gem_class_instance_to_eb_flags(int gem_fd,
 			       enum drm_i915_gem_engine_class class,
-- 
2.20.1

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

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

* Re: [PATCH i-g-t] lib/i915: Fix test enumeration on legacy kernels
  2019-05-23  8:39 ` [igt-dev] " Tvrtko Ursulin
@ 2019-05-23  8:52   ` Andi Shyti
  -1 siblings, 0 replies; 6+ messages in thread
From: Andi Shyti @ 2019-05-23  8:52 UTC (permalink / raw)
  To: Tvrtko Ursulin; +Cc: igt-dev, Intel-gfx

Hi Tvrtko,

On Thu, May 23, 2019 at 09:39:29AM +0100, Tvrtko Ursulin wrote:
> From: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
> 
> Where engine discovery and context engine map are not supported we must
> not call the asserting gem_class_instance_to_eb_flags from the engine
> list initalizer. (Since not all engines can be addressed using the legacy
> execbuf API.)
> 
> Instead extract the code into lower level __gem_class_instance_to_eb_flags
> helper which can return errors the caller can manually handle then.
> 
> Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
> Cc: Andi Shyti <andi.shyti@intel.com>

Chris was after this: 

https://patchwork.freedesktop.org/patch/306446/

Andi
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* Re: [Intel-gfx] [PATCH i-g-t] lib/i915: Fix test enumeration on legacy kernels
@ 2019-05-23  8:52   ` Andi Shyti
  0 siblings, 0 replies; 6+ messages in thread
From: Andi Shyti @ 2019-05-23  8:52 UTC (permalink / raw)
  To: Tvrtko Ursulin; +Cc: igt-dev, Intel-gfx

Hi Tvrtko,

On Thu, May 23, 2019 at 09:39:29AM +0100, Tvrtko Ursulin wrote:
> From: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
> 
> Where engine discovery and context engine map are not supported we must
> not call the asserting gem_class_instance_to_eb_flags from the engine
> list initalizer. (Since not all engines can be addressed using the legacy
> execbuf API.)
> 
> Instead extract the code into lower level __gem_class_instance_to_eb_flags
> helper which can return errors the caller can manually handle then.
> 
> Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
> Cc: Andi Shyti <andi.shyti@intel.com>

Chris was after this: 

https://patchwork.freedesktop.org/patch/306446/

Andi
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* [igt-dev] ✓ Fi.CI.BAT: success for lib/i915: Fix test enumeration on legacy kernels
  2019-05-23  8:39 ` [igt-dev] " Tvrtko Ursulin
  (?)
  (?)
@ 2019-05-23  9:30 ` Patchwork
  -1 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2019-05-23  9:30 UTC (permalink / raw)
  To: Tvrtko Ursulin; +Cc: igt-dev

== Series Details ==

Series: lib/i915: Fix test enumeration on legacy kernels
URL   : https://patchwork.freedesktop.org/series/61018/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_6127 -> IGTPW_3041
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/61018/revisions/1/mbox/

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_suspend@basic-s3:
    - fi-blb-e6850:       [PASS][1] -> [INCOMPLETE][2] ([fdo#107718])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html

  
#### Possible fixes ####

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

  * igt@i915_pm_rpm@module-reload:
    - fi-skl-6770hq:      [FAIL][5] ([fdo#108511]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html

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

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


Participating hosts (51 -> 46)
------------------------------

  Additional (2): fi-skl-iommu fi-pnv-d510 
  Missing    (7): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-byt-clapper fi-bdw-samus 


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

  * IGT: IGT_5006 -> IGTPW_3041

  CI_DRM_6127: 376943a0a929c01f9f945dcde30f58ba7e6004f1 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3041: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/
  IGT_5006: 95d22d5fece7af1448e3b533228c9298080d26e7 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for lib/i915: Fix test enumeration on legacy kernels
  2019-05-23  8:39 ` [igt-dev] " Tvrtko Ursulin
                   ` (2 preceding siblings ...)
  (?)
@ 2019-05-24  5:11 ` Patchwork
  -1 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2019-05-24  5:11 UTC (permalink / raw)
  To: Tvrtko Ursulin; +Cc: igt-dev

== Series Details ==

Series: lib/i915: Fix test enumeration on legacy kernels
URL   : https://patchwork.freedesktop.org/series/61018/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_6127_full -> IGTPW_3041_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_ctx_isolation@rcs0-dirty-create:
    - shard-apl:          NOTRUN -> [WARN][1] +3 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-apl2/igt@gem_ctx_isolation@rcs0-dirty-create.html

  * igt@gem_ctx_isolation@vcs0-nonpriv:
    - shard-iclb:         NOTRUN -> [WARN][2] +1 similar issue
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-iclb3/igt@gem_ctx_isolation@vcs0-nonpriv.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
    - shard-glk:          [PASS][3] -> [FAIL][4] +1 similar issue
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-glk4/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-glk3/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html

  
#### Warnings ####

  * igt@gem_ctx_isolation@bcs0-none:
    - shard-glk:          [WARN][5] ([fdo#110738]) -> [WARN][6] +27 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-glk9/igt@gem_ctx_isolation@bcs0-none.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-glk2/igt@gem_ctx_isolation@bcs0-none.html

  * igt@gem_ctx_isolation@bcs0-s3:
    - shard-kbl:          [WARN][7] ([fdo#110738]) -> [WARN][8] +34 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-kbl1/igt@gem_ctx_isolation@bcs0-s3.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-kbl6/igt@gem_ctx_isolation@bcs0-s3.html
    - shard-iclb:         [WARN][9] ([fdo#110738]) -> [WARN][10] +22 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-iclb7/igt@gem_ctx_isolation@bcs0-s3.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-iclb8/igt@gem_ctx_isolation@bcs0-s3.html

  * igt@gem_ctx_isolation@vcs0-dirty-create:
    - shard-apl:          [WARN][11] ([fdo#110738]) -> [WARN][12] +20 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-apl3/igt@gem_ctx_isolation@vcs0-dirty-create.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-apl7/igt@gem_ctx_isolation@vcs0-dirty-create.html

  
#### Suppressed ####

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

  * {igt@gem_ctx_isolation@vcs2-clean}:
    - shard-glk:          [FAIL][13] ([fdo#110738]) -> [FAIL][14] +6 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-glk4/igt@gem_ctx_isolation@vcs2-clean.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-glk7/igt@gem_ctx_isolation@vcs2-clean.html
    - shard-iclb:         NOTRUN -> [FAIL][15] +1 similar issue
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-iclb6/igt@gem_ctx_isolation@vcs2-clean.html

  * {igt@gem_ctx_isolation@vcs2-dirty-switch}:
    - shard-iclb:         [FAIL][16] ([fdo#110738]) -> [FAIL][17] +4 similar issues
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-iclb2/igt@gem_ctx_isolation@vcs2-dirty-switch.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-iclb1/igt@gem_ctx_isolation@vcs2-dirty-switch.html
    - shard-kbl:          [FAIL][18] ([fdo#110738]) -> [FAIL][19] +6 similar issues
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-kbl2/igt@gem_ctx_isolation@vcs2-dirty-switch.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-kbl7/igt@gem_ctx_isolation@vcs2-dirty-switch.html
    - shard-apl:          NOTRUN -> [FAIL][20]
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-apl1/igt@gem_ctx_isolation@vcs2-dirty-switch.html

  * {igt@gem_ctx_isolation@vcs2-none}:
    - shard-apl:          [FAIL][21] ([fdo#110738]) -> [FAIL][22] +5 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-apl5/igt@gem_ctx_isolation@vcs2-none.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-apl7/igt@gem_ctx_isolation@vcs2-none.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_pwrite@big-cpu-forwards:
    - shard-glk:          [PASS][23] -> [INCOMPLETE][24] ([fdo#103359] / [k.org#198133])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-glk3/igt@gem_pwrite@big-cpu-forwards.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-glk3/igt@gem_pwrite@big-cpu-forwards.html

  * igt@gem_tiled_swapping@non-threaded:
    - shard-apl:          [PASS][25] -> [DMESG-WARN][26] ([fdo#108686])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-apl3/igt@gem_tiled_swapping@non-threaded.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-apl5/igt@gem_tiled_swapping@non-threaded.html

  * igt@i915_pm_rps@waitboost:
    - shard-apl:          [PASS][27] -> [FAIL][28] ([fdo#102250])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-apl4/igt@i915_pm_rps@waitboost.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-apl8/igt@i915_pm_rps@waitboost.html

  * igt@kms_dp_dsc@basic-dsc-enable-edp:
    - shard-iclb:         [PASS][29] -> [SKIP][30] ([fdo#109349])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-iclb7/igt@kms_dp_dsc@basic-dsc-enable-edp.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
    - shard-hsw:          [PASS][31] -> [SKIP][32] ([fdo#109271]) +19 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-hsw6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-hsw5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu:
    - shard-glk:          [PASS][33] -> [FAIL][34] ([fdo#103167])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-glk8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-glk1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite:
    - shard-iclb:         [PASS][35] -> [FAIL][36] ([fdo#103167]) +2 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
    - shard-apl:          [PASS][37] -> [DMESG-WARN][38] ([fdo#108566]) +4 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-apl5/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-apl1/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html

  * igt@kms_psr@psr2_sprite_plane_move:
    - shard-iclb:         [PASS][39] -> [SKIP][40] ([fdo#109441]) +3 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-iclb7/igt@kms_psr@psr2_sprite_plane_move.html

  
#### Possible fixes ####

  * igt@gem_eio@unwedge-stress:
    - shard-snb:          [FAIL][41] ([fdo#109661]) -> [PASS][42]
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-snb5/igt@gem_eio@unwedge-stress.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-snb1/igt@gem_eio@unwedge-stress.html

  * igt@i915_pm_rps@min-max-config-loaded:
    - shard-iclb:         [FAIL][43] ([fdo#108059]) -> [PASS][44]
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-iclb7/igt@i915_pm_rps@min-max-config-loaded.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-iclb6/igt@i915_pm_rps@min-max-config-loaded.html

  * igt@kms_color@pipe-b-legacy-gamma:
    - shard-kbl:          [FAIL][45] ([fdo#104782]) -> [PASS][46]
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-kbl1/igt@kms_color@pipe-b-legacy-gamma.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-kbl7/igt@kms_color@pipe-b-legacy-gamma.html

  * {igt@kms_cursor_crc@pipe-b-cursor-suspend}:
    - shard-kbl:          [INCOMPLETE][47] ([fdo#103665]) -> [PASS][48]
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-kbl3/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-kbl2/igt@kms_cursor_crc@pipe-b-cursor-suspend.html

  * igt@kms_flip@2x-plain-flip-ts-check-interruptible:
    - shard-hsw:          [SKIP][49] ([fdo#109271]) -> [PASS][50] +12 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-hsw5/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-hsw1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt:
    - shard-iclb:         [FAIL][51] ([fdo#103167]) -> [PASS][52] +2 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_psr2_su@page_flip:
    - shard-iclb:         [SKIP][53] ([fdo#109642]) -> [PASS][54]
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-iclb3/igt@kms_psr2_su@page_flip.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-iclb2/igt@kms_psr2_su@page_flip.html

  * igt@kms_psr@psr2_cursor_render:
    - shard-iclb:         [SKIP][55] ([fdo#109441]) -> [PASS][56] +4 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-iclb3/igt@kms_psr@psr2_cursor_render.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-iclb2/igt@kms_psr@psr2_cursor_render.html

  * igt@kms_setmode@basic:
    - shard-kbl:          [FAIL][57] ([fdo#99912]) -> [PASS][58]
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-kbl6/igt@kms_setmode@basic.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-kbl3/igt@kms_setmode@basic.html

  * igt@kms_vblank@pipe-c-ts-continuation-suspend:
    - shard-apl:          [DMESG-WARN][59] ([fdo#108566]) -> [PASS][60] +3 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-apl5/igt@kms_vblank@pipe-c-ts-continuation-suspend.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-apl4/igt@kms_vblank@pipe-c-ts-continuation-suspend.html

  * igt@sw_sync@sync_expired_merge:
    - shard-apl:          [INCOMPLETE][61] ([fdo#103927]) -> [PASS][62]
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-apl1/igt@sw_sync@sync_expired_merge.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-apl8/igt@sw_sync@sync_expired_merge.html

  
#### Warnings ####

  * igt@gem_ctx_isolation@rcs0-s3:
    - shard-apl:          [WARN][63] ([fdo#110738]) -> [DMESG-WARN][64] ([fdo#108566]) +1 similar issue
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-apl2/igt@gem_ctx_isolation@rcs0-s3.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-apl3/igt@gem_ctx_isolation@rcs0-s3.html

  * igt@gem_mmap_gtt@forked-big-copy-xy:
    - shard-iclb:         [TIMEOUT][65] ([fdo#109673]) -> [INCOMPLETE][66] ([fdo#107713] / [fdo#109100])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6127/shard-iclb8/igt@gem_mmap_gtt@forked-big-copy-xy.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/shard-iclb3/igt@gem_mmap_gtt@forked-big-copy-xy.html

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

  [fdo#102250]: https://bugs.freedesktop.org/show_bug.cgi?id=102250
  [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#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#104782]: https://bugs.freedesktop.org/show_bug.cgi?id=104782
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#108059]: https://bugs.freedesktop.org/show_bug.cgi?id=108059
  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
  [fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686
  [fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#109661]: https://bugs.freedesktop.org/show_bug.cgi?id=109661
  [fdo#109673]: https://bugs.freedesktop.org/show_bug.cgi?id=109673
  [fdo#110738]: https://bugs.freedesktop.org/show_bug.cgi?id=110738
  [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 (10 -> 6)
------------------------------

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


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

  * IGT: IGT_5006 -> IGTPW_3041
  * Piglit: piglit_4509 -> None

  CI_DRM_6127: 376943a0a929c01f9f945dcde30f58ba7e6004f1 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3041: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3041/
  IGT_5006: 95d22d5fece7af1448e3b533228c9298080d26e7 @ 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_3041/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2019-05-24  5:11 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-23  8:39 [PATCH i-g-t] lib/i915: Fix test enumeration on legacy kernels Tvrtko Ursulin
2019-05-23  8:39 ` [igt-dev] " Tvrtko Ursulin
2019-05-23  8:52 ` Andi Shyti
2019-05-23  8:52   ` [Intel-gfx] " Andi Shyti
2019-05-23  9:30 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2019-05-24  5:11 ` [igt-dev] ✗ Fi.CI.IGT: failure " 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.