All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-gfx] [PATCH 1/2] drm/i915: Ratelimit i915_global_park
@ 2019-12-17 23:07 Chris Wilson
  2019-12-17 23:07 ` [Intel-gfx] [PATCH 2/2] drm/i915/gt: Ratelimit display power w/a Chris Wilson
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Chris Wilson @ 2019-12-17 23:07 UTC (permalink / raw)
  To: intel-gfx

When doing our global park, we like to be a good citizen and shrink our
slab caches (of which we have quite a few now), but each
kmem_cache_shrink() incurs a stop_machine() and so ends up being quite
expensive, causing machine-wide stalls. While ideally we would like to
throw away unused pages in our slab caches whenever it appears that we
are idling, doing so will require a much cheaper mechanism. In the
meantime use a delayed worked to impose a rate-limit that means we have
to have been idle for more than 2 seconds before we start shrinking.

References: https://gitlab.freedesktop.org/drm/intel/issues/848
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
---
 drivers/gpu/drm/i915/i915_globals.c | 20 +++++++++++++++-----
 1 file changed, 15 insertions(+), 5 deletions(-)

diff --git a/drivers/gpu/drm/i915/i915_globals.c b/drivers/gpu/drm/i915/i915_globals.c
index be127cd28931..e6984b897a61 100644
--- a/drivers/gpu/drm/i915/i915_globals.c
+++ b/drivers/gpu/drm/i915/i915_globals.c
@@ -20,7 +20,8 @@ static LIST_HEAD(globals);
 static atomic_t active;
 static atomic_t epoch;
 static struct park_work {
-	struct rcu_work work;
+	struct delayed_work work;
+	struct rcu_head rcu;
 	int epoch;
 } park;
 
@@ -44,6 +45,13 @@ static void __i915_globals_park(struct work_struct *work)
 		i915_globals_shrink();
 }
 
+static void __i915_globals_grace(struct rcu_head *rcu)
+{
+	/* Ratelimit parking as shrinking is quite slow */
+	mod_delayed_work(system_wq, &park.work,
+			 round_jiffies_up_relative(2 * HZ));
+}
+
 void __init i915_global_register(struct i915_global *global)
 {
 	GEM_BUG_ON(!global->shrink);
@@ -85,7 +93,7 @@ int __init i915_globals_init(void)
 		}
 	}
 
-	INIT_RCU_WORK(&park.work, __i915_globals_park);
+	INIT_DELAYED_WORK(&park.work, __i915_globals_park);
 	return 0;
 }
 
@@ -103,8 +111,9 @@ void i915_globals_park(void)
 	if (!atomic_dec_and_test(&active))
 		return;
 
+	/* Queue cleanup after the next RCU grace period has freed slabs */
 	park.epoch = atomic_inc_return(&epoch);
-	queue_rcu_work(system_wq, &park.work);
+	call_rcu(&park.rcu, __i915_globals_grace);
 }
 
 void i915_globals_unpark(void)
@@ -116,8 +125,9 @@ void i915_globals_unpark(void)
 void __exit i915_globals_exit(void)
 {
 	/* Flush any residual park_work */
-	atomic_inc(&epoch);
-	flush_rcu_work(&park.work);
+	atomic_inc(&epoch); /* skip shrinking */
+	rcu_barrier(); /* wait for the work to be queued */
+	flush_delayed_work(&park.work);
 
 	__i915_globals_cleanup();
 
-- 
2.24.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

* [Intel-gfx] [PATCH 2/2] drm/i915/gt: Ratelimit display power w/a
  2019-12-17 23:07 [Intel-gfx] [PATCH 1/2] drm/i915: Ratelimit i915_global_park Chris Wilson
@ 2019-12-17 23:07 ` Chris Wilson
  2019-12-17 23:28 ` [Intel-gfx] [PATCH] drm/i915: Ratelimit i915_globals_park Chris Wilson
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Chris Wilson @ 2019-12-17 23:07 UTC (permalink / raw)
  To: intel-gfx

For very light workloads that frequently park, acquiring the display
power well (required to prevent the dmc from trashing the system) takes
longer than the execution. A good example is the igt_coherency selftest,
which is slowed down by an order of magnitude in the worst case with
powerwell cycling. To prevent frequent cycling, while keeping our fast
soft-rc6, use a timer to delay release of the display powerwell.

Fixes: 311770173fac ("drm/i915/gt: Schedule request retirement when timeline idles")
References: https://gitlab.freedesktop.org/drm/intel/issues/848
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
---
 drivers/gpu/drm/i915/gt/intel_gt_pm.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/gt/intel_gt_pm.c b/drivers/gpu/drm/i915/gt/intel_gt_pm.c
index bb57e3443a50..f36ce36dabeb 100644
--- a/drivers/gpu/drm/i915/gt/intel_gt_pm.c
+++ b/drivers/gpu/drm/i915/gt/intel_gt_pm.c
@@ -88,8 +88,9 @@ static int __gt_park(struct intel_wakeref *wf)
 	/* Everything switched off, flush any residual interrupt just in case */
 	intel_synchronize_irq(i915);
 
+	/* Defer dropping the display power well for 100ms, it's slow! */
 	GEM_BUG_ON(!wakeref);
-	intel_display_power_put(i915, POWER_DOMAIN_GT_IRQ, wakeref);
+	intel_display_power_put_async(i915, POWER_DOMAIN_GT_IRQ, wakeref);
 
 	i915_globals_park();
 
-- 
2.24.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

* [Intel-gfx] [PATCH] drm/i915: Ratelimit i915_globals_park
  2019-12-17 23:07 [Intel-gfx] [PATCH 1/2] drm/i915: Ratelimit i915_global_park Chris Wilson
  2019-12-17 23:07 ` [Intel-gfx] [PATCH 2/2] drm/i915/gt: Ratelimit display power w/a Chris Wilson
@ 2019-12-17 23:28 ` Chris Wilson
  2019-12-17 23:56 ` Chris Wilson
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Chris Wilson @ 2019-12-17 23:28 UTC (permalink / raw)
  To: intel-gfx

When doing our global park, we like to be a good citizen and shrink our
slab caches (of which we have quite a few now), but each
kmem_cache_shrink() incurs a stop_machine() and so ends up being quite
expensive, causing machine-wide stalls. While ideally we would like to
throw away unused pages in our slab caches whenever it appears that we
are idling, doing so will require a much cheaper mechanism. In the
meantime use a delayed worked to impose a rate-limit that means we have
to have been idle for more than 2 seconds before we start shrinking.

References: https://gitlab.freedesktop.org/drm/intel/issues/848
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
---
 drivers/gpu/drm/i915/i915_globals.c | 31 +++++++++++++++++++++++------
 1 file changed, 25 insertions(+), 6 deletions(-)

diff --git a/drivers/gpu/drm/i915/i915_globals.c b/drivers/gpu/drm/i915/i915_globals.c
index be127cd28931..06d2be2daca2 100644
--- a/drivers/gpu/drm/i915/i915_globals.c
+++ b/drivers/gpu/drm/i915/i915_globals.c
@@ -20,7 +20,8 @@ static LIST_HEAD(globals);
 static atomic_t active;
 static atomic_t epoch;
 static struct park_work {
-	struct rcu_work work;
+	struct delayed_work work;
+	struct rcu_head rcu;
 	int epoch;
 } park;
 
@@ -37,11 +38,27 @@ static void i915_globals_shrink(void)
 		global->shrink();
 }
 
+static void __i915_globals_grace(struct rcu_head *rcu)
+{
+	/* Ratelimit parking as shrinking is quite slow */
+	mod_delayed_work(system_wq, &park.work,
+			 round_jiffies_up_relative(2 * HZ));
+}
+
+static void __i915_globals_queue_rcu(void)
+{
+	park.epoch = atomic_inc_return(&epoch);
+	if (!atomic_read(&active))
+		call_rcu(&park.rcu, __i915_globals_grace);
+}
+
 static void __i915_globals_park(struct work_struct *work)
 {
 	/* Confirm nothing woke up in the last grace period */
 	if (park.epoch == atomic_read(&epoch))
 		i915_globals_shrink();
+	else
+		__i915_globals_queue_rcu();
 }
 
 void __init i915_global_register(struct i915_global *global)
@@ -85,7 +102,7 @@ int __init i915_globals_init(void)
 		}
 	}
 
-	INIT_RCU_WORK(&park.work, __i915_globals_park);
+	INIT_DELAYED_WORK(&park.work, __i915_globals_park);
 	return 0;
 }
 
@@ -103,8 +120,9 @@ void i915_globals_park(void)
 	if (!atomic_dec_and_test(&active))
 		return;
 
-	park.epoch = atomic_inc_return(&epoch);
-	queue_rcu_work(system_wq, &park.work);
+	/* Queue cleanup after the next RCU grace period has freed slabs */
+	if (!work_pending(&park.work.work))
+		__i915_globals_queue_rcu();
 }
 
 void i915_globals_unpark(void)
@@ -116,8 +134,9 @@ void i915_globals_unpark(void)
 void __exit i915_globals_exit(void)
 {
 	/* Flush any residual park_work */
-	atomic_inc(&epoch);
-	flush_rcu_work(&park.work);
+	atomic_inc(&epoch); /* skip shrinking */
+	rcu_barrier(); /* wait for the work to be queued */
+	flush_delayed_work(&park.work);
 
 	__i915_globals_cleanup();
 
-- 
2.24.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

* [Intel-gfx] [PATCH] drm/i915: Ratelimit i915_globals_park
  2019-12-17 23:07 [Intel-gfx] [PATCH 1/2] drm/i915: Ratelimit i915_global_park Chris Wilson
  2019-12-17 23:07 ` [Intel-gfx] [PATCH 2/2] drm/i915/gt: Ratelimit display power w/a Chris Wilson
  2019-12-17 23:28 ` [Intel-gfx] [PATCH] drm/i915: Ratelimit i915_globals_park Chris Wilson
@ 2019-12-17 23:56 ` Chris Wilson
  2019-12-18  1:14 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for series starting with drm/i915: Ratelimit i915_globals_park (rev3) Patchwork
  2019-12-18 13:05 ` Patchwork
  4 siblings, 0 replies; 6+ messages in thread
From: Chris Wilson @ 2019-12-17 23:56 UTC (permalink / raw)
  To: intel-gfx

When doing our global park, we like to be a good citizen and shrink our
slab caches (of which we have quite a few now), but each
kmem_cache_shrink() incurs a stop_machine() and so ends up being quite
expensive, causing machine-wide stalls. While ideally we would like to
throw away unused pages in our slab caches whenever it appears that we
are idling, doing so will require a much cheaper mechanism. In the
meantime use a delayed worked to impose a rate-limit that means we have
to have been idle for more than 2 seconds before we start shrinking.

References: https://gitlab.freedesktop.org/drm/intel/issues/848
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
---
 drivers/gpu/drm/i915/i915_globals.c | 43 +++++++++++++++++++++++------
 1 file changed, 35 insertions(+), 8 deletions(-)

diff --git a/drivers/gpu/drm/i915/i915_globals.c b/drivers/gpu/drm/i915/i915_globals.c
index be127cd28931..a730fe5f81b5 100644
--- a/drivers/gpu/drm/i915/i915_globals.c
+++ b/drivers/gpu/drm/i915/i915_globals.c
@@ -20,7 +20,10 @@ static LIST_HEAD(globals);
 static atomic_t active;
 static atomic_t epoch;
 static struct park_work {
-	struct rcu_work work;
+	struct delayed_work work;
+	struct rcu_head rcu;
+	unsigned long flags;
+#define PENDING 0
 	int epoch;
 } park;
 
@@ -37,11 +40,33 @@ static void i915_globals_shrink(void)
 		global->shrink();
 }
 
+static void __i915_globals_grace(struct rcu_head *rcu)
+{
+	/* Ratelimit parking as shrinking is quite slow */
+	schedule_delayed_work(&park.work, round_jiffies_up_relative(2 * HZ));
+}
+
+static void __i915_globals_queue_rcu(void)
+{
+	park.epoch = atomic_inc_return(&epoch);
+	if (!atomic_read(&active)) {
+		init_rcu_head(&park.rcu);
+		call_rcu(&park.rcu, __i915_globals_grace);
+	}
+}
+
 static void __i915_globals_park(struct work_struct *work)
 {
+	destroy_rcu_head(&park.rcu);
+
 	/* Confirm nothing woke up in the last grace period */
-	if (park.epoch == atomic_read(&epoch))
-		i915_globals_shrink();
+	if (park.epoch != atomic_read(&epoch)) {
+		__i915_globals_queue_rcu();
+		return;
+	}
+
+	clear_bit(PENDING, &park.flags);
+	i915_globals_shrink();
 }
 
 void __init i915_global_register(struct i915_global *global)
@@ -85,7 +110,7 @@ int __init i915_globals_init(void)
 		}
 	}
 
-	INIT_RCU_WORK(&park.work, __i915_globals_park);
+	INIT_DELAYED_WORK(&park.work, __i915_globals_park);
 	return 0;
 }
 
@@ -103,8 +128,9 @@ void i915_globals_park(void)
 	if (!atomic_dec_and_test(&active))
 		return;
 
-	park.epoch = atomic_inc_return(&epoch);
-	queue_rcu_work(system_wq, &park.work);
+	/* Queue cleanup after the next RCU grace period has freed slabs */
+	if (!test_and_set_bit(PENDING, &park.flags))
+		__i915_globals_queue_rcu();
 }
 
 void i915_globals_unpark(void)
@@ -116,8 +142,9 @@ void i915_globals_unpark(void)
 void __exit i915_globals_exit(void)
 {
 	/* Flush any residual park_work */
-	atomic_inc(&epoch);
-	flush_rcu_work(&park.work);
+	atomic_inc(&epoch); /* skip shrinking */
+	rcu_barrier(); /* wait for the work to be queued */
+	flush_delayed_work(&park.work);
 
 	__i915_globals_cleanup();
 
-- 
2.24.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

* [Intel-gfx] ✗ Fi.CI.BAT: failure for series starting with drm/i915: Ratelimit i915_globals_park (rev3)
  2019-12-17 23:07 [Intel-gfx] [PATCH 1/2] drm/i915: Ratelimit i915_global_park Chris Wilson
                   ` (2 preceding siblings ...)
  2019-12-17 23:56 ` Chris Wilson
@ 2019-12-18  1:14 ` Patchwork
  2019-12-18 13:05 ` Patchwork
  4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2019-12-18  1:14 UTC (permalink / raw)
  To: Chris Wilson; +Cc: intel-gfx

== Series Details ==

Series: series starting with drm/i915: Ratelimit i915_globals_park (rev3)
URL   : https://patchwork.freedesktop.org/series/71074/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_7591 -> Patchwork_15820
====================================================

Summary
-------

  **FAILURE**

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

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_module_load@reload-no-display:
    - fi-bsw-kefka:       [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-bsw-kefka/igt@i915_module_load@reload-no-display.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-bsw-kefka/igt@i915_module_load@reload-no-display.html
    - fi-apl-guc:         [PASS][3] -> [DMESG-WARN][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-apl-guc/igt@i915_module_load@reload-no-display.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-apl-guc/igt@i915_module_load@reload-no-display.html
    - fi-whl-u:           [PASS][5] -> [INCOMPLETE][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-whl-u/igt@i915_module_load@reload-no-display.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-whl-u/igt@i915_module_load@reload-no-display.html
    - fi-kbl-r:           [PASS][7] -> [INCOMPLETE][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-kbl-r/igt@i915_module_load@reload-no-display.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-kbl-r/igt@i915_module_load@reload-no-display.html
    - fi-blb-e6850:       [PASS][9] -> [INCOMPLETE][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-blb-e6850/igt@i915_module_load@reload-no-display.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-blb-e6850/igt@i915_module_load@reload-no-display.html
    - fi-bsw-nick:        [PASS][11] -> [DMESG-WARN][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-bsw-nick/igt@i915_module_load@reload-no-display.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-bsw-nick/igt@i915_module_load@reload-no-display.html
    - fi-hsw-peppy:       [PASS][13] -> [INCOMPLETE][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-hsw-peppy/igt@i915_module_load@reload-no-display.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-hsw-peppy/igt@i915_module_load@reload-no-display.html
    - fi-kbl-x1275:       [PASS][15] -> [INCOMPLETE][16]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-kbl-x1275/igt@i915_module_load@reload-no-display.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-kbl-x1275/igt@i915_module_load@reload-no-display.html
    - fi-ilk-650:         [PASS][17] -> [INCOMPLETE][18]
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-ilk-650/igt@i915_module_load@reload-no-display.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-ilk-650/igt@i915_module_load@reload-no-display.html
    - fi-bsw-n3050:       [PASS][19] -> [DMESG-WARN][20]
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-bsw-n3050/igt@i915_module_load@reload-no-display.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-bsw-n3050/igt@i915_module_load@reload-no-display.html
    - fi-cfl-guc:         [PASS][21] -> [INCOMPLETE][22]
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-cfl-guc/igt@i915_module_load@reload-no-display.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-cfl-guc/igt@i915_module_load@reload-no-display.html
    - fi-kbl-soraka:      [PASS][23] -> [DMESG-WARN][24]
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-kbl-soraka/igt@i915_module_load@reload-no-display.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-kbl-soraka/igt@i915_module_load@reload-no-display.html
    - fi-ivb-3770:        [PASS][25] -> [INCOMPLETE][26]
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-ivb-3770/igt@i915_module_load@reload-no-display.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-ivb-3770/igt@i915_module_load@reload-no-display.html
    - fi-snb-2520m:       [PASS][27] -> [INCOMPLETE][28]
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-snb-2520m/igt@i915_module_load@reload-no-display.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-snb-2520m/igt@i915_module_load@reload-no-display.html
    - fi-cfl-8700k:       [PASS][29] -> [INCOMPLETE][30]
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-cfl-8700k/igt@i915_module_load@reload-no-display.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-cfl-8700k/igt@i915_module_load@reload-no-display.html
    - fi-kbl-7500u:       [PASS][31] -> [INCOMPLETE][32]
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-kbl-7500u/igt@i915_module_load@reload-no-display.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-kbl-7500u/igt@i915_module_load@reload-no-display.html
    - fi-hsw-4770:        [PASS][33] -> [INCOMPLETE][34]
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-hsw-4770/igt@i915_module_load@reload-no-display.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-hsw-4770/igt@i915_module_load@reload-no-display.html
    - fi-kbl-guc:         [PASS][35] -> [INCOMPLETE][36]
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-kbl-guc/igt@i915_module_load@reload-no-display.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-kbl-guc/igt@i915_module_load@reload-no-display.html
    - fi-bdw-5557u:       [PASS][37] -> [INCOMPLETE][38]
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-bdw-5557u/igt@i915_module_load@reload-no-display.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-bdw-5557u/igt@i915_module_load@reload-no-display.html
    - fi-tgl-y:           [PASS][39] -> [INCOMPLETE][40]
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-tgl-y/igt@i915_module_load@reload-no-display.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-tgl-y/igt@i915_module_load@reload-no-display.html
    - fi-hsw-4770r:       [PASS][41] -> [INCOMPLETE][42]
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-hsw-4770r/igt@i915_module_load@reload-no-display.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-hsw-4770r/igt@i915_module_load@reload-no-display.html

  * igt@runner@aborted:
    - fi-pnv-d510:        NOTRUN -> [FAIL][43]
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-pnv-d510/igt@runner@aborted.html
    - fi-gdg-551:         NOTRUN -> [FAIL][44]
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-gdg-551/igt@runner@aborted.html
    - fi-whl-u:           NOTRUN -> [FAIL][45]
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-whl-u/igt@runner@aborted.html
    - fi-bxt-dsi:         NOTRUN -> [FAIL][46]
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-bxt-dsi/igt@runner@aborted.html
    - fi-cfl-guc:         NOTRUN -> [FAIL][47]
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-cfl-guc/igt@runner@aborted.html
    - fi-blb-e6850:       NOTRUN -> [FAIL][48]
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-blb-e6850/igt@runner@aborted.html
    - fi-cfl-8700k:       NOTRUN -> [FAIL][49]
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-cfl-8700k/igt@runner@aborted.html
    - fi-apl-guc:         NOTRUN -> [FAIL][50]
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-apl-guc/igt@runner@aborted.html
    - fi-elk-e7500:       NOTRUN -> [FAIL][51]
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-elk-e7500/igt@runner@aborted.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_module_load@reload-no-display:
    - fi-icl-guc:         [PASS][52] -> [INCOMPLETE][53] ([i915#140])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-icl-guc/igt@i915_module_load@reload-no-display.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-icl-guc/igt@i915_module_load@reload-no-display.html
    - fi-elk-e7500:       [PASS][54] -> [INCOMPLETE][55] ([i915#66])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-elk-e7500/igt@i915_module_load@reload-no-display.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-elk-e7500/igt@i915_module_load@reload-no-display.html
    - fi-pnv-d510:        [PASS][56] -> [INCOMPLETE][57] ([i915#299])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-pnv-d510/igt@i915_module_load@reload-no-display.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-pnv-d510/igt@i915_module_load@reload-no-display.html
    - fi-bwr-2160:        [PASS][58] -> [INCOMPLETE][59] ([i915#715])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-bwr-2160/igt@i915_module_load@reload-no-display.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-bwr-2160/igt@i915_module_load@reload-no-display.html
    - fi-kbl-8809g:       [PASS][60] -> [INCOMPLETE][61] ([fdo#103665])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-kbl-8809g/igt@i915_module_load@reload-no-display.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-kbl-8809g/igt@i915_module_load@reload-no-display.html
    - fi-icl-y:           [PASS][62] -> [INCOMPLETE][63] ([i915#140])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-icl-y/igt@i915_module_load@reload-no-display.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-icl-y/igt@i915_module_load@reload-no-display.html
    - fi-gdg-551:         [PASS][64] -> [INCOMPLETE][65] ([i915#172])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-gdg-551/igt@i915_module_load@reload-no-display.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-gdg-551/igt@i915_module_load@reload-no-display.html
    - fi-snb-2600:        [PASS][66] -> [INCOMPLETE][67] ([i915#82])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-snb-2600/igt@i915_module_load@reload-no-display.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-snb-2600/igt@i915_module_load@reload-no-display.html
    - fi-icl-u3:          [PASS][68] -> [INCOMPLETE][69] ([i915#140])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-icl-u3/igt@i915_module_load@reload-no-display.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-icl-u3/igt@i915_module_load@reload-no-display.html
    - fi-skl-6770hq:      [PASS][70] -> [INCOMPLETE][71] ([k.org#204565])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-skl-6770hq/igt@i915_module_load@reload-no-display.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-skl-6770hq/igt@i915_module_load@reload-no-display.html
    - fi-byt-n2820:       [PASS][72] -> [INCOMPLETE][73] ([i915#45])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-byt-n2820/igt@i915_module_load@reload-no-display.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-byt-n2820/igt@i915_module_load@reload-no-display.html
    - fi-skl-lmem:        [PASS][74] -> [INCOMPLETE][75] ([k.org#204565])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-skl-lmem/igt@i915_module_load@reload-no-display.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-skl-lmem/igt@i915_module_load@reload-no-display.html
    - fi-bxt-dsi:         [PASS][76] -> [INCOMPLETE][77] ([fdo#103927])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-bxt-dsi/igt@i915_module_load@reload-no-display.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-bxt-dsi/igt@i915_module_load@reload-no-display.html
    - fi-cml-u2:          [PASS][78] -> [INCOMPLETE][79] ([i915#283])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-cml-u2/igt@i915_module_load@reload-no-display.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-cml-u2/igt@i915_module_load@reload-no-display.html
    - fi-glk-dsi:         [PASS][80] -> [INCOMPLETE][81] ([i915#58] / [k.org#198133])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-glk-dsi/igt@i915_module_load@reload-no-display.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-glk-dsi/igt@i915_module_load@reload-no-display.html

  
#### Possible fixes ####

  * igt@gem_close_race@basic-threads:
    - fi-byt-j1900:       [TIMEOUT][82] ([i915#816]) -> [PASS][83]
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-byt-j1900/igt@gem_close_race@basic-threads.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-byt-j1900/igt@gem_close_race@basic-threads.html

  * igt@gem_ctx_create@basic-files:
    - {fi-tgl-u}:         [INCOMPLETE][84] ([fdo#111735]) -> [PASS][85]
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-tgl-u/igt@gem_ctx_create@basic-files.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-tgl-u/igt@gem_ctx_create@basic-files.html

  * igt@gem_exec_gttfill@basic:
    - {fi-tgl-guc}:       [INCOMPLETE][86] ([fdo#111593]) -> [PASS][87]
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-tgl-guc/igt@gem_exec_gttfill@basic.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-tgl-guc/igt@gem_exec_gttfill@basic.html

  * igt@kms_frontbuffer_tracking@basic:
    - fi-hsw-peppy:       [DMESG-WARN][88] ([i915#44]) -> [PASS][89]
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.html

  
#### Warnings ####

  * igt@gem_exec_suspend@basic-s4-devices:
    - fi-kbl-x1275:       [DMESG-WARN][90] ([fdo#107139] / [i915#62] / [i915#92] / [i915#95]) -> [DMESG-WARN][91] ([fdo#107139] / [i915#62] / [i915#92])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-kbl-x1275/igt@gem_exec_suspend@basic-s4-devices.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-kbl-x1275/igt@gem_exec_suspend@basic-s4-devices.html

  * igt@i915_pm_rpm@basic-pci-d3-state:
    - fi-kbl-x1275:       [DMESG-WARN][92] ([i915#62] / [i915#92]) -> [SKIP][93] ([fdo#109271])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-kbl-x1275/igt@i915_pm_rpm@basic-pci-d3-state.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-kbl-x1275/igt@i915_pm_rpm@basic-pci-d3-state.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - fi-kbl-x1275:       [DMESG-WARN][94] ([i915#62] / [i915#92]) -> [DMESG-WARN][95] ([i915#62] / [i915#92] / [i915#95]) +3 similar issues
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-kbl-x1275/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-kbl-x1275/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
    - fi-kbl-x1275:       [DMESG-WARN][96] ([i915#62] / [i915#92] / [i915#95]) -> [DMESG-WARN][97] ([i915#62] / [i915#92]) +7 similar issues
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-kbl-x1275/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-kbl-x1275/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html

  * igt@runner@aborted:
    - fi-icl-guc:         [FAIL][98] ([fdo#110943] / [fdo#111093]) -> [FAIL][99] ([fdo#111093])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-icl-guc/igt@runner@aborted.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-icl-guc/igt@runner@aborted.html
    - fi-byt-j1900:       [FAIL][100] ([i915#816]) -> [FAIL][101] ([fdo#111249])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-byt-j1900/igt@runner@aborted.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-byt-j1900/igt@runner@aborted.html
    - fi-kbl-8809g:       [FAIL][102] -> [FAIL][103] ([i915#592])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-kbl-8809g/igt@runner@aborted.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-kbl-8809g/igt@runner@aborted.html

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

  [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#107139]: https://bugs.freedesktop.org/show_bug.cgi?id=107139
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#110943]: https://bugs.freedesktop.org/show_bug.cgi?id=110943
  [fdo#111093]: https://bugs.freedesktop.org/show_bug.cgi?id=111093
  [fdo#111249]: https://bugs.freedesktop.org/show_bug.cgi?id=111249
  [fdo#111593]: https://bugs.freedesktop.org/show_bug.cgi?id=111593
  [fdo#111735]: https://bugs.freedesktop.org/show_bug.cgi?id=111735
  [i915#140]: https://gitlab.freedesktop.org/drm/intel/issues/140
  [i915#172]: https://gitlab.freedesktop.org/drm/intel/issues/172
  [i915#283]: https://gitlab.freedesktop.org/drm/intel/issues/283
  [i915#299]: https://gitlab.freedesktop.org/drm/intel/issues/299
  [i915#44]: https://gitlab.freedesktop.org/drm/intel/issues/44
  [i915#45]: https://gitlab.freedesktop.org/drm/intel/issues/45
  [i915#58]: https://gitlab.freedesktop.org/drm/intel/issues/58
  [i915#592]: https://gitlab.freedesktop.org/drm/intel/issues/592
  [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62
  [i915#66]: https://gitlab.freedesktop.org/drm/intel/issues/66
  [i915#715]: https://gitlab.freedesktop.org/drm/intel/issues/715
  [i915#816]: https://gitlab.freedesktop.org/drm/intel/issues/816
  [i915#82]: https://gitlab.freedesktop.org/drm/intel/issues/82
  [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92
  [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95
  [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133
  [k.org#204565]: https://bugzilla.kernel.org/show_bug.cgi?id=204565


Participating hosts (51 -> 45)
------------------------------

  Additional (1): fi-icl-u2 
  Missing    (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * Linux: CI_DRM_7591 -> Patchwork_15820

  CI-20190529: 20190529
  CI_DRM_7591: 977eb2b7ca4efceca4baf88a612e751f5f819999 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_5350: 36431c5923099582e87379aec8e16d43090d06a7 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_15820: 691d533e90028b77d4b09f02b060167022458a36 @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

691d533e9002 drm/i915/gt: Ratelimit display power w/a
309993b6b554 drm/i915: Ratelimit i915_globals_park

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/index.html
_______________________________________________
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

* [Intel-gfx] ✗ Fi.CI.BAT: failure for series starting with drm/i915: Ratelimit i915_globals_park (rev3)
  2019-12-17 23:07 [Intel-gfx] [PATCH 1/2] drm/i915: Ratelimit i915_global_park Chris Wilson
                   ` (3 preceding siblings ...)
  2019-12-18  1:14 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for series starting with drm/i915: Ratelimit i915_globals_park (rev3) Patchwork
@ 2019-12-18 13:05 ` Patchwork
  4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2019-12-18 13:05 UTC (permalink / raw)
  To: Chris Wilson; +Cc: intel-gfx

== Series Details ==

Series: series starting with drm/i915: Ratelimit i915_globals_park (rev3)
URL   : https://patchwork.freedesktop.org/series/71074/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_7591 -> Patchwork_15820
====================================================

Summary
-------

  **FAILURE**

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

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@i915_module_load@reload-no-display:
    - fi-bsw-kefka:       [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-bsw-kefka/igt@i915_module_load@reload-no-display.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-bsw-kefka/igt@i915_module_load@reload-no-display.html
    - fi-apl-guc:         [PASS][3] -> [DMESG-WARN][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-apl-guc/igt@i915_module_load@reload-no-display.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-apl-guc/igt@i915_module_load@reload-no-display.html
    - fi-whl-u:           [PASS][5] -> [INCOMPLETE][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-whl-u/igt@i915_module_load@reload-no-display.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-whl-u/igt@i915_module_load@reload-no-display.html
    - fi-kbl-r:           [PASS][7] -> [INCOMPLETE][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-kbl-r/igt@i915_module_load@reload-no-display.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-kbl-r/igt@i915_module_load@reload-no-display.html
    - fi-blb-e6850:       [PASS][9] -> [INCOMPLETE][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-blb-e6850/igt@i915_module_load@reload-no-display.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-blb-e6850/igt@i915_module_load@reload-no-display.html
    - fi-bsw-nick:        [PASS][11] -> [DMESG-WARN][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-bsw-nick/igt@i915_module_load@reload-no-display.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-bsw-nick/igt@i915_module_load@reload-no-display.html
    - fi-hsw-peppy:       [PASS][13] -> [INCOMPLETE][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-hsw-peppy/igt@i915_module_load@reload-no-display.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-hsw-peppy/igt@i915_module_load@reload-no-display.html
    - fi-kbl-x1275:       [PASS][15] -> [INCOMPLETE][16]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-kbl-x1275/igt@i915_module_load@reload-no-display.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-kbl-x1275/igt@i915_module_load@reload-no-display.html
    - fi-ilk-650:         [PASS][17] -> [INCOMPLETE][18]
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-ilk-650/igt@i915_module_load@reload-no-display.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-ilk-650/igt@i915_module_load@reload-no-display.html
    - fi-bsw-n3050:       [PASS][19] -> [DMESG-WARN][20]
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-bsw-n3050/igt@i915_module_load@reload-no-display.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-bsw-n3050/igt@i915_module_load@reload-no-display.html
    - fi-cfl-guc:         [PASS][21] -> [INCOMPLETE][22]
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-cfl-guc/igt@i915_module_load@reload-no-display.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-cfl-guc/igt@i915_module_load@reload-no-display.html
    - fi-kbl-soraka:      [PASS][23] -> [DMESG-WARN][24]
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-kbl-soraka/igt@i915_module_load@reload-no-display.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-kbl-soraka/igt@i915_module_load@reload-no-display.html
    - fi-ivb-3770:        [PASS][25] -> [INCOMPLETE][26]
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-ivb-3770/igt@i915_module_load@reload-no-display.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-ivb-3770/igt@i915_module_load@reload-no-display.html
    - fi-snb-2520m:       [PASS][27] -> [INCOMPLETE][28]
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-snb-2520m/igt@i915_module_load@reload-no-display.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-snb-2520m/igt@i915_module_load@reload-no-display.html
    - fi-cfl-8700k:       [PASS][29] -> [INCOMPLETE][30]
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-cfl-8700k/igt@i915_module_load@reload-no-display.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-cfl-8700k/igt@i915_module_load@reload-no-display.html
    - fi-kbl-7500u:       [PASS][31] -> [INCOMPLETE][32]
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-kbl-7500u/igt@i915_module_load@reload-no-display.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-kbl-7500u/igt@i915_module_load@reload-no-display.html
    - fi-hsw-4770:        [PASS][33] -> [INCOMPLETE][34]
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-hsw-4770/igt@i915_module_load@reload-no-display.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-hsw-4770/igt@i915_module_load@reload-no-display.html
    - fi-kbl-guc:         [PASS][35] -> [INCOMPLETE][36]
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-kbl-guc/igt@i915_module_load@reload-no-display.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-kbl-guc/igt@i915_module_load@reload-no-display.html
    - fi-bdw-5557u:       [PASS][37] -> [INCOMPLETE][38]
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-bdw-5557u/igt@i915_module_load@reload-no-display.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-bdw-5557u/igt@i915_module_load@reload-no-display.html
    - fi-tgl-y:           [PASS][39] -> [INCOMPLETE][40]
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-tgl-y/igt@i915_module_load@reload-no-display.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-tgl-y/igt@i915_module_load@reload-no-display.html
    - fi-hsw-4770r:       [PASS][41] -> [INCOMPLETE][42]
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-hsw-4770r/igt@i915_module_load@reload-no-display.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-hsw-4770r/igt@i915_module_load@reload-no-display.html

  * igt@runner@aborted:
    - fi-pnv-d510:        NOTRUN -> [FAIL][43]
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-pnv-d510/igt@runner@aborted.html
    - fi-gdg-551:         NOTRUN -> [FAIL][44]
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-gdg-551/igt@runner@aborted.html
    - fi-whl-u:           NOTRUN -> [FAIL][45]
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-whl-u/igt@runner@aborted.html
    - fi-bxt-dsi:         NOTRUN -> [FAIL][46]
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-bxt-dsi/igt@runner@aborted.html
    - fi-cfl-guc:         NOTRUN -> [FAIL][47]
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-cfl-guc/igt@runner@aborted.html
    - fi-blb-e6850:       NOTRUN -> [FAIL][48]
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-blb-e6850/igt@runner@aborted.html
    - fi-cfl-8700k:       NOTRUN -> [FAIL][49]
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-cfl-8700k/igt@runner@aborted.html
    - fi-apl-guc:         NOTRUN -> [FAIL][50]
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-apl-guc/igt@runner@aborted.html
    - fi-elk-e7500:       NOTRUN -> [FAIL][51]
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-elk-e7500/igt@runner@aborted.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_module_load@reload-no-display:
    - fi-icl-guc:         [PASS][52] -> [INCOMPLETE][53] ([i915#140])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-icl-guc/igt@i915_module_load@reload-no-display.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-icl-guc/igt@i915_module_load@reload-no-display.html
    - fi-elk-e7500:       [PASS][54] -> [INCOMPLETE][55] ([i915#66])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-elk-e7500/igt@i915_module_load@reload-no-display.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-elk-e7500/igt@i915_module_load@reload-no-display.html
    - fi-pnv-d510:        [PASS][56] -> [INCOMPLETE][57] ([i915#299])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-pnv-d510/igt@i915_module_load@reload-no-display.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-pnv-d510/igt@i915_module_load@reload-no-display.html
    - fi-bwr-2160:        [PASS][58] -> [INCOMPLETE][59] ([i915#715])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-bwr-2160/igt@i915_module_load@reload-no-display.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-bwr-2160/igt@i915_module_load@reload-no-display.html
    - fi-kbl-8809g:       [PASS][60] -> [INCOMPLETE][61] ([fdo#103665])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-kbl-8809g/igt@i915_module_load@reload-no-display.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-kbl-8809g/igt@i915_module_load@reload-no-display.html
    - fi-icl-y:           [PASS][62] -> [INCOMPLETE][63] ([i915#140])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-icl-y/igt@i915_module_load@reload-no-display.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-icl-y/igt@i915_module_load@reload-no-display.html
    - fi-gdg-551:         [PASS][64] -> [INCOMPLETE][65] ([i915#172])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-gdg-551/igt@i915_module_load@reload-no-display.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-gdg-551/igt@i915_module_load@reload-no-display.html
    - fi-snb-2600:        [PASS][66] -> [INCOMPLETE][67] ([i915#82])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-snb-2600/igt@i915_module_load@reload-no-display.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-snb-2600/igt@i915_module_load@reload-no-display.html
    - fi-icl-u3:          [PASS][68] -> [INCOMPLETE][69] ([i915#140])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-icl-u3/igt@i915_module_load@reload-no-display.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-icl-u3/igt@i915_module_load@reload-no-display.html
    - fi-skl-6770hq:      [PASS][70] -> [INCOMPLETE][71] ([k.org#204565])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-skl-6770hq/igt@i915_module_load@reload-no-display.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-skl-6770hq/igt@i915_module_load@reload-no-display.html
    - fi-byt-n2820:       [PASS][72] -> [INCOMPLETE][73] ([i915#45])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-byt-n2820/igt@i915_module_load@reload-no-display.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-byt-n2820/igt@i915_module_load@reload-no-display.html
    - fi-skl-lmem:        [PASS][74] -> [INCOMPLETE][75] ([k.org#204565])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-skl-lmem/igt@i915_module_load@reload-no-display.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-skl-lmem/igt@i915_module_load@reload-no-display.html
    - fi-bxt-dsi:         [PASS][76] -> [INCOMPLETE][77] ([fdo#103927])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-bxt-dsi/igt@i915_module_load@reload-no-display.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-bxt-dsi/igt@i915_module_load@reload-no-display.html
    - fi-cml-u2:          [PASS][78] -> [INCOMPLETE][79] ([i915#283])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-cml-u2/igt@i915_module_load@reload-no-display.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-cml-u2/igt@i915_module_load@reload-no-display.html
    - fi-glk-dsi:         [PASS][80] -> [INCOMPLETE][81] ([i915#58] / [k.org#198133])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-glk-dsi/igt@i915_module_load@reload-no-display.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-glk-dsi/igt@i915_module_load@reload-no-display.html

  
#### Possible fixes ####

  * igt@gem_close_race@basic-threads:
    - fi-byt-j1900:       [TIMEOUT][82] ([i915#816]) -> [PASS][83]
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-byt-j1900/igt@gem_close_race@basic-threads.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-byt-j1900/igt@gem_close_race@basic-threads.html

  * igt@gem_ctx_create@basic-files:
    - {fi-tgl-u}:         [INCOMPLETE][84] ([fdo#111735]) -> [PASS][85]
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-tgl-u/igt@gem_ctx_create@basic-files.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-tgl-u/igt@gem_ctx_create@basic-files.html

  * igt@gem_exec_gttfill@basic:
    - {fi-tgl-guc}:       [INCOMPLETE][86] ([fdo#111593]) -> [PASS][87]
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-tgl-guc/igt@gem_exec_gttfill@basic.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-tgl-guc/igt@gem_exec_gttfill@basic.html

  * igt@kms_frontbuffer_tracking@basic:
    - fi-hsw-peppy:       [DMESG-WARN][88] ([i915#44]) -> [PASS][89]
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.html

  
#### Warnings ####

  * igt@gem_exec_suspend@basic-s4-devices:
    - fi-kbl-x1275:       [DMESG-WARN][90] ([fdo#107139] / [i915#62] / [i915#92] / [i915#95]) -> [DMESG-WARN][91] ([fdo#107139] / [i915#62] / [i915#92])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-kbl-x1275/igt@gem_exec_suspend@basic-s4-devices.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-kbl-x1275/igt@gem_exec_suspend@basic-s4-devices.html

  * igt@i915_pm_rpm@basic-pci-d3-state:
    - fi-kbl-x1275:       [DMESG-WARN][92] ([i915#62] / [i915#92]) -> [SKIP][93] ([fdo#109271])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-kbl-x1275/igt@i915_pm_rpm@basic-pci-d3-state.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-kbl-x1275/igt@i915_pm_rpm@basic-pci-d3-state.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - fi-kbl-x1275:       [DMESG-WARN][94] ([i915#62] / [i915#92]) -> [DMESG-WARN][95] ([i915#62] / [i915#92] / [i915#95]) +3 similar issues
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-kbl-x1275/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-kbl-x1275/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
    - fi-kbl-x1275:       [DMESG-WARN][96] ([i915#62] / [i915#92] / [i915#95]) -> [DMESG-WARN][97] ([i915#62] / [i915#92]) +7 similar issues
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-kbl-x1275/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-kbl-x1275/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html

  * igt@runner@aborted:
    - fi-icl-guc:         [FAIL][98] ([fdo#110943] / [fdo#111093]) -> [FAIL][99] ([fdo#111093])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-icl-guc/igt@runner@aborted.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-icl-guc/igt@runner@aborted.html
    - fi-byt-j1900:       [FAIL][100] ([i915#816]) -> [FAIL][101] ([fdo#111249])
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-byt-j1900/igt@runner@aborted.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-byt-j1900/igt@runner@aborted.html
    - fi-kbl-8809g:       [FAIL][102] ([i915#858]) -> [FAIL][103] ([i915#592])
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7591/fi-kbl-8809g/igt@runner@aborted.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/fi-kbl-8809g/igt@runner@aborted.html

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

  [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#107139]: https://bugs.freedesktop.org/show_bug.cgi?id=107139
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#110943]: https://bugs.freedesktop.org/show_bug.cgi?id=110943
  [fdo#111093]: https://bugs.freedesktop.org/show_bug.cgi?id=111093
  [fdo#111249]: https://bugs.freedesktop.org/show_bug.cgi?id=111249
  [fdo#111593]: https://bugs.freedesktop.org/show_bug.cgi?id=111593
  [fdo#111735]: https://bugs.freedesktop.org/show_bug.cgi?id=111735
  [i915#140]: https://gitlab.freedesktop.org/drm/intel/issues/140
  [i915#172]: https://gitlab.freedesktop.org/drm/intel/issues/172
  [i915#283]: https://gitlab.freedesktop.org/drm/intel/issues/283
  [i915#299]: https://gitlab.freedesktop.org/drm/intel/issues/299
  [i915#44]: https://gitlab.freedesktop.org/drm/intel/issues/44
  [i915#45]: https://gitlab.freedesktop.org/drm/intel/issues/45
  [i915#58]: https://gitlab.freedesktop.org/drm/intel/issues/58
  [i915#592]: https://gitlab.freedesktop.org/drm/intel/issues/592
  [i915#62]: https://gitlab.freedesktop.org/drm/intel/issues/62
  [i915#66]: https://gitlab.freedesktop.org/drm/intel/issues/66
  [i915#715]: https://gitlab.freedesktop.org/drm/intel/issues/715
  [i915#816]: https://gitlab.freedesktop.org/drm/intel/issues/816
  [i915#82]: https://gitlab.freedesktop.org/drm/intel/issues/82
  [i915#858]: https://gitlab.freedesktop.org/drm/intel/issues/858
  [i915#92]: https://gitlab.freedesktop.org/drm/intel/issues/92
  [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95
  [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133
  [k.org#204565]: https://bugzilla.kernel.org/show_bug.cgi?id=204565


Participating hosts (51 -> 45)
------------------------------

  Additional (1): fi-icl-u2 
  Missing    (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * Linux: CI_DRM_7591 -> Patchwork_15820

  CI-20190529: 20190529
  CI_DRM_7591: 977eb2b7ca4efceca4baf88a612e751f5f819999 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_5350: 36431c5923099582e87379aec8e16d43090d06a7 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_15820: 691d533e90028b77d4b09f02b060167022458a36 @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

691d533e9002 drm/i915/gt: Ratelimit display power w/a
309993b6b554 drm/i915: Ratelimit i915_globals_park

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_15820/index.html
_______________________________________________
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

end of thread, other threads:[~2019-12-18 13:05 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-17 23:07 [Intel-gfx] [PATCH 1/2] drm/i915: Ratelimit i915_global_park Chris Wilson
2019-12-17 23:07 ` [Intel-gfx] [PATCH 2/2] drm/i915/gt: Ratelimit display power w/a Chris Wilson
2019-12-17 23:28 ` [Intel-gfx] [PATCH] drm/i915: Ratelimit i915_globals_park Chris Wilson
2019-12-17 23:56 ` Chris Wilson
2019-12-18  1:14 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for series starting with drm/i915: Ratelimit i915_globals_park (rev3) Patchwork
2019-12-18 13:05 ` 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.