All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915/selftests: Teach timelines to take intel_gt as its argument
@ 2019-10-16 11:38 Chris Wilson
  2019-10-16 12:37 ` Tvrtko Ursulin
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Chris Wilson @ 2019-10-16 11:38 UTC (permalink / raw)
  To: intel-gfx

The timelines selftests are [mostly] hardware centric and so want to use
the gt as its target.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
---
 drivers/gpu/drm/i915/gt/selftest_timeline.c | 48 +++++++++++----------
 1 file changed, 25 insertions(+), 23 deletions(-)

diff --git a/drivers/gpu/drm/i915/gt/selftest_timeline.c b/drivers/gpu/drm/i915/gt/selftest_timeline.c
index d6df40cdc8a6..473a56b0ae46 100644
--- a/drivers/gpu/drm/i915/gt/selftest_timeline.c
+++ b/drivers/gpu/drm/i915/gt/selftest_timeline.c
@@ -35,7 +35,7 @@ static unsigned long hwsp_cacheline(struct intel_timeline *tl)
 #define CACHELINES_PER_PAGE (PAGE_SIZE / CACHELINE_BYTES)
 
 struct mock_hwsp_freelist {
-	struct drm_i915_private *i915;
+	struct intel_gt *gt;
 	struct radix_tree_root cachelines;
 	struct intel_timeline **history;
 	unsigned long count, max;
@@ -68,7 +68,7 @@ static int __mock_hwsp_timeline(struct mock_hwsp_freelist *state,
 		unsigned long cacheline;
 		int err;
 
-		tl = intel_timeline_create(&state->i915->gt, NULL);
+		tl = intel_timeline_create(state->gt, NULL);
 		if (IS_ERR(tl))
 			return PTR_ERR(tl);
 
@@ -106,6 +106,7 @@ static int __mock_hwsp_timeline(struct mock_hwsp_freelist *state,
 static int mock_hwsp_freelist(void *arg)
 {
 	struct mock_hwsp_freelist state;
+	struct drm_i915_private *i915;
 	const struct {
 		const char *name;
 		unsigned int flags;
@@ -117,12 +118,14 @@ static int mock_hwsp_freelist(void *arg)
 	unsigned int na;
 	int err = 0;
 
+	i915 = mock_gem_device();
+	if (!i915)
+		return -ENOMEM;
+
 	INIT_RADIX_TREE(&state.cachelines, GFP_KERNEL);
 	state.prng = I915_RND_STATE_INITIALIZER(i915_selftest.random_seed);
 
-	state.i915 = mock_gem_device();
-	if (!state.i915)
-		return -ENOMEM;
+	state.gt = &i915->gt;
 
 	/*
 	 * Create a bunch of timelines and check that their HWSP do not overlap.
@@ -151,7 +154,7 @@ static int mock_hwsp_freelist(void *arg)
 		__mock_hwsp_record(&state, na, NULL);
 	kfree(state.history);
 err_put:
-	drm_dev_put(&state.i915->drm);
+	drm_dev_put(&i915->drm);
 	return err;
 }
 
@@ -476,11 +479,11 @@ tl_write(struct intel_timeline *tl, struct intel_engine_cs *engine, u32 value)
 }
 
 static struct intel_timeline *
-checked_intel_timeline_create(struct drm_i915_private *i915)
+checked_intel_timeline_create(struct intel_gt *gt)
 {
 	struct intel_timeline *tl;
 
-	tl = intel_timeline_create(&i915->gt, NULL);
+	tl = intel_timeline_create(gt, NULL);
 	if (IS_ERR(tl))
 		return tl;
 
@@ -497,7 +500,7 @@ checked_intel_timeline_create(struct drm_i915_private *i915)
 static int live_hwsp_engine(void *arg)
 {
 #define NUM_TIMELINES 4096
-	struct drm_i915_private *i915 = arg;
+	struct intel_gt *gt = arg;
 	struct intel_timeline **timelines;
 	struct intel_engine_cs *engine;
 	enum intel_engine_id id;
@@ -516,7 +519,7 @@ static int live_hwsp_engine(void *arg)
 		return -ENOMEM;
 
 	count = 0;
-	for_each_engine(engine, i915, id) {
+	for_each_engine(engine, gt->i915, id) {
 		if (!intel_engine_can_store_dword(engine))
 			continue;
 
@@ -526,7 +529,7 @@ static int live_hwsp_engine(void *arg)
 			struct intel_timeline *tl;
 			struct i915_request *rq;
 
-			tl = checked_intel_timeline_create(i915);
+			tl = checked_intel_timeline_create(gt);
 			if (IS_ERR(tl)) {
 				err = PTR_ERR(tl);
 				break;
@@ -548,7 +551,7 @@ static int live_hwsp_engine(void *arg)
 			break;
 	}
 
-	if (igt_flush_test(i915))
+	if (igt_flush_test(gt->i915))
 		err = -EIO;
 
 	for (n = 0; n < count; n++) {
@@ -570,7 +573,7 @@ static int live_hwsp_engine(void *arg)
 static int live_hwsp_alternate(void *arg)
 {
 #define NUM_TIMELINES 4096
-	struct drm_i915_private *i915 = arg;
+	struct intel_gt *gt = arg;
 	struct intel_timeline **timelines;
 	struct intel_engine_cs *engine;
 	enum intel_engine_id id;
@@ -591,14 +594,14 @@ static int live_hwsp_alternate(void *arg)
 
 	count = 0;
 	for (n = 0; n < NUM_TIMELINES; n++) {
-		for_each_engine(engine, i915, id) {
+		for_each_engine(engine, gt->i915, id) {
 			struct intel_timeline *tl;
 			struct i915_request *rq;
 
 			if (!intel_engine_can_store_dword(engine))
 				continue;
 
-			tl = checked_intel_timeline_create(i915);
+			tl = checked_intel_timeline_create(gt);
 			if (IS_ERR(tl)) {
 				intel_engine_pm_put(engine);
 				err = PTR_ERR(tl);
@@ -620,7 +623,7 @@ static int live_hwsp_alternate(void *arg)
 	}
 
 out:
-	if (igt_flush_test(i915))
+	if (igt_flush_test(gt->i915))
 		err = -EIO;
 
 	for (n = 0; n < count; n++) {
@@ -641,8 +644,7 @@ static int live_hwsp_alternate(void *arg)
 
 static int live_hwsp_wrap(void *arg)
 {
-	struct drm_i915_private *i915 = arg;
-	struct intel_gt *gt = &i915->gt;
+	struct intel_gt *gt = arg;
 	struct intel_engine_cs *engine;
 	struct intel_timeline *tl;
 	enum intel_engine_id id;
@@ -740,7 +742,7 @@ static int live_hwsp_wrap(void *arg)
 	}
 
 out:
-	if (igt_flush_test(i915))
+	if (igt_flush_test(gt->i915))
 		err = -EIO;
 
 	intel_timeline_unpin(tl);
@@ -751,7 +753,7 @@ static int live_hwsp_wrap(void *arg)
 
 static int live_hwsp_recycle(void *arg)
 {
-	struct drm_i915_private *i915 = arg;
+	struct intel_gt *gt = arg;
 	struct intel_engine_cs *engine;
 	enum intel_engine_id id;
 	unsigned long count;
@@ -764,7 +766,7 @@ static int live_hwsp_recycle(void *arg)
 	 */
 
 	count = 0;
-	for_each_engine(engine, i915, id) {
+	for_each_engine(engine, gt->i915, id) {
 		IGT_TIMEOUT(end_time);
 
 		if (!intel_engine_can_store_dword(engine))
@@ -776,7 +778,7 @@ static int live_hwsp_recycle(void *arg)
 			struct intel_timeline *tl;
 			struct i915_request *rq;
 
-			tl = checked_intel_timeline_create(i915);
+			tl = checked_intel_timeline_create(gt);
 			if (IS_ERR(tl)) {
 				err = PTR_ERR(tl);
 				break;
@@ -831,5 +833,5 @@ int intel_timeline_live_selftests(struct drm_i915_private *i915)
 	if (intel_gt_is_wedged(&i915->gt))
 		return 0;
 
-	return i915_live_subtests(tests, i915);
+	return intel_gt_live_subtests(tests, &i915->gt);
 }
-- 
2.23.0

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

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

* Re: [PATCH] drm/i915/selftests: Teach timelines to take intel_gt as its argument
  2019-10-16 11:38 [PATCH] drm/i915/selftests: Teach timelines to take intel_gt as its argument Chris Wilson
@ 2019-10-16 12:37 ` Tvrtko Ursulin
  2019-10-16 14:39 ` ✓ Fi.CI.BAT: success for " Patchwork
  2019-10-17  2:40 ` ✗ Fi.CI.IGT: failure " Patchwork
  2 siblings, 0 replies; 4+ messages in thread
From: Tvrtko Ursulin @ 2019-10-16 12:37 UTC (permalink / raw)
  To: Chris Wilson, intel-gfx


On 16/10/2019 12:38, Chris Wilson wrote:
> The timelines selftests are [mostly] hardware centric and so want to use
> the gt as its target.
> 
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
> ---
>   drivers/gpu/drm/i915/gt/selftest_timeline.c | 48 +++++++++++----------
>   1 file changed, 25 insertions(+), 23 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/gt/selftest_timeline.c b/drivers/gpu/drm/i915/gt/selftest_timeline.c
> index d6df40cdc8a6..473a56b0ae46 100644
> --- a/drivers/gpu/drm/i915/gt/selftest_timeline.c
> +++ b/drivers/gpu/drm/i915/gt/selftest_timeline.c
> @@ -35,7 +35,7 @@ static unsigned long hwsp_cacheline(struct intel_timeline *tl)
>   #define CACHELINES_PER_PAGE (PAGE_SIZE / CACHELINE_BYTES)
>   
>   struct mock_hwsp_freelist {
> -	struct drm_i915_private *i915;
> +	struct intel_gt *gt;
>   	struct radix_tree_root cachelines;
>   	struct intel_timeline **history;
>   	unsigned long count, max;
> @@ -68,7 +68,7 @@ static int __mock_hwsp_timeline(struct mock_hwsp_freelist *state,
>   		unsigned long cacheline;
>   		int err;
>   
> -		tl = intel_timeline_create(&state->i915->gt, NULL);
> +		tl = intel_timeline_create(state->gt, NULL);
>   		if (IS_ERR(tl))
>   			return PTR_ERR(tl);
>   
> @@ -106,6 +106,7 @@ static int __mock_hwsp_timeline(struct mock_hwsp_freelist *state,
>   static int mock_hwsp_freelist(void *arg)
>   {
>   	struct mock_hwsp_freelist state;
> +	struct drm_i915_private *i915;
>   	const struct {
>   		const char *name;
>   		unsigned int flags;
> @@ -117,12 +118,14 @@ static int mock_hwsp_freelist(void *arg)
>   	unsigned int na;
>   	int err = 0;
>   
> +	i915 = mock_gem_device();
> +	if (!i915)
> +		return -ENOMEM;
> +
>   	INIT_RADIX_TREE(&state.cachelines, GFP_KERNEL);
>   	state.prng = I915_RND_STATE_INITIALIZER(i915_selftest.random_seed);
>   
> -	state.i915 = mock_gem_device();
> -	if (!state.i915)
> -		return -ENOMEM;
> +	state.gt = &i915->gt;
>   
>   	/*
>   	 * Create a bunch of timelines and check that their HWSP do not overlap.
> @@ -151,7 +154,7 @@ static int mock_hwsp_freelist(void *arg)
>   		__mock_hwsp_record(&state, na, NULL);
>   	kfree(state.history);
>   err_put:
> -	drm_dev_put(&state.i915->drm);
> +	drm_dev_put(&i915->drm);
>   	return err;
>   }
>   
> @@ -476,11 +479,11 @@ tl_write(struct intel_timeline *tl, struct intel_engine_cs *engine, u32 value)
>   }
>   
>   static struct intel_timeline *
> -checked_intel_timeline_create(struct drm_i915_private *i915)
> +checked_intel_timeline_create(struct intel_gt *gt)
>   {
>   	struct intel_timeline *tl;
>   
> -	tl = intel_timeline_create(&i915->gt, NULL);
> +	tl = intel_timeline_create(gt, NULL);
>   	if (IS_ERR(tl))
>   		return tl;
>   
> @@ -497,7 +500,7 @@ checked_intel_timeline_create(struct drm_i915_private *i915)
>   static int live_hwsp_engine(void *arg)
>   {
>   #define NUM_TIMELINES 4096
> -	struct drm_i915_private *i915 = arg;
> +	struct intel_gt *gt = arg;
>   	struct intel_timeline **timelines;
>   	struct intel_engine_cs *engine;
>   	enum intel_engine_id id;
> @@ -516,7 +519,7 @@ static int live_hwsp_engine(void *arg)
>   		return -ENOMEM;
>   
>   	count = 0;
> -	for_each_engine(engine, i915, id) {
> +	for_each_engine(engine, gt->i915, id) {

You can make these gt straight away to avoid follow up work after my 
other patch.

>   		if (!intel_engine_can_store_dword(engine))
>   			continue;
>   
> @@ -526,7 +529,7 @@ static int live_hwsp_engine(void *arg)
>   			struct intel_timeline *tl;
>   			struct i915_request *rq;
>   
> -			tl = checked_intel_timeline_create(i915);
> +			tl = checked_intel_timeline_create(gt);
>   			if (IS_ERR(tl)) {
>   				err = PTR_ERR(tl);
>   				break;
> @@ -548,7 +551,7 @@ static int live_hwsp_engine(void *arg)
>   			break;
>   	}
>   
> -	if (igt_flush_test(i915))
> +	if (igt_flush_test(gt->i915))
>   		err = -EIO;
>   
>   	for (n = 0; n < count; n++) {
> @@ -570,7 +573,7 @@ static int live_hwsp_engine(void *arg)
>   static int live_hwsp_alternate(void *arg)
>   {
>   #define NUM_TIMELINES 4096
> -	struct drm_i915_private *i915 = arg;
> +	struct intel_gt *gt = arg;
>   	struct intel_timeline **timelines;
>   	struct intel_engine_cs *engine;
>   	enum intel_engine_id id;
> @@ -591,14 +594,14 @@ static int live_hwsp_alternate(void *arg)
>   
>   	count = 0;
>   	for (n = 0; n < NUM_TIMELINES; n++) {
> -		for_each_engine(engine, i915, id) {
> +		for_each_engine(engine, gt->i915, id) {

^^^

>   			struct intel_timeline *tl;
>   			struct i915_request *rq;
>   
>   			if (!intel_engine_can_store_dword(engine))
>   				continue;
>   
> -			tl = checked_intel_timeline_create(i915);
> +			tl = checked_intel_timeline_create(gt);
>   			if (IS_ERR(tl)) {
>   				intel_engine_pm_put(engine);
>   				err = PTR_ERR(tl);
> @@ -620,7 +623,7 @@ static int live_hwsp_alternate(void *arg)
>   	}
>   
>   out:
> -	if (igt_flush_test(i915))
> +	if (igt_flush_test(gt->i915))
>   		err = -EIO;
>   
>   	for (n = 0; n < count; n++) {
> @@ -641,8 +644,7 @@ static int live_hwsp_alternate(void *arg)
>   
>   static int live_hwsp_wrap(void *arg)
>   {
> -	struct drm_i915_private *i915 = arg;
> -	struct intel_gt *gt = &i915->gt;
> +	struct intel_gt *gt = arg;
>   	struct intel_engine_cs *engine;
>   	struct intel_timeline *tl;
>   	enum intel_engine_id id;
> @@ -740,7 +742,7 @@ static int live_hwsp_wrap(void *arg)
>   	}
>   
>   out:
> -	if (igt_flush_test(i915))
> +	if (igt_flush_test(gt->i915))
>   		err = -EIO;
>   
>   	intel_timeline_unpin(tl);
> @@ -751,7 +753,7 @@ static int live_hwsp_wrap(void *arg)
>   
>   static int live_hwsp_recycle(void *arg)
>   {
> -	struct drm_i915_private *i915 = arg;
> +	struct intel_gt *gt = arg;
>   	struct intel_engine_cs *engine;
>   	enum intel_engine_id id;
>   	unsigned long count;
> @@ -764,7 +766,7 @@ static int live_hwsp_recycle(void *arg)
>   	 */
>   
>   	count = 0;
> -	for_each_engine(engine, i915, id) {
> +	for_each_engine(engine, gt->i915, id) {

^^^

>   		IGT_TIMEOUT(end_time);
>   
>   		if (!intel_engine_can_store_dword(engine))
> @@ -776,7 +778,7 @@ static int live_hwsp_recycle(void *arg)
>   			struct intel_timeline *tl;
>   			struct i915_request *rq;
>   
> -			tl = checked_intel_timeline_create(i915);
> +			tl = checked_intel_timeline_create(gt);
>   			if (IS_ERR(tl)) {
>   				err = PTR_ERR(tl);
>   				break;
> @@ -831,5 +833,5 @@ int intel_timeline_live_selftests(struct drm_i915_private *i915)
>   	if (intel_gt_is_wedged(&i915->gt))
>   		return 0;
>   
> -	return i915_live_subtests(tests, i915);
> +	return intel_gt_live_subtests(tests, &i915->gt);
>   }
> 

With that:

Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>

Regards,

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

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

* ✓ Fi.CI.BAT: success for drm/i915/selftests: Teach timelines to take intel_gt as its argument
  2019-10-16 11:38 [PATCH] drm/i915/selftests: Teach timelines to take intel_gt as its argument Chris Wilson
  2019-10-16 12:37 ` Tvrtko Ursulin
@ 2019-10-16 14:39 ` Patchwork
  2019-10-17  2:40 ` ✗ Fi.CI.IGT: failure " Patchwork
  2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2019-10-16 14:39 UTC (permalink / raw)
  To: Chris Wilson; +Cc: intel-gfx

== Series Details ==

Series: drm/i915/selftests: Teach timelines to take intel_gt as its argument
URL   : https://patchwork.freedesktop.org/series/68088/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7106 -> Patchwork_14832
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/index.html

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

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

### IGT changes ###

#### Suppressed ####

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

  * igt@i915_selftest@live_execlists:
    - {fi-icl-dsi}:       [PASS][1] -> [DMESG-FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/fi-icl-dsi/igt@i915_selftest@live_execlists.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/fi-icl-dsi/igt@i915_selftest@live_execlists.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_flink_basic@bad-flink:
    - fi-icl-u3:          [PASS][3] -> [DMESG-WARN][4] ([fdo#107724])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/fi-icl-u3/igt@gem_flink_basic@bad-flink.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/fi-icl-u3/igt@gem_flink_basic@bad-flink.html

  * igt@i915_selftest@live_hangcheck:
    - fi-icl-u3:          [PASS][5] -> [INCOMPLETE][6] ([fdo#107713] / [fdo#108569])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/fi-icl-u3/igt@i915_selftest@live_hangcheck.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/fi-icl-u3/igt@i915_selftest@live_hangcheck.html
    - fi-bsw-n3050:       [PASS][7] -> [INCOMPLETE][8] ([fdo#105876])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/fi-bsw-n3050/igt@i915_selftest@live_hangcheck.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/fi-bsw-n3050/igt@i915_selftest@live_hangcheck.html

  * igt@kms_busy@basic-flip-a:
    - fi-icl-u2:          [PASS][9] -> [TIMEOUT][10] ([fdo#111800])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/fi-icl-u2/igt@kms_busy@basic-flip-a.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/fi-icl-u2/igt@kms_busy@basic-flip-a.html

  
#### Possible fixes ####

  * igt@gem_ctx_create@basic-files:
    - fi-bdw-gvtdvm:      [INCOMPLETE][11] -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/fi-bdw-gvtdvm/igt@gem_ctx_create@basic-files.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/fi-bdw-gvtdvm/igt@gem_ctx_create@basic-files.html
    - {fi-tgl-u}:         [INCOMPLETE][13] ([fdo#111735]) -> [PASS][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/fi-tgl-u/igt@gem_ctx_create@basic-files.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/fi-tgl-u/igt@gem_ctx_create@basic-files.html

  * igt@i915_selftest@live_execlists:
    - fi-skl-6260u:       [DMESG-FAIL][15] -> [PASS][16]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/fi-skl-6260u/igt@i915_selftest@live_execlists.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/fi-skl-6260u/igt@i915_selftest@live_execlists.html

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-kbl-7500u:       [FAIL][17] ([fdo#111407]) -> [PASS][18]
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html

  * igt@prime_vgem@basic-fence-read:
    - fi-icl-u3:          [DMESG-WARN][19] ([fdo#107724]) -> [PASS][20] +2 similar issues
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/fi-icl-u3/igt@prime_vgem@basic-fence-read.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/fi-icl-u3/igt@prime_vgem@basic-fence-read.html

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

  [fdo#105876]: https://bugs.freedesktop.org/show_bug.cgi?id=105876
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
  [fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407
  [fdo#111735]: https://bugs.freedesktop.org/show_bug.cgi?id=111735
  [fdo#111800]: https://bugs.freedesktop.org/show_bug.cgi?id=111800


Participating hosts (53 -> 44)
------------------------------

  Missing    (9): fi-ilk-m540 fi-bxt-dsi fi-hsw-4200u fi-tgl-u2 fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * Linux: CI_DRM_7106 -> Patchwork_14832

  CI-20190529: 20190529
  CI_DRM_7106: 934a73720c78499439e86ec7d832d9ccb71ce3f0 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_5231: e293051f8f99c72cb01d21e4b73a5928ea351eb3 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_14832: 91b813fe8ba67b704af5e3341b9444db71e6134e @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

91b813fe8ba6 drm/i915/selftests: Teach timelines to take intel_gt as its argument

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/index.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* ✗ Fi.CI.IGT: failure for drm/i915/selftests: Teach timelines to take intel_gt as its argument
  2019-10-16 11:38 [PATCH] drm/i915/selftests: Teach timelines to take intel_gt as its argument Chris Wilson
  2019-10-16 12:37 ` Tvrtko Ursulin
  2019-10-16 14:39 ` ✓ Fi.CI.BAT: success for " Patchwork
@ 2019-10-17  2:40 ` Patchwork
  2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2019-10-17  2:40 UTC (permalink / raw)
  To: Chris Wilson; +Cc: intel-gfx

== Series Details ==

Series: drm/i915/selftests: Teach timelines to take intel_gt as its argument
URL   : https://patchwork.freedesktop.org/series/68088/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_7106_full -> Patchwork_14832_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with Patchwork_14832_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in Patchwork_14832_full, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

  

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_exec_flush@basic-wb-rw-before-default:
    - shard-skl:          [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-skl10/igt@gem_exec_flush@basic-wb-rw-before-default.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-skl4/igt@gem_exec_flush@basic-wb-rw-before-default.html

  * igt@gem_persistent_relocs@forked-interruptible-thrashing:
    - shard-snb:          [PASS][3] -> [FAIL][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-snb2/igt@gem_persistent_relocs@forked-interruptible-thrashing.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-snb4/igt@gem_persistent_relocs@forked-interruptible-thrashing.html

  * igt@i915_selftest@live_execlists:
    - shard-glk:          [PASS][5] -> [DMESG-FAIL][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-glk8/igt@i915_selftest@live_execlists.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-glk9/igt@i915_selftest@live_execlists.html

  
#### Suppressed ####

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

  * {igt@kms_cursor_crc@pipe-d-cursor-256x256-onscreen}:
    - {shard-tglb}:       NOTRUN -> [FAIL][7] +5 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-tglb1/igt@kms_cursor_crc@pipe-d-cursor-256x256-onscreen.html

  * {igt@kms_cursor_crc@pipe-d-cursor-512x512-onscreen}:
    - {shard-tglb}:       NOTRUN -> [SKIP][8] +7 similar issues
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-tglb5/igt@kms_cursor_crc@pipe-d-cursor-512x512-onscreen.html

  * igt@kms_vblank@pipe-d-wait-forked-busy-hang:
    - {shard-tglb}:       NOTRUN -> [INCOMPLETE][9]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-tglb1/igt@kms_vblank@pipe-d-wait-forked-busy-hang.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_schedule@reorder-wide-bsd:
    - shard-iclb:         [PASS][10] -> [SKIP][11] ([fdo#111325]) +4 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-iclb8/igt@gem_exec_schedule@reorder-wide-bsd.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-iclb2/igt@gem_exec_schedule@reorder-wide-bsd.html

  * igt@gem_userptr_blits@dmabuf-sync:
    - shard-snb:          [PASS][12] -> [DMESG-WARN][13] ([fdo#111870])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-snb5/igt@gem_userptr_blits@dmabuf-sync.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-snb4/igt@gem_userptr_blits@dmabuf-sync.html

  * igt@i915_suspend@fence-restore-tiled2untiled:
    - shard-apl:          [PASS][14] -> [DMESG-WARN][15] ([fdo#108566]) +5 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-apl4/igt@i915_suspend@fence-restore-tiled2untiled.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-apl5/igt@i915_suspend@fence-restore-tiled2untiled.html

  * igt@kms_cursor_crc@pipe-c-cursor-128x128-sliding:
    - shard-skl:          [PASS][16] -> [FAIL][17] ([fdo#103232])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-skl4/igt@kms_cursor_crc@pipe-c-cursor-128x128-sliding.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-skl4/igt@kms_cursor_crc@pipe-c-cursor-128x128-sliding.html

  * igt@kms_cursor_legacy@pipe-b-single-move:
    - shard-apl:          [PASS][18] -> [INCOMPLETE][19] ([fdo#103927])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-apl3/igt@kms_cursor_legacy@pipe-b-single-move.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-apl7/igt@kms_cursor_legacy@pipe-b-single-move.html

  * igt@kms_flip@flip-vs-panning-vs-hang:
    - shard-snb:          [PASS][20] -> [INCOMPLETE][21] ([fdo#105411])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-snb7/igt@kms_flip@flip-vs-panning-vs-hang.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-snb1/igt@kms_flip@flip-vs-panning-vs-hang.html
    - shard-hsw:          [PASS][22] -> [INCOMPLETE][23] ([fdo#103540]) +1 similar issue
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-hsw1/igt@kms_flip@flip-vs-panning-vs-hang.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-hsw7/igt@kms_flip@flip-vs-panning-vs-hang.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff:
    - shard-iclb:         [PASS][24] -> [FAIL][25] ([fdo#103167]) +2 similar issues
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-onoff.html

  * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min:
    - shard-skl:          [PASS][26] -> [FAIL][27] ([fdo#108145]) +1 similar issue
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-skl10/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-skl10/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html

  * igt@kms_plane_alpha_blend@pipe-c-coverage-7efc:
    - shard-skl:          [PASS][28] -> [FAIL][29] ([fdo#108145] / [fdo#110403])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-skl4/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-skl4/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html

  * igt@kms_plane_cursor@pipe-a-primary-size-128:
    - shard-snb:          [PASS][30] -> [SKIP][31] ([fdo#109271]) +1 similar issue
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-snb6/igt@kms_plane_cursor@pipe-a-primary-size-128.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-snb6/igt@kms_plane_cursor@pipe-a-primary-size-128.html

  * igt@kms_psr2_su@page_flip:
    - shard-iclb:         [PASS][32] -> [SKIP][33] ([fdo#109642] / [fdo#111068])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-iclb2/igt@kms_psr2_su@page_flip.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-iclb3/igt@kms_psr2_su@page_flip.html

  * igt@kms_psr@psr2_primary_render:
    - shard-iclb:         [PASS][34] -> [SKIP][35] ([fdo#109441])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-iclb2/igt@kms_psr@psr2_primary_render.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-iclb6/igt@kms_psr@psr2_primary_render.html

  * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
    - shard-kbl:          [PASS][36] -> [DMESG-FAIL][37] ([fdo#105763])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-kbl3/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-kbl2/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html

  * igt@kms_setmode@basic:
    - shard-kbl:          [PASS][38] -> [FAIL][39] ([fdo#99912])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-kbl7/igt@kms_setmode@basic.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-kbl1/igt@kms_setmode@basic.html

  * igt@prime_vgem@fence-wait-bsd2:
    - shard-iclb:         [PASS][40] -> [SKIP][41] ([fdo#109276]) +25 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-iclb4/igt@prime_vgem@fence-wait-bsd2.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-iclb3/igt@prime_vgem@fence-wait-bsd2.html

  
#### Possible fixes ####

  * igt@gem_eio@in-flight-contexts-immediate:
    - shard-snb:          [FAIL][42] ([fdo#111925]) -> [PASS][43]
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-snb1/igt@gem_eio@in-flight-contexts-immediate.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-snb2/igt@gem_eio@in-flight-contexts-immediate.html

  * igt@gem_exec_schedule@preempt-contexts-bsd2:
    - shard-iclb:         [SKIP][44] ([fdo#109276]) -> [PASS][45] +15 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-iclb7/igt@gem_exec_schedule@preempt-contexts-bsd2.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-iclb2/igt@gem_exec_schedule@preempt-contexts-bsd2.html

  * igt@gem_exec_schedule@wide-bsd:
    - shard-iclb:         [SKIP][46] ([fdo#111325]) -> [PASS][47] +5 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-iclb1/igt@gem_exec_schedule@wide-bsd.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-iclb5/igt@gem_exec_schedule@wide-bsd.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup:
    - shard-snb:          [DMESG-WARN][48] ([fdo#111870]) -> [PASS][49]
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-snb2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-snb7/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup.html

  * igt@i915_selftest@live_execlists:
    - shard-skl:          [DMESG-FAIL][50] -> [PASS][51]
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-skl10/igt@i915_selftest@live_execlists.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-skl10/igt@i915_selftest@live_execlists.html

  * igt@i915_suspend@sysfs-reader:
    - shard-apl:          [DMESG-WARN][52] ([fdo#108566]) -> [PASS][53] +4 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-apl2/igt@i915_suspend@sysfs-reader.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-apl1/igt@i915_suspend@sysfs-reader.html

  * igt@kms_atomic_transition@plane-all-transition:
    - shard-apl:          [INCOMPLETE][54] ([fdo#103927]) -> [PASS][55] +3 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-apl6/igt@kms_atomic_transition@plane-all-transition.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-apl4/igt@kms_atomic_transition@plane-all-transition.html

  * igt@kms_color@pipe-a-ctm-0-5:
    - shard-skl:          [DMESG-WARN][56] ([fdo#106107]) -> [PASS][57]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-skl1/igt@kms_color@pipe-a-ctm-0-5.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-skl1/igt@kms_color@pipe-a-ctm-0-5.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render:
    - shard-iclb:         [FAIL][58] ([fdo#103167]) -> [PASS][59] +6 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-suspend:
    - shard-iclb:         [INCOMPLETE][60] ([fdo#106978] / [fdo#107713]) -> [PASS][61]
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html

  * igt@kms_plane_alpha_blend@pipe-a-coverage-7efc:
    - shard-skl:          [FAIL][62] ([fdo#108145]) -> [PASS][63]
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-skl1/igt@kms_plane_alpha_blend@pipe-a-coverage-7efc.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-skl1/igt@kms_plane_alpha_blend@pipe-a-coverage-7efc.html

  * igt@kms_psr@psr2_primary_page_flip:
    - shard-iclb:         [SKIP][64] ([fdo#109441]) -> [PASS][65] +1 similar issue
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-iclb8/igt@kms_psr@psr2_primary_page_flip.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html

  * igt@kms_setmode@basic:
    - shard-apl:          [FAIL][66] ([fdo#99912]) -> [PASS][67]
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-apl8/igt@kms_setmode@basic.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-apl3/igt@kms_setmode@basic.html

  * igt@perf_pmu@busy-accuracy-2-bcs0:
    - shard-iclb:         [INCOMPLETE][68] ([fdo#107713]) -> [PASS][69]
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-iclb1/igt@perf_pmu@busy-accuracy-2-bcs0.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-iclb4/igt@perf_pmu@busy-accuracy-2-bcs0.html

  
#### Warnings ####

  * igt@gem_ctx_isolation@vcs1-nonpriv:
    - shard-iclb:         [SKIP][70] ([fdo#109276]) -> [FAIL][71] ([fdo#111329])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-iclb3/igt@gem_ctx_isolation@vcs1-nonpriv.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-iclb1/igt@gem_ctx_isolation@vcs1-nonpriv.html

  * igt@gem_mocs_settings@mocs-rc6-bsd2:
    - shard-iclb:         [FAIL][72] ([fdo#111330]) -> [SKIP][73] ([fdo#109276])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-iclb2/igt@gem_mocs_settings@mocs-rc6-bsd2.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-iclb6/igt@gem_mocs_settings@mocs-rc6-bsd2.html

  * igt@kms_psr@psr2_suspend:
    - shard-iclb:         [DMESG-WARN][74] ([fdo#107724]) -> [SKIP][75] ([fdo#109441])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7106/shard-iclb2/igt@kms_psr@psr2_suspend.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/shard-iclb7/igt@kms_psr@psr2_suspend.html

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

  [fdo# 112000 ]: https://bugs.freedesktop.org/show_bug.cgi?id= 112000 
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
  [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411
  [fdo#105763]: https://bugs.freedesktop.org/show_bug.cgi?id=105763
  [fdo#106107]: https://bugs.freedesktop.org/show_bug.cgi?id=106107
  [fdo#106978]: https://bugs.freedesktop.org/show_bug.cgi?id=106978
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110403]: https://bugs.freedesktop.org/show_bug.cgi?id=110403
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325
  [fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329
  [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330
  [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
  [fdo#111925]: https://bugs.freedesktop.org/show_bug.cgi?id=111925
  [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912


Participating hosts (11 -> 11)
------------------------------

  No changes in participating hosts


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

  * CI: CI-20190529 -> None
  * Linux: CI_DRM_7106 -> Patchwork_14832

  CI-20190529: 20190529
  CI_DRM_7106: 934a73720c78499439e86ec7d832d9ccb71ce3f0 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_5231: e293051f8f99c72cb01d21e4b73a5928ea351eb3 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_14832: 91b813fe8ba67b704af5e3341b9444db71e6134e @ git://anongit.freedesktop.org/gfx-ci/linux
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14832/index.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

end of thread, other threads:[~2019-10-17  2:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-16 11:38 [PATCH] drm/i915/selftests: Teach timelines to take intel_gt as its argument Chris Wilson
2019-10-16 12:37 ` Tvrtko Ursulin
2019-10-16 14:39 ` ✓ Fi.CI.BAT: success for " Patchwork
2019-10-17  2:40 ` ✗ 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.