intel-gfx.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [Intel-gfx] [PATCH] fbdev/efifb: Release PCI device's runtime PM ref during FB destroy
@ 2021-08-02 13:35 Imre Deak
  2021-08-02 15:05 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
                   ` (7 more replies)
  0 siblings, 8 replies; 19+ messages in thread
From: Imre Deak @ 2021-08-02 13:35 UTC (permalink / raw)
  To: linux-fbdev, Kai-Heng Feng
  Cc: dri-devel, Thomas Zimmermann, Alex Deucher, intel-gfx

Atm the EFI FB driver gets a runtime PM reference for the associated GFX
PCI device during driver probing and releases it only when removing the
driver.

When fbcon switches to the FB provided by the PCI device's driver (for
instance i915/drmfb), the EFI FB will get only unregistered without the
EFI FB driver getting unloaded, keeping the runtime PM reference
acquired during driver probing. This reference will prevent the PCI
driver from runtime suspending the device.

Fix this by releasing the RPM reference from the EFI FB's destroy hook,
called when the FB gets unregistered.

Fixes: a6c0fd3d5a8b ("efifb: Ensure graphics device for efifb stays at PCI D0")
Cc: Kai-Heng Feng <kai.heng.feng@canonical.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
---
 drivers/video/fbdev/efifb.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/drivers/video/fbdev/efifb.c b/drivers/video/fbdev/efifb.c
index 8ea8f079cde26..25cdea32b9633 100644
--- a/drivers/video/fbdev/efifb.c
+++ b/drivers/video/fbdev/efifb.c
@@ -47,6 +47,8 @@ static bool use_bgrt = true;
 static bool request_mem_succeeded = false;
 static u64 mem_flags = EFI_MEMORY_WC | EFI_MEMORY_UC;
 
+static struct pci_dev *efifb_pci_dev;	/* dev with BAR covering the efifb */
+
 static struct fb_var_screeninfo efifb_defined = {
 	.activate		= FB_ACTIVATE_NOW,
 	.height			= -1,
@@ -243,6 +245,9 @@ static inline void efifb_show_boot_graphics(struct fb_info *info) {}
 
 static void efifb_destroy(struct fb_info *info)
 {
+	if (efifb_pci_dev)
+		pm_runtime_put(&efifb_pci_dev->dev);
+
 	if (info->screen_base) {
 		if (mem_flags & (EFI_MEMORY_UC | EFI_MEMORY_WC))
 			iounmap(info->screen_base);
@@ -333,7 +338,6 @@ ATTRIBUTE_GROUPS(efifb);
 
 static bool pci_dev_disabled;	/* FB base matches BAR of a disabled device */
 
-static struct pci_dev *efifb_pci_dev;	/* dev with BAR covering the efifb */
 static struct resource *bar_resource;
 static u64 bar_offset;
 
@@ -603,8 +607,6 @@ static int efifb_remove(struct platform_device *pdev)
 	unregister_framebuffer(info);
 	sysfs_remove_groups(&pdev->dev.kobj, efifb_groups);
 	framebuffer_release(info);
-	if (efifb_pci_dev)
-		pm_runtime_put(&efifb_pci_dev->dev);
 
 	return 0;
 }
-- 
2.27.0


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

* [Intel-gfx] ✓ Fi.CI.BAT: success for fbdev/efifb: Release PCI device's runtime PM ref during FB destroy
  2021-08-02 13:35 [Intel-gfx] [PATCH] fbdev/efifb: Release PCI device's runtime PM ref during FB destroy Imre Deak
@ 2021-08-02 15:05 ` Patchwork
  2021-08-03  0:58 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2021-08-02 15:05 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-gfx

[-- Attachment #1: Type: text/plain, Size: 15400 bytes --]

== Series Details ==

Series: fbdev/efifb: Release PCI device's runtime PM ref during FB destroy
URL   : https://patchwork.freedesktop.org/series/93307/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_10437 -> Patchwork_20760
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_basic@semaphore:
    - fi-bsw-nick:        NOTRUN -> [SKIP][1] ([fdo#109271]) +17 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-bsw-nick/igt@amdgpu/amd_basic@semaphore.html

  * igt@gem_exec_parallel@engines@userptr:
    - fi-pnv-d510:        [PASS][2] -> [INCOMPLETE][3] ([i915#299])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-pnv-d510/igt@gem_exec_parallel@engines@userptr.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-pnv-d510/igt@gem_exec_parallel@engines@userptr.html

  * igt@runner@aborted:
    - fi-pnv-d510:        NOTRUN -> [FAIL][4] ([i915#2403] / [i915#2505] / [i915#2722])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-pnv-d510/igt@runner@aborted.html

  
#### Possible fixes ####

  * igt@i915_pm_rpm@basic-pci-d3-state:
    - fi-glk-dsi:         [SKIP][5] ([fdo#109271]) -> [PASS][6] +1 similar issue
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-glk-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-glk-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html
    - fi-kbl-7500u:       [SKIP][7] ([fdo#109271]) -> [PASS][8] +1 similar issue
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-kbl-7500u/igt@i915_pm_rpm@basic-pci-d3-state.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-kbl-7500u/igt@i915_pm_rpm@basic-pci-d3-state.html
    - fi-kbl-soraka:      [SKIP][9] ([fdo#109271]) -> [PASS][10] +1 similar issue
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-kbl-soraka/igt@i915_pm_rpm@basic-pci-d3-state.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-kbl-soraka/igt@i915_pm_rpm@basic-pci-d3-state.html
    - fi-hsw-4770:        [SKIP][11] ([fdo#109271]) -> [PASS][12] +1 similar issue
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-hsw-4770/igt@i915_pm_rpm@basic-pci-d3-state.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-hsw-4770/igt@i915_pm_rpm@basic-pci-d3-state.html
    - fi-bxt-dsi:         [SKIP][13] ([fdo#109271]) -> [PASS][14] +1 similar issue
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-bxt-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-bxt-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html
    - {fi-tgl-dsi}:       [SKIP][15] ([i915#579]) -> [PASS][16] +1 similar issue
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-tgl-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-tgl-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html

  * igt@i915_pm_rpm@basic-rte:
    - fi-kbl-7500u:       [FAIL][17] ([i915#579]) -> [PASS][18]
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-kbl-7500u/igt@i915_pm_rpm@basic-rte.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-kbl-7500u/igt@i915_pm_rpm@basic-rte.html
    - fi-cml-u2:          [FAIL][19] ([i915#579]) -> [PASS][20]
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-cml-u2/igt@i915_pm_rpm@basic-rte.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-cml-u2/igt@i915_pm_rpm@basic-rte.html
    - fi-bxt-dsi:         [FAIL][21] ([i915#579]) -> [PASS][22]
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-bxt-dsi/igt@i915_pm_rpm@basic-rte.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-bxt-dsi/igt@i915_pm_rpm@basic-rte.html
    - fi-hsw-4770:        [FAIL][23] ([i915#579]) -> [PASS][24]
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-hsw-4770/igt@i915_pm_rpm@basic-rte.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-hsw-4770/igt@i915_pm_rpm@basic-rte.html
    - fi-tgl-1115g4:      [FAIL][25] ([i915#579]) -> [PASS][26]
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html
    - fi-cfl-guc:         [FAIL][27] ([i915#579]) -> [PASS][28]
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-cfl-guc/igt@i915_pm_rpm@basic-rte.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-cfl-guc/igt@i915_pm_rpm@basic-rte.html
    - fi-skl-guc:         [FAIL][29] ([i915#579]) -> [PASS][30]
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-skl-guc/igt@i915_pm_rpm@basic-rte.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-skl-guc/igt@i915_pm_rpm@basic-rte.html
    - fi-tgl-u2:          [FAIL][31] ([i915#579]) -> [PASS][32]
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-tgl-u2/igt@i915_pm_rpm@basic-rte.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-tgl-u2/igt@i915_pm_rpm@basic-rte.html
    - fi-cfl-8700k:       [FAIL][33] ([i915#579]) -> [PASS][34]
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-cfl-8700k/igt@i915_pm_rpm@basic-rte.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-cfl-8700k/igt@i915_pm_rpm@basic-rte.html
    - fi-icl-y:           [FAIL][35] ([i915#579]) -> [PASS][36]
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-icl-y/igt@i915_pm_rpm@basic-rte.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-icl-y/igt@i915_pm_rpm@basic-rte.html
    - {fi-ehl-2}:         [FAIL][37] ([i915#579]) -> [PASS][38]
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-ehl-2/igt@i915_pm_rpm@basic-rte.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-ehl-2/igt@i915_pm_rpm@basic-rte.html
    - fi-skl-6700k2:      [FAIL][39] ([i915#579]) -> [PASS][40]
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-skl-6700k2/igt@i915_pm_rpm@basic-rte.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-skl-6700k2/igt@i915_pm_rpm@basic-rte.html
    - {fi-tgl-dsi}:       [FAIL][41] ([i915#579]) -> [PASS][42]
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-tgl-dsi/igt@i915_pm_rpm@basic-rte.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-tgl-dsi/igt@i915_pm_rpm@basic-rte.html
    - fi-glk-dsi:         [FAIL][43] ([i915#579]) -> [PASS][44]
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-glk-dsi/igt@i915_pm_rpm@basic-rte.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-glk-dsi/igt@i915_pm_rpm@basic-rte.html
    - fi-kbl-x1275:       [FAIL][45] ([i915#579]) -> [PASS][46]
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-kbl-x1275/igt@i915_pm_rpm@basic-rte.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-kbl-x1275/igt@i915_pm_rpm@basic-rte.html
    - fi-bsw-kefka:       [FAIL][47] ([i915#3855]) -> [PASS][48]
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-bsw-kefka/igt@i915_pm_rpm@basic-rte.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-bsw-kefka/igt@i915_pm_rpm@basic-rte.html
    - fi-cfl-8109u:       [FAIL][49] ([i915#579]) -> [PASS][50]
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html
    - fi-kbl-soraka:      [FAIL][51] ([i915#579]) -> [PASS][52]
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-kbl-soraka/igt@i915_pm_rpm@basic-rte.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-kbl-soraka/igt@i915_pm_rpm@basic-rte.html

  * igt@i915_pm_rpm@module-reload:
    - fi-cfl-8109u:       [SKIP][53] ([fdo#109271]) -> [PASS][54] +1 similar issue
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html
    - {fi-hsw-gt1}:       [SKIP][55] ([fdo#109271]) -> [PASS][56]
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-hsw-gt1/igt@i915_pm_rpm@module-reload.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-hsw-gt1/igt@i915_pm_rpm@module-reload.html
    - fi-cfl-8700k:       [SKIP][57] ([fdo#109271]) -> [PASS][58] +1 similar issue
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-cfl-8700k/igt@i915_pm_rpm@module-reload.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-cfl-8700k/igt@i915_pm_rpm@module-reload.html
    - fi-bsw-kefka:       [SKIP][59] ([fdo#109271]) -> [PASS][60] +1 similar issue
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-bsw-kefka/igt@i915_pm_rpm@module-reload.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-bsw-kefka/igt@i915_pm_rpm@module-reload.html
    - fi-kbl-x1275:       [SKIP][61] ([fdo#109271]) -> [PASS][62] +1 similar issue
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-kbl-x1275/igt@i915_pm_rpm@module-reload.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-kbl-x1275/igt@i915_pm_rpm@module-reload.html
    - fi-tgl-u2:          [SKIP][63] ([i915#579]) -> [PASS][64] +1 similar issue
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-tgl-u2/igt@i915_pm_rpm@module-reload.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-tgl-u2/igt@i915_pm_rpm@module-reload.html
    - {fi-ehl-2}:         [SKIP][65] ([i915#3844]) -> [PASS][66] +1 similar issue
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-ehl-2/igt@i915_pm_rpm@module-reload.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-ehl-2/igt@i915_pm_rpm@module-reload.html
    - fi-skl-guc:         [SKIP][67] ([fdo#109271]) -> [PASS][68] +1 similar issue
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-skl-guc/igt@i915_pm_rpm@module-reload.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-skl-guc/igt@i915_pm_rpm@module-reload.html
    - fi-skl-6700k2:      [SKIP][69] ([fdo#109271]) -> [PASS][70] +1 similar issue
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-skl-6700k2/igt@i915_pm_rpm@module-reload.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-skl-6700k2/igt@i915_pm_rpm@module-reload.html
    - fi-cfl-guc:         [SKIP][71] ([fdo#109271]) -> [PASS][72] +1 similar issue
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-cfl-guc/igt@i915_pm_rpm@module-reload.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-cfl-guc/igt@i915_pm_rpm@module-reload.html
    - fi-icl-y:           [SKIP][73] ([i915#579]) -> [PASS][74] +1 similar issue
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-icl-y/igt@i915_pm_rpm@module-reload.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-icl-y/igt@i915_pm_rpm@module-reload.html
    - fi-tgl-1115g4:      [SKIP][75] ([i915#579]) -> [PASS][76] +1 similar issue
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html
    - fi-cml-u2:          [SKIP][77] ([i915#579]) -> [PASS][78] +1 similar issue
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-cml-u2/igt@i915_pm_rpm@module-reload.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-cml-u2/igt@i915_pm_rpm@module-reload.html
    - fi-kbl-guc:         [SKIP][79] ([fdo#109271]) -> [PASS][80]
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live@execlists:
    - fi-bsw-nick:        [INCOMPLETE][81] ([i915#2782] / [i915#2940]) -> [PASS][82]
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-bsw-nick/igt@i915_selftest@live@execlists.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-bsw-nick/igt@i915_selftest@live@execlists.html

  * igt@i915_selftest@live@hangcheck:
    - {fi-hsw-gt1}:       [DMESG-WARN][83] ([i915#3303]) -> [PASS][84]
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-hsw-gt1/igt@i915_selftest@live@hangcheck.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-hsw-gt1/igt@i915_selftest@live@hangcheck.html

  
#### Warnings ####

  * igt@i915_pm_rpm@basic-rte:
    - fi-kbl-guc:         [FAIL][85] ([i915#579]) -> [SKIP][86] ([fdo#109271])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html

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

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [i915#2403]: https://gitlab.freedesktop.org/drm/intel/issues/2403
  [i915#2505]: https://gitlab.freedesktop.org/drm/intel/issues/2505
  [i915#2722]: https://gitlab.freedesktop.org/drm/intel/issues/2722
  [i915#2782]: https://gitlab.freedesktop.org/drm/intel/issues/2782
  [i915#2940]: https://gitlab.freedesktop.org/drm/intel/issues/2940
  [i915#299]: https://gitlab.freedesktop.org/drm/intel/issues/299
  [i915#3013]: https://gitlab.freedesktop.org/drm/intel/issues/3013
  [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303
  [i915#3844]: https://gitlab.freedesktop.org/drm/intel/issues/3844
  [i915#3855]: https://gitlab.freedesktop.org/drm/intel/issues/3855
  [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579


Participating hosts (37 -> 33)
------------------------------

  Missing    (4): fi-bdw-samus fi-bsw-cyan bat-jsl-1 fi-hsw-4200u 


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

  * Linux: CI_DRM_10437 -> Patchwork_20760

  CI-20190529: 20190529
  CI_DRM_10437: fe234200649024b4fb5164d99eca74d62ae696d4 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_6159: 6135b9cc319ed965e3aafb5b2ae2abf4762a06b2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  Patchwork_20760: 1c4ced7e4cb6ea14a4d662ab6865c0b9450a86da @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

1c4ced7e4cb6 fbdev/efifb: Release PCI device's runtime PM ref during FB destroy

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/index.html

[-- Attachment #2: Type: text/html, Size: 19011 bytes --]

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

* [Intel-gfx] ✗ Fi.CI.IGT: failure for fbdev/efifb: Release PCI device's runtime PM ref during FB destroy
  2021-08-02 13:35 [Intel-gfx] [PATCH] fbdev/efifb: Release PCI device's runtime PM ref during FB destroy Imre Deak
  2021-08-02 15:05 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
@ 2021-08-03  0:58 ` Patchwork
  2021-08-04 22:23 ` [Intel-gfx] [PATCH] " Daniel Vetter
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2021-08-03  0:58 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-gfx

[-- Attachment #1: Type: text/plain, Size: 30289 bytes --]

== Series Details ==

Series: fbdev/efifb: Release PCI device's runtime PM ref during FB destroy
URL   : https://patchwork.freedesktop.org/series/93307/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_10437_full -> Patchwork_20760_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with Patchwork_20760_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in Patchwork_20760_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_20760_full:

### IGT changes ###

#### Possible regressions ####

  * igt@gem_ctx_isolation@preservation-s3@vcs0:
    - shard-kbl:          [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-kbl1/igt@gem_ctx_isolation@preservation-s3@vcs0.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-kbl4/igt@gem_ctx_isolation@preservation-s3@vcs0.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_create@create-clear:
    - shard-glk:          [PASS][3] -> [FAIL][4] ([i915#1888] / [i915#3160])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-glk5/igt@gem_create@create-clear.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-glk7/igt@gem_create@create-clear.html

  * igt@gem_ctx_persistence@legacy-engines-mixed-process:
    - shard-snb:          NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#1099]) +6 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-snb6/igt@gem_ctx_persistence@legacy-engines-mixed-process.html

  * igt@gem_ctx_persistence@many-contexts:
    - shard-tglb:         [PASS][6] -> [FAIL][7] ([i915#2410])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-tglb1/igt@gem_ctx_persistence@many-contexts.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-tglb3/igt@gem_ctx_persistence@many-contexts.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-apl:          [PASS][8] -> [SKIP][9] ([fdo#109271])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-apl6/igt@gem_exec_fair@basic-none-share@rcs0.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-apl1/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_fair@basic-pace@bcs0:
    - shard-tglb:         [PASS][10] -> [FAIL][11] ([i915#2842]) +1 similar issue
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-tglb1/igt@gem_exec_fair@basic-pace@bcs0.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-tglb3/igt@gem_exec_fair@basic-pace@bcs0.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-iclb:         NOTRUN -> [FAIL][12] ([i915#2842])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-iclb1/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
    - shard-snb:          NOTRUN -> [SKIP][13] ([fdo#109271]) +440 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-snb2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html

  * igt@gem_mmap_gtt@cpuset-big-copy-odd:
    - shard-glk:          [PASS][14] -> [FAIL][15] ([i915#1888] / [i915#307])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-glk7/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-glk7/igt@gem_mmap_gtt@cpuset-big-copy-odd.html

  * igt@gem_ppgtt@flink-and-close-vma-leak:
    - shard-glk:          [PASS][16] -> [FAIL][17] ([i915#644])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-glk7/igt@gem_ppgtt@flink-and-close-vma-leak.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-glk5/igt@gem_ppgtt@flink-and-close-vma-leak.html

  * igt@gem_pread@exhaustion:
    - shard-snb:          NOTRUN -> [WARN][18] ([i915#2658])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-snb2/igt@gem_pread@exhaustion.html

  * igt@gem_userptr_blits@dmabuf-unsync:
    - shard-iclb:         NOTRUN -> [SKIP][19] ([i915#3297])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-iclb6/igt@gem_userptr_blits@dmabuf-unsync.html

  * igt@gem_userptr_blits@input-checking:
    - shard-apl:          NOTRUN -> [DMESG-WARN][20] ([i915#3002])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-apl6/igt@gem_userptr_blits@input-checking.html

  * igt@gem_workarounds@suspend-resume-context:
    - shard-apl:          [PASS][21] -> [DMESG-WARN][22] ([i915#180]) +3 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-apl1/igt@gem_workarounds@suspend-resume-context.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-apl3/igt@gem_workarounds@suspend-resume-context.html
    - shard-kbl:          NOTRUN -> [DMESG-WARN][23] ([i915#180])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-kbl7/igt@gem_workarounds@suspend-resume-context.html

  * igt@gen9_exec_parse@allowed-all:
    - shard-iclb:         NOTRUN -> [SKIP][24] ([i915#2856])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-iclb6/igt@gen9_exec_parse@allowed-all.html

  * igt@kms_async_flips@alternate-sync-async-flip:
    - shard-glk:          [PASS][25] -> [FAIL][26] ([i915#2521])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-glk5/igt@kms_async_flips@alternate-sync-async-flip.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-glk7/igt@kms_async_flips@alternate-sync-async-flip.html

  * igt@kms_big_fb@y-tiled-64bpp-rotate-180:
    - shard-iclb:         [PASS][27] -> [DMESG-WARN][28] ([i915#3621])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-iclb5/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-iclb1/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-skl:          NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#3777])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-skl10/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
    - shard-apl:          NOTRUN -> [SKIP][30] ([fdo#109271] / [i915#3777])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-apl2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
    - shard-kbl:          NOTRUN -> [SKIP][31] ([fdo#109271]) +67 similar issues
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-kbl3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
    - shard-apl:          NOTRUN -> [SKIP][32] ([fdo#109271]) +191 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-apl6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html

  * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][33] ([i915#3689]) +1 similar issue
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-tglb5/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs:
    - shard-glk:          NOTRUN -> [SKIP][34] ([fdo#109271]) +18 similar issues
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-glk6/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-yf_tiled_ccs.html

  * igt@kms_chamelium@hdmi-hpd-with-enabled-mode:
    - shard-kbl:          NOTRUN -> [SKIP][35] ([fdo#109271] / [fdo#111827]) +5 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-kbl3/igt@kms_chamelium@hdmi-hpd-with-enabled-mode.html

  * igt@kms_chamelium@vga-hpd:
    - shard-apl:          NOTRUN -> [SKIP][36] ([fdo#109271] / [fdo#111827]) +13 similar issues
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-apl7/igt@kms_chamelium@vga-hpd.html

  * igt@kms_color@pipe-d-ctm-0-5:
    - shard-skl:          NOTRUN -> [SKIP][37] ([fdo#109271]) +80 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-skl10/igt@kms_color@pipe-d-ctm-0-5.html

  * igt@kms_color_chamelium@pipe-b-ctm-max:
    - shard-skl:          NOTRUN -> [SKIP][38] ([fdo#109271] / [fdo#111827]) +7 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-skl5/igt@kms_color_chamelium@pipe-b-ctm-max.html

  * igt@kms_color_chamelium@pipe-b-ctm-negative:
    - shard-snb:          NOTRUN -> [SKIP][39] ([fdo#109271] / [fdo#111827]) +21 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-snb2/igt@kms_color_chamelium@pipe-b-ctm-negative.html

  * igt@kms_color_chamelium@pipe-c-gamma:
    - shard-iclb:         NOTRUN -> [SKIP][40] ([fdo#109284] / [fdo#111827])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-iclb5/igt@kms_color_chamelium@pipe-c-gamma.html
    - shard-tglb:         NOTRUN -> [SKIP][41] ([fdo#109284] / [fdo#111827])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-tglb5/igt@kms_color_chamelium@pipe-c-gamma.html

  * igt@kms_color_chamelium@pipe-invalid-degamma-lut-sizes:
    - shard-glk:          NOTRUN -> [SKIP][42] ([fdo#109271] / [fdo#111827])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-glk6/igt@kms_color_chamelium@pipe-invalid-degamma-lut-sizes.html

  * igt@kms_content_protection@atomic-dpms:
    - shard-apl:          NOTRUN -> [TIMEOUT][43] ([i915#1319])
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-apl7/igt@kms_content_protection@atomic-dpms.html

  * igt@kms_content_protection@legacy:
    - shard-tglb:         NOTRUN -> [SKIP][44] ([fdo#111828])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-tglb3/igt@kms_content_protection@legacy.html

  * igt@kms_content_protection@uevent:
    - shard-apl:          NOTRUN -> [FAIL][45] ([i915#2105])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-apl2/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@pipe-d-cursor-256x256-rapid-movement:
    - shard-iclb:         NOTRUN -> [SKIP][46] ([fdo#109278]) +3 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-iclb6/igt@kms_cursor_crc@pipe-d-cursor-256x256-rapid-movement.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-skl:          NOTRUN -> [FAIL][47] ([i915#2346] / [i915#533])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-skl10/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
    - shard-iclb:         NOTRUN -> [SKIP][48] ([fdo#109274])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-iclb5/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html

  * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2:
    - shard-glk:          [PASS][49] -> [FAIL][50] ([i915#79])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-glk7/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-glk6/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2.html

  * igt@kms_flip@flip-vs-suspend-interruptible@a-edp1:
    - shard-skl:          [PASS][51] -> [INCOMPLETE][52] ([i915#146] / [i915#198])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-skl7/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-skl1/igt@kms_flip@flip-vs-suspend-interruptible@a-edp1.html

  * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1:
    - shard-skl:          NOTRUN -> [FAIL][53] ([i915#2122])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-skl6/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs:
    - shard-skl:          NOTRUN -> [INCOMPLETE][54] ([i915#3699])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-skl10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html

  * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile:
    - shard-tglb:         NOTRUN -> [SKIP][55] ([i915#2587])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-tglb5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile.html

  * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt:
    - shard-iclb:         [PASS][56] -> [FAIL][57] ([i915#2546])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
    - shard-tglb:         NOTRUN -> [SKIP][58] ([fdo#111825]) +3 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-tglb3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-rte:
    - shard-iclb:         NOTRUN -> [SKIP][59] ([fdo#109280]) +2 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-iclb5/igt@kms_frontbuffer_tracking@psr-2p-rte.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - shard-kbl:          [PASS][60] -> [DMESG-WARN][61] ([i915#180]) +4 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-kbl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html

  * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes:
    - shard-skl:          [PASS][62] -> [INCOMPLETE][63] ([i915#198])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-skl5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-skl5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-basic:
    - shard-apl:          NOTRUN -> [FAIL][64] ([fdo#108145] / [i915#265]) +3 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-apl7/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
    - shard-kbl:          NOTRUN -> [FAIL][65] ([fdo#108145] / [i915#265])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-kbl7/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
    - shard-apl:          NOTRUN -> [FAIL][66] ([i915#265])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-apl2/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
    - shard-skl:          NOTRUN -> [FAIL][67] ([i915#265])
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-skl10/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html

  * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min:
    - shard-skl:          [PASS][68] -> [FAIL][69] ([fdo#108145] / [i915#265])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-skl3/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-skl4/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html

  * igt@kms_plane_cursor@pipe-b-overlay-size-256:
    - shard-iclb:         [PASS][70] -> [FAIL][71] ([i915#2657])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-iclb2/igt@kms_plane_cursor@pipe-b-overlay-size-256.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-iclb8/igt@kms_plane_cursor@pipe-b-overlay-size-256.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3:
    - shard-skl:          NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#658])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-skl10/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-3.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4:
    - shard-kbl:          NOTRUN -> [SKIP][73] ([fdo#109271] / [i915#658]) +1 similar issue
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-kbl7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-4.html

  * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4:
    - shard-glk:          NOTRUN -> [SKIP][74] ([fdo#109271] / [i915#658])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-glk6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-4.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5:
    - shard-apl:          NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#658]) +3 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-apl6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-5.html

  * igt@kms_psr@psr2_primary_mmap_gtt:
    - shard-iclb:         [PASS][76] -> [SKIP][77] ([fdo#109441])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-iclb6/igt@kms_psr@psr2_primary_mmap_gtt.html

  * igt@kms_vblank@pipe-d-wait-idle:
    - shard-apl:          NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#533]) +1 similar issue
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-apl6/igt@kms_vblank@pipe-d-wait-idle.html

  * igt@kms_writeback@writeback-check-output:
    - shard-apl:          NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#2437]) +1 similar issue
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-apl7/igt@kms_writeback@writeback-check-output.html

  * igt@nouveau_crc@pipe-a-ctx-flip-skip-current-frame:
    - shard-tglb:         NOTRUN -> [SKIP][80] ([i915#2530])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-tglb5/igt@nouveau_crc@pipe-a-ctx-flip-skip-current-frame.html
    - shard-iclb:         NOTRUN -> [SKIP][81] ([i915#2530])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-iclb5/igt@nouveau_crc@pipe-a-ctx-flip-skip-current-frame.html

  * igt@sysfs_clients@recycle-many:
    - shard-apl:          NOTRUN -> [SKIP][82] ([fdo#109271] / [i915#2994]) +3 similar issues
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-apl1/igt@sysfs_clients@recycle-many.html

  * igt@sysfs_clients@split-10:
    - shard-skl:          NOTRUN -> [SKIP][83] ([fdo#109271] / [i915#2994])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-skl1/igt@sysfs_clients@split-10.html

  
#### Possible fixes ####

  * igt@fbdev@write:
    - {shard-rkl}:        [SKIP][84] ([i915#2582]) -> [PASS][85]
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-rkl-1/igt@fbdev@write.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-rkl-6/igt@fbdev@write.html

  * igt@feature_discovery@psr1:
    - {shard-rkl}:        [SKIP][86] ([i915#658]) -> [PASS][87]
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-rkl-1/igt@feature_discovery@psr1.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-rkl-6/igt@feature_discovery@psr1.html

  * igt@gem_ctx_isolation@preservation-s3@rcs0:
    - shard-apl:          [DMESG-WARN][88] ([i915#180]) -> [PASS][89] +1 similar issue
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-apl1/igt@gem_ctx_isolation@preservation-s3@rcs0.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-apl3/igt@gem_ctx_isolation@preservation-s3@rcs0.html

  * igt@gem_ctx_persistence@legacy-engines-hang@render:
    - shard-iclb:         [FAIL][90] ([i915#2410]) -> [PASS][91]
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-iclb6/igt@gem_ctx_persistence@legacy-engines-hang@render.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-iclb6/igt@gem_ctx_persistence@legacy-engines-hang@render.html

  * igt@gem_ctx_persistence@many-contexts:
    - {shard-rkl}:        [FAIL][92] ([i915#2410]) -> [PASS][93]
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-rkl-5/igt@gem_ctx_persistence@many-contexts.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-rkl-6/igt@gem_ctx_persistence@many-contexts.html

  * igt@gem_exec_fair@basic-pace@bcs0:
    - shard-iclb:         [FAIL][94] ([i915#2842]) -> [PASS][95]
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-iclb7/igt@gem_exec_fair@basic-pace@bcs0.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-iclb1/igt@gem_exec_fair@basic-pace@bcs0.html

  * igt@gem_exec_fair@basic-pace@rcs0:
    - {shard-rkl}:        [FAIL][96] ([i915#2842]) -> [PASS][97] +3 similar issues
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-rkl-2/igt@gem_exec_fair@basic-pace@rcs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         [FAIL][98] ([i915#2849]) -> [PASS][99]
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-iclb4/igt@gem_exec_fair@basic-throttle@rcs0.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-iclb1/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_whisper@basic-queues-forked:
    - shard-iclb:         [INCOMPLETE][100] ([i915#1895] / [i915#2405]) -> [PASS][101]
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-iclb2/igt@gem_exec_whisper@basic-queues-forked.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-iclb6/igt@gem_exec_whisper@basic-queues-forked.html

  * igt@i915_pm_backlight@fade_with_dpms:
    - shard-tglb:         [SKIP][102] ([i915#1311] / [i915#579]) -> [PASS][103]
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-tglb3/igt@i915_pm_backlight@fade_with_dpms.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-tglb8/igt@i915_pm_backlight@fade_with_dpms.html

  * igt@i915_pm_dc@dc5-dpms:
    - shard-kbl:          [FAIL][104] ([i915#545]) -> [PASS][105]
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-kbl7/igt@i915_pm_dc@dc5-dpms.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-kbl3/igt@i915_pm_dc@dc5-dpms.html

  * igt@i915_pm_rpm@basic-pci-d3-state:
    - shard-skl:          [SKIP][106] ([fdo#109271]) -> [PASS][107] +28 similar issues
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-skl6/igt@i915_pm_rpm@basic-pci-d3-state.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-skl7/igt@i915_pm_rpm@basic-pci-d3-state.html

  * igt@i915_pm_rpm@basic-rte:
    - shard-skl:          [FAIL][108] ([i915#579]) -> [PASS][109]
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-skl2/igt@i915_pm_rpm@basic-rte.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-skl6/igt@i915_pm_rpm@basic-rte.html
    - shard-kbl:          [FAIL][110] ([i915#579]) -> [PASS][111]
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-kbl2/igt@i915_pm_rpm@basic-rte.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-kbl4/igt@i915_pm_rpm@basic-rte.html
    - shard-apl:          [FAIL][112] ([i915#579]) -> [PASS][113]
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-apl2/igt@i915_pm_rpm@basic-rte.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-apl2/igt@i915_pm_rpm@basic-rte.html
    - shard-glk:          [FAIL][114] ([i915#579]) -> [PASS][115]
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-glk5/igt@i915_pm_rpm@basic-rte.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-glk7/igt@i915_pm_rpm@basic-rte.html
    - shard-iclb:         [FAIL][116] ([i915#579]) -> [PASS][117]
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-iclb1/igt@i915_pm_rpm@basic-rte.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-iclb4/igt@i915_pm_rpm@basic-rte.html
    - shard-tglb:         [FAIL][118] ([i915#579]) -> [PASS][119]
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-tglb6/igt@i915_pm_rpm@basic-rte.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-tglb6/igt@i915_pm_rpm@basic-rte.html

  * igt@i915_pm_rpm@gem-execbuf-stress:
    - shard-glk:          [SKIP][120] ([fdo#109271]) -> [PASS][121] +29 similar issues
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-glk6/igt@i915_pm_rpm@gem-execbuf-stress.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-glk5/igt@i915_pm_rpm@gem-execbuf-stress.html

  * igt@i915_pm_rpm@gem-idle:
    - shard-iclb:         [SKIP][122] ([i915#579]) -> [PASS][123] +26 similar issues
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-iclb5/igt@i915_pm_rpm@gem-idle.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-iclb8/igt@i915_pm_rpm@gem-idle.html

  * igt@i915_pm_rpm@gem-mmap-type@uc:
    - {shard-rkl}:        [SKIP][124] ([fdo#109308]) -> [PASS][125] +3 similar issues
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-rkl-1/igt@i915_pm_rpm@gem-mmap-type@uc.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-rkl-6/igt@i915_pm_rpm@gem-mmap-type@uc.html

  * igt@i915_pm_rpm@i2c:
    - shard-tglb:         [SKIP][126] ([i915#579]) -> [PASS][127] +25 similar issues
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-tglb1/igt@i915_pm_rpm@i2c.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-tglb6/igt@i915_pm_rpm@i2c.html

  * igt@i915_pm_rpm@reg-read-ioctl:
    - {shard-rkl}:        [SKIP][128] ([i915#3844] / [i915#579]) -> [PASS][129]
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-rkl-6/igt@i915_pm_rpm@reg-read-ioctl.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-rkl-2/igt@i915_pm_rpm@reg-read-ioctl.html

  * igt@i915_pm_rpm@system-suspend:
    - shard-kbl:          [SKIP][130] ([fdo#109271]) -> [PASS][131] +29 similar issues
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-kbl2/igt@i915_pm_rpm@system-suspend.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-kbl6/igt@i915_pm_rpm@system-suspend.html

  * igt@kms_big_fb@linear-16bpp-rotate-180:
    - {shard-rkl}:        [SKIP][132] ([i915#3638]) -> [PASS][133] +4 similar issues
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-rkl-1/igt@kms_big_fb@linear-16bpp-rotate-180.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-180.html

  * igt@kms_big_fb@x-tiled-32bpp-rotate-0:
    - shard-glk:          [DMESG-WARN][134] ([i915#118] / [i915#95]) -> [PASS][135]
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-glk5/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-glk7/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
    - {shard-rkl}:        [SKIP][136] ([i915#3721]) -> [PASS][137] +4 similar issues
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-rkl-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-rkl-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html

  * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc:
    - {shard-rkl}:        [FAIL][138] ([i915#3678]) -> [PASS][139] +4 similar issues
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-rkl-5/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-rkl-6/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_color@pipe-a-ctm-0-25:
    - shard-skl:          [DMESG-WARN][140] ([i915#1982]) -> [PASS][141]
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-skl8/igt@kms_color@pipe-a-ctm-0-25.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-skl8/igt@kms_color@pipe-a-ctm-0-25.html

  * igt@kms_color@pipe-c-ctm-max:
    - {shard-rkl}:        [SKIP][142] ([i915#1149] / [i915#1849]) -> [PASS][143] +2 similar issues
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-rkl-1/igt@kms_color@pipe-c-ctm-max.html
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-rkl-6/igt@kms_color@pipe-c-ctm-max.html

  * igt@kms_cursor_crc@pipe-a-cursor-alpha-opaque:
    - {shard-rkl}:        [SKIP][144] ([fdo#112022]) -> [PASS][145] +10 similar issues
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10437/shard-rkl-1/igt@kms_cursor_crc@pipe-a-cursor-alpha-opaque.html
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/shard-rkl-6/igt@kms_cursor_crc@pipe-a-c

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20760/index.html

[-- Attachment #2: Type: text/html, Size: 33414 bytes --]

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

* Re: [Intel-gfx] [PATCH] fbdev/efifb: Release PCI device's runtime PM ref during FB destroy
  2021-08-02 13:35 [Intel-gfx] [PATCH] fbdev/efifb: Release PCI device's runtime PM ref during FB destroy Imre Deak
  2021-08-02 15:05 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
  2021-08-03  0:58 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-08-04 22:23 ` Daniel Vetter
  2021-08-07 15:21   ` Imre Deak
  2021-08-09 13:31 ` [Intel-gfx] [PATCH v2] " Imre Deak
                   ` (4 subsequent siblings)
  7 siblings, 1 reply; 19+ messages in thread
From: Daniel Vetter @ 2021-08-04 22:23 UTC (permalink / raw)
  To: Imre Deak
  Cc: linux-fbdev, Kai-Heng Feng, dri-devel, Thomas Zimmermann,
	Alex Deucher, intel-gfx

On Mon, Aug 02, 2021 at 04:35:51PM +0300, Imre Deak wrote:
> Atm the EFI FB driver gets a runtime PM reference for the associated GFX
> PCI device during driver probing and releases it only when removing the
> driver.
> 
> When fbcon switches to the FB provided by the PCI device's driver (for
> instance i915/drmfb), the EFI FB will get only unregistered without the
> EFI FB driver getting unloaded, keeping the runtime PM reference
> acquired during driver probing. This reference will prevent the PCI
> driver from runtime suspending the device.
> 
> Fix this by releasing the RPM reference from the EFI FB's destroy hook,
> called when the FB gets unregistered.
> 
> Fixes: a6c0fd3d5a8b ("efifb: Ensure graphics device for efifb stays at PCI D0")
> Cc: Kai-Heng Feng <kai.heng.feng@canonical.com>
> Signed-off-by: Imre Deak <imre.deak@intel.com>

Patch looks good:

Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>

But I've found a bunch of ordering issues here:
- we should probably get the runtime pm reference _before_ we register the
  framebuffer. There's a race right now about there.
- the sysfs_remove_groups and framebuffer_release should also be moved
  into the destroy callback. This is more a leak type of situation.

Cheers, Daniel

> ---
>  drivers/video/fbdev/efifb.c | 8 +++++---
>  1 file changed, 5 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/video/fbdev/efifb.c b/drivers/video/fbdev/efifb.c
> index 8ea8f079cde26..25cdea32b9633 100644
> --- a/drivers/video/fbdev/efifb.c
> +++ b/drivers/video/fbdev/efifb.c
> @@ -47,6 +47,8 @@ static bool use_bgrt = true;
>  static bool request_mem_succeeded = false;
>  static u64 mem_flags = EFI_MEMORY_WC | EFI_MEMORY_UC;
>  
> +static struct pci_dev *efifb_pci_dev;	/* dev with BAR covering the efifb */
> +
>  static struct fb_var_screeninfo efifb_defined = {
>  	.activate		= FB_ACTIVATE_NOW,
>  	.height			= -1,
> @@ -243,6 +245,9 @@ static inline void efifb_show_boot_graphics(struct fb_info *info) {}
>  
>  static void efifb_destroy(struct fb_info *info)
>  {
> +	if (efifb_pci_dev)
> +		pm_runtime_put(&efifb_pci_dev->dev);
> +
>  	if (info->screen_base) {
>  		if (mem_flags & (EFI_MEMORY_UC | EFI_MEMORY_WC))
>  			iounmap(info->screen_base);
> @@ -333,7 +338,6 @@ ATTRIBUTE_GROUPS(efifb);
>  
>  static bool pci_dev_disabled;	/* FB base matches BAR of a disabled device */
>  
> -static struct pci_dev *efifb_pci_dev;	/* dev with BAR covering the efifb */
>  static struct resource *bar_resource;
>  static u64 bar_offset;
>  
> @@ -603,8 +607,6 @@ static int efifb_remove(struct platform_device *pdev)
>  	unregister_framebuffer(info);
>  	sysfs_remove_groups(&pdev->dev.kobj, efifb_groups);
>  	framebuffer_release(info);
> -	if (efifb_pci_dev)
> -		pm_runtime_put(&efifb_pci_dev->dev);
>  
>  	return 0;
>  }
> -- 
> 2.27.0
> 

-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch

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

* Re: [Intel-gfx] [PATCH] fbdev/efifb: Release PCI device's runtime PM ref during FB destroy
  2021-08-04 22:23 ` [Intel-gfx] [PATCH] " Daniel Vetter
@ 2021-08-07 15:21   ` Imre Deak
  2021-08-09 14:19     ` Daniel Vetter
  0 siblings, 1 reply; 19+ messages in thread
From: Imre Deak @ 2021-08-07 15:21 UTC (permalink / raw)
  To: Daniel Vetter
  Cc: linux-fbdev, Kai-Heng Feng, dri-devel, Thomas Zimmermann,
	Alex Deucher, intel-gfx

On Thu, Aug 05, 2021 at 12:23:21AM +0200, Daniel Vetter wrote:
> On Mon, Aug 02, 2021 at 04:35:51PM +0300, Imre Deak wrote:
> > Atm the EFI FB driver gets a runtime PM reference for the associated GFX
> > PCI device during driver probing and releases it only when removing the
> > driver.
> > 
> > When fbcon switches to the FB provided by the PCI device's driver (for
> > instance i915/drmfb), the EFI FB will get only unregistered without the
> > EFI FB driver getting unloaded, keeping the runtime PM reference
> > acquired during driver probing. This reference will prevent the PCI
> > driver from runtime suspending the device.
> > 
> > Fix this by releasing the RPM reference from the EFI FB's destroy hook,
> > called when the FB gets unregistered.
> > 
> > Fixes: a6c0fd3d5a8b ("efifb: Ensure graphics device for efifb stays at PCI D0")
> > Cc: Kai-Heng Feng <kai.heng.feng@canonical.com>
> > Signed-off-by: Imre Deak <imre.deak@intel.com>
> 
> Patch looks good:
> 
> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
> 
> But I've found a bunch of ordering issues here:
> - we should probably get the runtime pm reference _before_ we register the
>   framebuffer. There's a race right now about there.

Yea, missed this will send a v2 moving it earlier.

> - the sysfs_remove_groups and framebuffer_release should also be moved
>   into the destroy callback. This is more a leak type of situation.

Those sysfs entries belong to the efifb platform device, showing the
bootup screen_info.lfb_* info, not related to fb_info, so imo
efifb_remove() is the correct place to remove those. But yes, freeing
fb_info seems to belong to fb_destroy().

Atm, things will blow up when unbinding the efifb device after the efifb
framebuffer was unregistered while removing it as a conflicting FB
(since unregister_framebuffer() will be called twice), so that would
need to be solved as well. Maybe remove_conflicting_pci_framebuffers()
could unregister the platform device instead of only unregistering the
framebuffer, similarly to drm_aperture_detach_firmware(), but haven't
checked this in more detail.

> Cheers, Daniel
> 
> > ---
> >  drivers/video/fbdev/efifb.c | 8 +++++---
> >  1 file changed, 5 insertions(+), 3 deletions(-)
> > 
> > diff --git a/drivers/video/fbdev/efifb.c b/drivers/video/fbdev/efifb.c
> > index 8ea8f079cde26..25cdea32b9633 100644
> > --- a/drivers/video/fbdev/efifb.c
> > +++ b/drivers/video/fbdev/efifb.c
> > @@ -47,6 +47,8 @@ static bool use_bgrt = true;
> >  static bool request_mem_succeeded = false;
> >  static u64 mem_flags = EFI_MEMORY_WC | EFI_MEMORY_UC;
> >  
> > +static struct pci_dev *efifb_pci_dev;	/* dev with BAR covering the efifb */
> > +
> >  static struct fb_var_screeninfo efifb_defined = {
> >  	.activate		= FB_ACTIVATE_NOW,
> >  	.height			= -1,
> > @@ -243,6 +245,9 @@ static inline void efifb_show_boot_graphics(struct fb_info *info) {}
> >  
> >  static void efifb_destroy(struct fb_info *info)
> >  {
> > +	if (efifb_pci_dev)
> > +		pm_runtime_put(&efifb_pci_dev->dev);
> > +
> >  	if (info->screen_base) {
> >  		if (mem_flags & (EFI_MEMORY_UC | EFI_MEMORY_WC))
> >  			iounmap(info->screen_base);
> > @@ -333,7 +338,6 @@ ATTRIBUTE_GROUPS(efifb);
> >  
> >  static bool pci_dev_disabled;	/* FB base matches BAR of a disabled device */
> >  
> > -static struct pci_dev *efifb_pci_dev;	/* dev with BAR covering the efifb */
> >  static struct resource *bar_resource;
> >  static u64 bar_offset;
> >  
> > @@ -603,8 +607,6 @@ static int efifb_remove(struct platform_device *pdev)
> >  	unregister_framebuffer(info);
> >  	sysfs_remove_groups(&pdev->dev.kobj, efifb_groups);
> >  	framebuffer_release(info);
> > -	if (efifb_pci_dev)
> > -		pm_runtime_put(&efifb_pci_dev->dev);
> >  
> >  	return 0;
> >  }
> > -- 
> > 2.27.0
> > 
> 
> -- 
> Daniel Vetter
> Software Engineer, Intel Corporation
> http://blog.ffwll.ch

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

* [Intel-gfx] [PATCH v2] fbdev/efifb: Release PCI device's runtime PM ref during FB destroy
  2021-08-02 13:35 [Intel-gfx] [PATCH] fbdev/efifb: Release PCI device's runtime PM ref during FB destroy Imre Deak
                   ` (2 preceding siblings ...)
  2021-08-04 22:23 ` [Intel-gfx] [PATCH] " Daniel Vetter
@ 2021-08-09 13:31 ` Imre Deak
  2021-08-10  8:36   ` Imre Deak
  2021-08-13 13:46   ` Imre Deak
  2021-08-09 14:49 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for fbdev/efifb: Release PCI device's runtime PM ref during FB destroy (rev2) Patchwork
                   ` (3 subsequent siblings)
  7 siblings, 2 replies; 19+ messages in thread
From: Imre Deak @ 2021-08-09 13:31 UTC (permalink / raw)
  To: linux-fbdev, Kai-Heng Feng
  Cc: dri-devel, Thomas Zimmermann, Alex Deucher, intel-gfx, Daniel Vetter

Atm the EFI FB platform driver gets a runtime PM reference for the
associated GFX PCI device during probing the EFI FB platform device and
releases it only when the platform device gets unbound.

When fbcon switches to the FB provided by the PCI device's driver (for
instance i915/drmfb), the EFI FB will get only unregistered without the
EFI FB platform device getting unbound, keeping the runtime PM reference
acquired during the platform device probing. This reference will prevent
the PCI driver from runtime suspending the device.

Fix this by releasing the RPM reference from the EFI FB's destroy hook,
called when the FB gets unregistered.

While at it assert that pm_runtime_get_sync() didn't fail.

v2:
- Move pm_runtime_get_sync() before register_framebuffer() to avoid its
  race wrt. efifb_destroy()->pm_runtime_put(). (Daniel)
- Assert that pm_runtime_get_sync() didn't fail.
- Clarify commit message wrt. platform/PCI device/driver and driver
  removal vs. device unbinding.

Fixes: a6c0fd3d5a8b ("efifb: Ensure graphics device for efifb stays at PCI D0")
Cc: Kai-Heng Feng <kai.heng.feng@canonical.com>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> (v1)
Signed-off-by: Imre Deak <imre.deak@intel.com>
---
 drivers/video/fbdev/efifb.c | 21 ++++++++++++++-------
 1 file changed, 14 insertions(+), 7 deletions(-)

diff --git a/drivers/video/fbdev/efifb.c b/drivers/video/fbdev/efifb.c
index 8ea8f079cde26..edca3703b9640 100644
--- a/drivers/video/fbdev/efifb.c
+++ b/drivers/video/fbdev/efifb.c
@@ -47,6 +47,8 @@ static bool use_bgrt = true;
 static bool request_mem_succeeded = false;
 static u64 mem_flags = EFI_MEMORY_WC | EFI_MEMORY_UC;
 
+static struct pci_dev *efifb_pci_dev;	/* dev with BAR covering the efifb */
+
 static struct fb_var_screeninfo efifb_defined = {
 	.activate		= FB_ACTIVATE_NOW,
 	.height			= -1,
@@ -243,6 +245,9 @@ static inline void efifb_show_boot_graphics(struct fb_info *info) {}
 
 static void efifb_destroy(struct fb_info *info)
 {
+	if (efifb_pci_dev)
+		pm_runtime_put(&efifb_pci_dev->dev);
+
 	if (info->screen_base) {
 		if (mem_flags & (EFI_MEMORY_UC | EFI_MEMORY_WC))
 			iounmap(info->screen_base);
@@ -333,7 +338,6 @@ ATTRIBUTE_GROUPS(efifb);
 
 static bool pci_dev_disabled;	/* FB base matches BAR of a disabled device */
 
-static struct pci_dev *efifb_pci_dev;	/* dev with BAR covering the efifb */
 static struct resource *bar_resource;
 static u64 bar_offset;
 
@@ -569,17 +573,22 @@ static int efifb_probe(struct platform_device *dev)
 		pr_err("efifb: cannot allocate colormap\n");
 		goto err_groups;
 	}
+
+	if (efifb_pci_dev)
+		WARN_ON(pm_runtime_get_sync(&efifb_pci_dev->dev) < 0);
+
 	err = register_framebuffer(info);
 	if (err < 0) {
 		pr_err("efifb: cannot register framebuffer\n");
-		goto err_fb_dealoc;
+		goto err_put_rpm_ref;
 	}
 	fb_info(info, "%s frame buffer device\n", info->fix.id);
-	if (efifb_pci_dev)
-		pm_runtime_get_sync(&efifb_pci_dev->dev);
 	return 0;
 
-err_fb_dealoc:
+err_put_rpm_ref:
+	if (efifb_pci_dev)
+		pm_runtime_put(&efifb_pci_dev->dev);
+
 	fb_dealloc_cmap(&info->cmap);
 err_groups:
 	sysfs_remove_groups(&dev->dev.kobj, efifb_groups);
@@ -603,8 +612,6 @@ static int efifb_remove(struct platform_device *pdev)
 	unregister_framebuffer(info);
 	sysfs_remove_groups(&pdev->dev.kobj, efifb_groups);
 	framebuffer_release(info);
-	if (efifb_pci_dev)
-		pm_runtime_put(&efifb_pci_dev->dev);
 
 	return 0;
 }
-- 
2.27.0


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

* Re: [Intel-gfx] [PATCH] fbdev/efifb: Release PCI device's runtime PM ref during FB destroy
  2021-08-07 15:21   ` Imre Deak
@ 2021-08-09 14:19     ` Daniel Vetter
  0 siblings, 0 replies; 19+ messages in thread
From: Daniel Vetter @ 2021-08-09 14:19 UTC (permalink / raw)
  To: Imre Deak
  Cc: Daniel Vetter, linux-fbdev, Kai-Heng Feng, dri-devel,
	Thomas Zimmermann, Alex Deucher, intel-gfx

On Sat, Aug 07, 2021 at 06:21:10PM +0300, Imre Deak wrote:
> On Thu, Aug 05, 2021 at 12:23:21AM +0200, Daniel Vetter wrote:
> > On Mon, Aug 02, 2021 at 04:35:51PM +0300, Imre Deak wrote:
> > > Atm the EFI FB driver gets a runtime PM reference for the associated GFX
> > > PCI device during driver probing and releases it only when removing the
> > > driver.
> > > 
> > > When fbcon switches to the FB provided by the PCI device's driver (for
> > > instance i915/drmfb), the EFI FB will get only unregistered without the
> > > EFI FB driver getting unloaded, keeping the runtime PM reference
> > > acquired during driver probing. This reference will prevent the PCI
> > > driver from runtime suspending the device.
> > > 
> > > Fix this by releasing the RPM reference from the EFI FB's destroy hook,
> > > called when the FB gets unregistered.
> > > 
> > > Fixes: a6c0fd3d5a8b ("efifb: Ensure graphics device for efifb stays at PCI D0")
> > > Cc: Kai-Heng Feng <kai.heng.feng@canonical.com>
> > > Signed-off-by: Imre Deak <imre.deak@intel.com>
> > 
> > Patch looks good:
> > 
> > Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
> > 
> > But I've found a bunch of ordering issues here:
> > - we should probably get the runtime pm reference _before_ we register the
> >   framebuffer. There's a race right now about there.
> 
> Yea, missed this will send a v2 moving it earlier.
> 
> > - the sysfs_remove_groups and framebuffer_release should also be moved
> >   into the destroy callback. This is more a leak type of situation.
> 
> Those sysfs entries belong to the efifb platform device, showing the
> bootup screen_info.lfb_* info, not related to fb_info, so imo
> efifb_remove() is the correct place to remove those. But yes, freeing
> fb_info seems to belong to fb_destroy().

Ah ok. Might be good to put a comment down that this isn't tied to fb_info
lifetime.

> Atm, things will blow up when unbinding the efifb device after the efifb
> framebuffer was unregistered while removing it as a conflicting FB
> (since unregister_framebuffer() will be called twice), so that would
> need to be solved as well. Maybe remove_conflicting_pci_framebuffers()
> could unregister the platform device instead of only unregistering the
> framebuffer, similarly to drm_aperture_detach_firmware(), but haven't
> checked this in more detail.

Yeah either that, or a double-unregister check (plus correct refcount) in
unregister_framebuffer. Ideally with a check so that only the
double-unregstier from remove_conflicting_pci_framebuffers is caught, and
not a driver that accidentally unregisters the fbdev twice.

Even better if this would be all devm_ wrapped so it's idiot proof.

I think generally I'd say "let's not invest in fbdev", but a) these
hotremove/unload bugs have been hurting us since forever, and b) efifb
seems to be bound to stay around for a very long time - the simpldrmfb
stuff isn't really moving forward very fast.

Anyway, would be good to get this all sorted eventually.
-Daniel

> 
> > Cheers, Daniel
> > 
> > > ---
> > >  drivers/video/fbdev/efifb.c | 8 +++++---
> > >  1 file changed, 5 insertions(+), 3 deletions(-)
> > > 
> > > diff --git a/drivers/video/fbdev/efifb.c b/drivers/video/fbdev/efifb.c
> > > index 8ea8f079cde26..25cdea32b9633 100644
> > > --- a/drivers/video/fbdev/efifb.c
> > > +++ b/drivers/video/fbdev/efifb.c
> > > @@ -47,6 +47,8 @@ static bool use_bgrt = true;
> > >  static bool request_mem_succeeded = false;
> > >  static u64 mem_flags = EFI_MEMORY_WC | EFI_MEMORY_UC;
> > >  
> > > +static struct pci_dev *efifb_pci_dev;	/* dev with BAR covering the efifb */
> > > +
> > >  static struct fb_var_screeninfo efifb_defined = {
> > >  	.activate		= FB_ACTIVATE_NOW,
> > >  	.height			= -1,
> > > @@ -243,6 +245,9 @@ static inline void efifb_show_boot_graphics(struct fb_info *info) {}
> > >  
> > >  static void efifb_destroy(struct fb_info *info)
> > >  {
> > > +	if (efifb_pci_dev)
> > > +		pm_runtime_put(&efifb_pci_dev->dev);
> > > +
> > >  	if (info->screen_base) {
> > >  		if (mem_flags & (EFI_MEMORY_UC | EFI_MEMORY_WC))
> > >  			iounmap(info->screen_base);
> > > @@ -333,7 +338,6 @@ ATTRIBUTE_GROUPS(efifb);
> > >  
> > >  static bool pci_dev_disabled;	/* FB base matches BAR of a disabled device */
> > >  
> > > -static struct pci_dev *efifb_pci_dev;	/* dev with BAR covering the efifb */
> > >  static struct resource *bar_resource;
> > >  static u64 bar_offset;
> > >  
> > > @@ -603,8 +607,6 @@ static int efifb_remove(struct platform_device *pdev)
> > >  	unregister_framebuffer(info);
> > >  	sysfs_remove_groups(&pdev->dev.kobj, efifb_groups);
> > >  	framebuffer_release(info);
> > > -	if (efifb_pci_dev)
> > > -		pm_runtime_put(&efifb_pci_dev->dev);
> > >  
> > >  	return 0;
> > >  }
> > > -- 
> > > 2.27.0
> > > 
> > 
> > -- 
> > Daniel Vetter
> > Software Engineer, Intel Corporation
> > http://blog.ffwll.ch

-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch

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

* [Intel-gfx] ✗ Fi.CI.BAT: failure for fbdev/efifb: Release PCI device's runtime PM ref during FB destroy (rev2)
  2021-08-02 13:35 [Intel-gfx] [PATCH] fbdev/efifb: Release PCI device's runtime PM ref during FB destroy Imre Deak
                   ` (3 preceding siblings ...)
  2021-08-09 13:31 ` [Intel-gfx] [PATCH v2] " Imre Deak
@ 2021-08-09 14:49 ` Patchwork
  2021-08-09 15:12   ` Imre Deak
  2021-08-09 16:10 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
                   ` (2 subsequent siblings)
  7 siblings, 1 reply; 19+ messages in thread
From: Patchwork @ 2021-08-09 14:49 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-gfx

[-- Attachment #1: Type: text/plain, Size: 17618 bytes --]

== Series Details ==

Series: fbdev/efifb: Release PCI device's runtime PM ref during FB destroy (rev2)
URL   : https://patchwork.freedesktop.org/series/93307/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_10460 -> Patchwork_20786
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with Patchwork_20786 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in Patchwork_20786, 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_20786/index.html

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-a:
    - fi-rkl-11600:       [PASS][1] -> [SKIP][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-11600/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-a.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-11600/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-a.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_cs_nop@fork-gfx0:
    - fi-icl-u2:          NOTRUN -> [SKIP][3] ([fdo#109315]) +17 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-icl-u2/igt@amdgpu/amd_cs_nop@fork-gfx0.html

  * igt@gem_exec_suspend@basic-s0:
    - fi-tgl-1115g4:      [PASS][4] -> [FAIL][5] ([i915#1888])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s0.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s0.html

  * igt@kms_frontbuffer_tracking@basic:
    - fi-rkl-11600:       [PASS][6] -> [SKIP][7] ([i915#3180])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-11600/igt@kms_frontbuffer_tracking@basic.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-11600/igt@kms_frontbuffer_tracking@basic.html

  
#### Possible fixes ####

  * igt@gem_exec_suspend@basic-s3:
    - fi-tgl-1115g4:      [FAIL][8] ([i915#1888]) -> [PASS][9]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html

  * igt@i915_pm_rpm@basic-pci-d3-state:
    - fi-glk-dsi:         [SKIP][10] ([fdo#109271]) -> [PASS][11] +1 similar issue
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-glk-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-glk-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html
    - fi-icl-u2:          [SKIP][12] ([i915#579]) -> [PASS][13] +1 similar issue
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-icl-u2/igt@i915_pm_rpm@basic-pci-d3-state.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-icl-u2/igt@i915_pm_rpm@basic-pci-d3-state.html
    - fi-kbl-7500u:       [SKIP][14] ([fdo#109271]) -> [PASS][15] +1 similar issue
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-kbl-7500u/igt@i915_pm_rpm@basic-pci-d3-state.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-kbl-7500u/igt@i915_pm_rpm@basic-pci-d3-state.html
    - fi-kbl-soraka:      [SKIP][16] ([fdo#109271]) -> [PASS][17] +1 similar issue
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-kbl-soraka/igt@i915_pm_rpm@basic-pci-d3-state.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-kbl-soraka/igt@i915_pm_rpm@basic-pci-d3-state.html
    - fi-hsw-4770:        [SKIP][18] ([fdo#109271]) -> [PASS][19] +1 similar issue
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-hsw-4770/igt@i915_pm_rpm@basic-pci-d3-state.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-hsw-4770/igt@i915_pm_rpm@basic-pci-d3-state.html
    - fi-bxt-dsi:         [SKIP][20] ([fdo#109271]) -> [PASS][21] +1 similar issue
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-bxt-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-bxt-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html
    - {fi-tgl-dsi}:       [SKIP][22] ([i915#579]) -> [PASS][23] +1 similar issue
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-tgl-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-tgl-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html

  * igt@i915_pm_rpm@basic-rte:
    - fi-kbl-7500u:       [FAIL][24] ([i915#579]) -> [PASS][25]
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-kbl-7500u/igt@i915_pm_rpm@basic-rte.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-kbl-7500u/igt@i915_pm_rpm@basic-rte.html
    - fi-cml-u2:          [FAIL][26] ([i915#579]) -> [PASS][27]
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cml-u2/igt@i915_pm_rpm@basic-rte.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cml-u2/igt@i915_pm_rpm@basic-rte.html
    - {fi-jsl-1}:         [FAIL][28] ([i915#579]) -> [PASS][29]
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-jsl-1/igt@i915_pm_rpm@basic-rte.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-jsl-1/igt@i915_pm_rpm@basic-rte.html
    - fi-rkl-guc:         [FAIL][30] ([i915#3855]) -> [PASS][31]
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-guc/igt@i915_pm_rpm@basic-rte.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-guc/igt@i915_pm_rpm@basic-rte.html
    - fi-bxt-dsi:         [FAIL][32] ([i915#579]) -> [PASS][33]
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-bxt-dsi/igt@i915_pm_rpm@basic-rte.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-bxt-dsi/igt@i915_pm_rpm@basic-rte.html
    - fi-hsw-4770:        [FAIL][34] ([i915#579]) -> [PASS][35]
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-hsw-4770/igt@i915_pm_rpm@basic-rte.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-hsw-4770/igt@i915_pm_rpm@basic-rte.html
    - fi-tgl-1115g4:      [FAIL][36] ([i915#579]) -> [PASS][37]
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html
    - fi-cfl-guc:         [FAIL][38] ([i915#579]) -> [PASS][39]
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cfl-guc/igt@i915_pm_rpm@basic-rte.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cfl-guc/igt@i915_pm_rpm@basic-rte.html
    - fi-skl-guc:         [FAIL][40] ([i915#579]) -> [PASS][41]
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-skl-guc/igt@i915_pm_rpm@basic-rte.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-skl-guc/igt@i915_pm_rpm@basic-rte.html
    - fi-rkl-11600:       [FAIL][42] ([i915#3855]) -> [PASS][43]
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-11600/igt@i915_pm_rpm@basic-rte.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-11600/igt@i915_pm_rpm@basic-rte.html
    - fi-cfl-8700k:       [FAIL][44] ([i915#579]) -> [PASS][45]
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cfl-8700k/igt@i915_pm_rpm@basic-rte.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cfl-8700k/igt@i915_pm_rpm@basic-rte.html
    - fi-icl-y:           [FAIL][46] ([i915#579]) -> [PASS][47]
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-icl-y/igt@i915_pm_rpm@basic-rte.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-icl-y/igt@i915_pm_rpm@basic-rte.html
    - {fi-ehl-2}:         [FAIL][48] ([i915#579]) -> [PASS][49]
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-ehl-2/igt@i915_pm_rpm@basic-rte.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-ehl-2/igt@i915_pm_rpm@basic-rte.html
    - fi-skl-6700k2:      [FAIL][50] ([i915#579]) -> [PASS][51]
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-skl-6700k2/igt@i915_pm_rpm@basic-rte.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-skl-6700k2/igt@i915_pm_rpm@basic-rte.html
    - fi-icl-u2:          [FAIL][52] ([i915#579]) -> [PASS][53]
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-icl-u2/igt@i915_pm_rpm@basic-rte.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-icl-u2/igt@i915_pm_rpm@basic-rte.html
    - {fi-tgl-dsi}:       [FAIL][54] ([i915#579]) -> [PASS][55]
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-tgl-dsi/igt@i915_pm_rpm@basic-rte.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-tgl-dsi/igt@i915_pm_rpm@basic-rte.html
    - fi-glk-dsi:         [FAIL][56] ([i915#579]) -> [PASS][57]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-glk-dsi/igt@i915_pm_rpm@basic-rte.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-glk-dsi/igt@i915_pm_rpm@basic-rte.html
    - fi-bsw-kefka:       [FAIL][58] ([i915#3855]) -> [PASS][59]
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-bsw-kefka/igt@i915_pm_rpm@basic-rte.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-bsw-kefka/igt@i915_pm_rpm@basic-rte.html
    - fi-cfl-8109u:       [FAIL][60] ([i915#579]) -> [PASS][61]
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html
    - fi-kbl-soraka:      [FAIL][62] ([i915#579]) -> [PASS][63]
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-kbl-soraka/igt@i915_pm_rpm@basic-rte.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-kbl-soraka/igt@i915_pm_rpm@basic-rte.html

  * igt@i915_pm_rpm@module-reload:
    - fi-cfl-8109u:       [SKIP][64] ([fdo#109271]) -> [PASS][65] +1 similar issue
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html
    - {fi-hsw-gt1}:       [SKIP][66] ([fdo#109271]) -> [PASS][67]
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-hsw-gt1/igt@i915_pm_rpm@module-reload.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-hsw-gt1/igt@i915_pm_rpm@module-reload.html
    - fi-cfl-8700k:       [SKIP][68] ([fdo#109271]) -> [PASS][69] +1 similar issue
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cfl-8700k/igt@i915_pm_rpm@module-reload.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cfl-8700k/igt@i915_pm_rpm@module-reload.html
    - fi-bsw-kefka:       [SKIP][70] ([fdo#109271]) -> [PASS][71] +1 similar issue
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-bsw-kefka/igt@i915_pm_rpm@module-reload.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-bsw-kefka/igt@i915_pm_rpm@module-reload.html
    - fi-rkl-11600:       [SKIP][72] ([i915#3844] / [i915#579]) -> [PASS][73] +1 similar issue
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html
    - {fi-ehl-2}:         [SKIP][74] ([i915#3844]) -> [PASS][75] +1 similar issue
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-ehl-2/igt@i915_pm_rpm@module-reload.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-ehl-2/igt@i915_pm_rpm@module-reload.html
    - fi-skl-guc:         [SKIP][76] ([fdo#109271]) -> [PASS][77] +1 similar issue
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-skl-guc/igt@i915_pm_rpm@module-reload.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-skl-guc/igt@i915_pm_rpm@module-reload.html
    - fi-skl-6700k2:      [SKIP][78] ([fdo#109271]) -> [PASS][79] +1 similar issue
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-skl-6700k2/igt@i915_pm_rpm@module-reload.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-skl-6700k2/igt@i915_pm_rpm@module-reload.html
    - fi-cfl-guc:         [SKIP][80] ([fdo#109271]) -> [PASS][81] +1 similar issue
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cfl-guc/igt@i915_pm_rpm@module-reload.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cfl-guc/igt@i915_pm_rpm@module-reload.html
    - fi-icl-y:           [SKIP][82] ([i915#579]) -> [PASS][83] +1 similar issue
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-icl-y/igt@i915_pm_rpm@module-reload.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-icl-y/igt@i915_pm_rpm@module-reload.html
    - fi-tgl-1115g4:      [SKIP][84] ([i915#579]) -> [PASS][85] +1 similar issue
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html
    - {fi-jsl-1}:         [SKIP][86] ([i915#3844]) -> [PASS][87] +1 similar issue
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-jsl-1/igt@i915_pm_rpm@module-reload.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-jsl-1/igt@i915_pm_rpm@module-reload.html
    - fi-rkl-guc:         [SKIP][88] ([i915#3844] / [i915#579]) -> [PASS][89] +1 similar issue
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-guc/igt@i915_pm_rpm@module-reload.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-guc/igt@i915_pm_rpm@module-reload.html
    - fi-cml-u2:          [SKIP][90] ([i915#579]) -> [PASS][91] +1 similar issue
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cml-u2/igt@i915_pm_rpm@module-reload.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cml-u2/igt@i915_pm_rpm@module-reload.html
    - fi-kbl-guc:         [SKIP][92] ([fdo#109271]) -> [PASS][93]
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live@gt_lrc:
    - fi-rkl-guc:         [DMESG-WARN][94] -> [PASS][95]
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-guc/igt@i915_selftest@live@gt_lrc.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-guc/igt@i915_selftest@live@gt_lrc.html

  * igt@i915_selftest@live@hangcheck:
    - fi-icl-u2:          [INCOMPLETE][96] -> [PASS][97]
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-icl-u2/igt@i915_selftest@live@hangcheck.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-icl-u2/igt@i915_selftest@live@hangcheck.html

  
#### Warnings ####

  * igt@i915_pm_rpm@basic-rte:
    - fi-kbl-guc:         [FAIL][98] ([i915#579]) -> [SKIP][99] ([fdo#109271])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html

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

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#3013]: https://gitlab.freedesktop.org/drm/intel/issues/3013
  [i915#3180]: https://gitlab.freedesktop.org/drm/intel/issues/3180
  [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303
  [i915#3844]: https://gitlab.freedesktop.org/drm/intel/issues/3844
  [i915#3855]: https://gitlab.freedesktop.org/drm/intel/issues/3855
  [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579


Participating hosts (37 -> 34)
------------------------------

  Missing    (3): fi-bdw-samus fi-bsw-cyan bat-jsl-1 


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

  * Linux: CI_DRM_10460 -> Patchwork_20786

  CI-20190529: 20190529
  CI_DRM_10460: 933d74e4ff60d39ff929b26780dca84412551174 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_6163: 9f9d82df8c8e68c304e84aba717a9937b65e10e6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  Patchwork_20786: 6a6bc1405f985b3c0ebbf26a91a166b002142f4d @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

6a6bc1405f98 fbdev/efifb: Release PCI device's runtime PM ref during FB destroy

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/index.html

[-- Attachment #2: Type: text/html, Size: 21677 bytes --]

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

* Re: [Intel-gfx]  ✗ Fi.CI.BAT: failure for fbdev/efifb: Release PCI device's runtime PM ref during FB destroy (rev2)
  2021-08-09 14:49 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for fbdev/efifb: Release PCI device's runtime PM ref during FB destroy (rev2) Patchwork
@ 2021-08-09 15:12   ` Imre Deak
  2021-08-09 16:37     ` Vudum, Lakshminarayana
  0 siblings, 1 reply; 19+ messages in thread
From: Imre Deak @ 2021-08-09 15:12 UTC (permalink / raw)
  To: intel-gfx, Lakshminarayana Vudum

Hi Lakshmi,

On Mon, Aug 09, 2021 at 02:49:24PM +0000, Patchwork wrote:
> [...] 
> #### Possible regressions ####
> 
>   * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-a:
>     - fi-rkl-11600:       [PASS][1] -> [SKIP][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-11600/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-a.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-11600/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-a.html

The skip is due to the monitor disconnecting itself at:
<7>[  110.708337] [IGT] kms_force_connector_basic: exiting, ret=0
...
<7>[  110.750522] i915 0000:00:02.0: [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00020000, dig 0x000000a0, pins 0x00000020, long 0x00000020
...
<7>[  110.750915] [drm:intel_encoder_hotplug [i915]] [CONNECTOR:185:HDMI-A-1] status updated from connected to disconnected (epoch counter 15->16)

and only re-appearing at:

<7>[  110.892384] [IGT] kms_pipe_crc_basic: starting subtest compare-crc-sanitycheck-pipe-A
<7>[  110.892657] [IGT] kms_pipe_crc_basic: exiting, ret=77
...
<7>[  110.948844] i915 0000:00:02.0: [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00020000, dig 0x000000a0, pins 0x00000020, long 0x00000020
...
<7>[  110.969382] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:185:HDMI-A-1] status updated from disconnected to connected

Possibly the monitor entering/exiting some power saving state when IGT doesn't
expect this. The patch only affects runtime PM, re-enabling the runtime suspend
functionality, but the first runtime suspend happens only at:

<7>[  122.366611] i915 0000:00:02.0: [drm:intel_runtime_suspend [i915]] Device suspended

so I can't see how the changes are related to the skip.

> Known issues
> ------------
> 
>   Here are the changes found in Patchwork_20786 that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@amdgpu/amd_cs_nop@fork-gfx0:
>     - fi-icl-u2:          NOTRUN -> [SKIP][3] ([fdo#109315]) +17 similar issues
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-icl-u2/igt@amdgpu/amd_cs_nop@fork-gfx0.html
> 
>   * igt@gem_exec_suspend@basic-s0:
>     - fi-tgl-1115g4:      [PASS][4] -> [FAIL][5] ([i915#1888])
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s0.html
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s0.html
> 
>   * igt@kms_frontbuffer_tracking@basic:
>     - fi-rkl-11600:       [PASS][6] -> [SKIP][7] ([i915#3180])
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-11600/igt@kms_frontbuffer_tracking@basic.html
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-11600/igt@kms_frontbuffer_tracking@basic.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_exec_suspend@basic-s3:
>     - fi-tgl-1115g4:      [FAIL][8] ([i915#1888]) -> [PASS][9]
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html
> 
>   * igt@i915_pm_rpm@basic-pci-d3-state:
>     - fi-glk-dsi:         [SKIP][10] ([fdo#109271]) -> [PASS][11] +1 similar issue
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-glk-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-glk-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html
>     - fi-icl-u2:          [SKIP][12] ([i915#579]) -> [PASS][13] +1 similar issue
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-icl-u2/igt@i915_pm_rpm@basic-pci-d3-state.html
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-icl-u2/igt@i915_pm_rpm@basic-pci-d3-state.html
>     - fi-kbl-7500u:       [SKIP][14] ([fdo#109271]) -> [PASS][15] +1 similar issue
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-kbl-7500u/igt@i915_pm_rpm@basic-pci-d3-state.html
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-kbl-7500u/igt@i915_pm_rpm@basic-pci-d3-state.html
>     - fi-kbl-soraka:      [SKIP][16] ([fdo#109271]) -> [PASS][17] +1 similar issue
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-kbl-soraka/igt@i915_pm_rpm@basic-pci-d3-state.html
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-kbl-soraka/igt@i915_pm_rpm@basic-pci-d3-state.html
>     - fi-hsw-4770:        [SKIP][18] ([fdo#109271]) -> [PASS][19] +1 similar issue
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-hsw-4770/igt@i915_pm_rpm@basic-pci-d3-state.html
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-hsw-4770/igt@i915_pm_rpm@basic-pci-d3-state.html
>     - fi-bxt-dsi:         [SKIP][20] ([fdo#109271]) -> [PASS][21] +1 similar issue
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-bxt-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-bxt-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html
>     - {fi-tgl-dsi}:       [SKIP][22] ([i915#579]) -> [PASS][23] +1 similar issue
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-tgl-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-tgl-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html
> 
>   * igt@i915_pm_rpm@basic-rte:
>     - fi-kbl-7500u:       [FAIL][24] ([i915#579]) -> [PASS][25]
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-kbl-7500u/igt@i915_pm_rpm@basic-rte.html
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-kbl-7500u/igt@i915_pm_rpm@basic-rte.html
>     - fi-cml-u2:          [FAIL][26] ([i915#579]) -> [PASS][27]
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cml-u2/igt@i915_pm_rpm@basic-rte.html
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cml-u2/igt@i915_pm_rpm@basic-rte.html
>     - {fi-jsl-1}:         [FAIL][28] ([i915#579]) -> [PASS][29]
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-jsl-1/igt@i915_pm_rpm@basic-rte.html
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-jsl-1/igt@i915_pm_rpm@basic-rte.html
>     - fi-rkl-guc:         [FAIL][30] ([i915#3855]) -> [PASS][31]
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-guc/igt@i915_pm_rpm@basic-rte.html
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-guc/igt@i915_pm_rpm@basic-rte.html
>     - fi-bxt-dsi:         [FAIL][32] ([i915#579]) -> [PASS][33]
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-bxt-dsi/igt@i915_pm_rpm@basic-rte.html
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-bxt-dsi/igt@i915_pm_rpm@basic-rte.html
>     - fi-hsw-4770:        [FAIL][34] ([i915#579]) -> [PASS][35]
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-hsw-4770/igt@i915_pm_rpm@basic-rte.html
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-hsw-4770/igt@i915_pm_rpm@basic-rte.html
>     - fi-tgl-1115g4:      [FAIL][36] ([i915#579]) -> [PASS][37]
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html
>     - fi-cfl-guc:         [FAIL][38] ([i915#579]) -> [PASS][39]
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cfl-guc/igt@i915_pm_rpm@basic-rte.html
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cfl-guc/igt@i915_pm_rpm@basic-rte.html
>     - fi-skl-guc:         [FAIL][40] ([i915#579]) -> [PASS][41]
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-skl-guc/igt@i915_pm_rpm@basic-rte.html
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-skl-guc/igt@i915_pm_rpm@basic-rte.html
>     - fi-rkl-11600:       [FAIL][42] ([i915#3855]) -> [PASS][43]
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-11600/igt@i915_pm_rpm@basic-rte.html
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-11600/igt@i915_pm_rpm@basic-rte.html
>     - fi-cfl-8700k:       [FAIL][44] ([i915#579]) -> [PASS][45]
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cfl-8700k/igt@i915_pm_rpm@basic-rte.html
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cfl-8700k/igt@i915_pm_rpm@basic-rte.html
>     - fi-icl-y:           [FAIL][46] ([i915#579]) -> [PASS][47]
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-icl-y/igt@i915_pm_rpm@basic-rte.html
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-icl-y/igt@i915_pm_rpm@basic-rte.html
>     - {fi-ehl-2}:         [FAIL][48] ([i915#579]) -> [PASS][49]
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-ehl-2/igt@i915_pm_rpm@basic-rte.html
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-ehl-2/igt@i915_pm_rpm@basic-rte.html
>     - fi-skl-6700k2:      [FAIL][50] ([i915#579]) -> [PASS][51]
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-skl-6700k2/igt@i915_pm_rpm@basic-rte.html
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-skl-6700k2/igt@i915_pm_rpm@basic-rte.html
>     - fi-icl-u2:          [FAIL][52] ([i915#579]) -> [PASS][53]
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-icl-u2/igt@i915_pm_rpm@basic-rte.html
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-icl-u2/igt@i915_pm_rpm@basic-rte.html
>     - {fi-tgl-dsi}:       [FAIL][54] ([i915#579]) -> [PASS][55]
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-tgl-dsi/igt@i915_pm_rpm@basic-rte.html
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-tgl-dsi/igt@i915_pm_rpm@basic-rte.html
>     - fi-glk-dsi:         [FAIL][56] ([i915#579]) -> [PASS][57]
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-glk-dsi/igt@i915_pm_rpm@basic-rte.html
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-glk-dsi/igt@i915_pm_rpm@basic-rte.html
>     - fi-bsw-kefka:       [FAIL][58] ([i915#3855]) -> [PASS][59]
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-bsw-kefka/igt@i915_pm_rpm@basic-rte.html
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-bsw-kefka/igt@i915_pm_rpm@basic-rte.html
>     - fi-cfl-8109u:       [FAIL][60] ([i915#579]) -> [PASS][61]
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html
>     - fi-kbl-soraka:      [FAIL][62] ([i915#579]) -> [PASS][63]
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-kbl-soraka/igt@i915_pm_rpm@basic-rte.html
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-kbl-soraka/igt@i915_pm_rpm@basic-rte.html
> 
>   * igt@i915_pm_rpm@module-reload:
>     - fi-cfl-8109u:       [SKIP][64] ([fdo#109271]) -> [PASS][65] +1 similar issue
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html
>     - {fi-hsw-gt1}:       [SKIP][66] ([fdo#109271]) -> [PASS][67]
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-hsw-gt1/igt@i915_pm_rpm@module-reload.html
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-hsw-gt1/igt@i915_pm_rpm@module-reload.html
>     - fi-cfl-8700k:       [SKIP][68] ([fdo#109271]) -> [PASS][69] +1 similar issue
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cfl-8700k/igt@i915_pm_rpm@module-reload.html
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cfl-8700k/igt@i915_pm_rpm@module-reload.html
>     - fi-bsw-kefka:       [SKIP][70] ([fdo#109271]) -> [PASS][71] +1 similar issue
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-bsw-kefka/igt@i915_pm_rpm@module-reload.html
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-bsw-kefka/igt@i915_pm_rpm@module-reload.html
>     - fi-rkl-11600:       [SKIP][72] ([i915#3844] / [i915#579]) -> [PASS][73] +1 similar issue
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html
>     - {fi-ehl-2}:         [SKIP][74] ([i915#3844]) -> [PASS][75] +1 similar issue
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-ehl-2/igt@i915_pm_rpm@module-reload.html
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-ehl-2/igt@i915_pm_rpm@module-reload.html
>     - fi-skl-guc:         [SKIP][76] ([fdo#109271]) -> [PASS][77] +1 similar issue
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-skl-guc/igt@i915_pm_rpm@module-reload.html
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-skl-guc/igt@i915_pm_rpm@module-reload.html
>     - fi-skl-6700k2:      [SKIP][78] ([fdo#109271]) -> [PASS][79] +1 similar issue
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-skl-6700k2/igt@i915_pm_rpm@module-reload.html
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-skl-6700k2/igt@i915_pm_rpm@module-reload.html
>     - fi-cfl-guc:         [SKIP][80] ([fdo#109271]) -> [PASS][81] +1 similar issue
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cfl-guc/igt@i915_pm_rpm@module-reload.html
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cfl-guc/igt@i915_pm_rpm@module-reload.html
>     - fi-icl-y:           [SKIP][82] ([i915#579]) -> [PASS][83] +1 similar issue
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-icl-y/igt@i915_pm_rpm@module-reload.html
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-icl-y/igt@i915_pm_rpm@module-reload.html
>     - fi-tgl-1115g4:      [SKIP][84] ([i915#579]) -> [PASS][85] +1 similar issue
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html
>     - {fi-jsl-1}:         [SKIP][86] ([i915#3844]) -> [PASS][87] +1 similar issue
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-jsl-1/igt@i915_pm_rpm@module-reload.html
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-jsl-1/igt@i915_pm_rpm@module-reload.html
>     - fi-rkl-guc:         [SKIP][88] ([i915#3844] / [i915#579]) -> [PASS][89] +1 similar issue
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-guc/igt@i915_pm_rpm@module-reload.html
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-guc/igt@i915_pm_rpm@module-reload.html
>     - fi-cml-u2:          [SKIP][90] ([i915#579]) -> [PASS][91] +1 similar issue
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cml-u2/igt@i915_pm_rpm@module-reload.html
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cml-u2/igt@i915_pm_rpm@module-reload.html
>     - fi-kbl-guc:         [SKIP][92] ([fdo#109271]) -> [PASS][93]
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html
> 
>   * igt@i915_selftest@live@gt_lrc:
>     - fi-rkl-guc:         [DMESG-WARN][94] -> [PASS][95]
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-guc/igt@i915_selftest@live@gt_lrc.html
>    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-guc/igt@i915_selftest@live@gt_lrc.html
> 
>   * igt@i915_selftest@live@hangcheck:
>     - fi-icl-u2:          [INCOMPLETE][96] -> [PASS][97]
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-icl-u2/igt@i915_selftest@live@hangcheck.html
>    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-icl-u2/igt@i915_selftest@live@hangcheck.html
> 
>   
> #### Warnings ####
> 
>   * igt@i915_pm_rpm@basic-rte:
>     - fi-kbl-guc:         [FAIL][98] ([i915#579]) -> [SKIP][99] ([fdo#109271])
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html
>    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
>   [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
>   [i915#3013]: https://gitlab.freedesktop.org/drm/intel/issues/3013
>   [i915#3180]: https://gitlab.freedesktop.org/drm/intel/issues/3180
>   [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303
>   [i915#3844]: https://gitlab.freedesktop.org/drm/intel/issues/3844
>   [i915#3855]: https://gitlab.freedesktop.org/drm/intel/issues/3855
>   [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579
> 
> 
> Participating hosts (37 -> 34)
> ------------------------------
> 
>   Missing    (3): fi-bdw-samus fi-bsw-cyan bat-jsl-1 
> 
> 
> Build changes
> -------------
> 
>   * Linux: CI_DRM_10460 -> Patchwork_20786
> 
>   CI-20190529: 20190529
>   CI_DRM_10460: 933d74e4ff60d39ff929b26780dca84412551174 @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGT_6163: 9f9d82df8c8e68c304e84aba717a9937b65e10e6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>   Patchwork_20786: 6a6bc1405f985b3c0ebbf26a91a166b002142f4d @ git://anongit.freedesktop.org/gfx-ci/linux
> 
> 
> == Linux commits ==
> 
> 6a6bc1405f98 fbdev/efifb: Release PCI device's runtime PM ref during FB destroy
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/index.html

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

* [Intel-gfx] ✓ Fi.CI.BAT: success for fbdev/efifb: Release PCI device's runtime PM ref during FB destroy (rev2)
  2021-08-02 13:35 [Intel-gfx] [PATCH] fbdev/efifb: Release PCI device's runtime PM ref during FB destroy Imre Deak
                   ` (4 preceding siblings ...)
  2021-08-09 14:49 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for fbdev/efifb: Release PCI device's runtime PM ref during FB destroy (rev2) Patchwork
@ 2021-08-09 16:10 ` Patchwork
  2021-08-09 17:23 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
  2021-08-09 18:21 ` [Intel-gfx] ✓ Fi.CI.IGT: success " Patchwork
  7 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2021-08-09 16:10 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-gfx

[-- Attachment #1: Type: text/plain, Size: 17220 bytes --]

== Series Details ==

Series: fbdev/efifb: Release PCI device's runtime PM ref during FB destroy (rev2)
URL   : https://patchwork.freedesktop.org/series/93307/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_10460 -> Patchwork_20786
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_cs_nop@fork-gfx0:
    - fi-icl-u2:          NOTRUN -> [SKIP][1] ([fdo#109315]) +17 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-icl-u2/igt@amdgpu/amd_cs_nop@fork-gfx0.html

  * igt@gem_exec_suspend@basic-s0:
    - fi-tgl-1115g4:      [PASS][2] -> [FAIL][3] ([i915#1888])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s0.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s0.html

  * igt@kms_frontbuffer_tracking@basic:
    - fi-rkl-11600:       [PASS][4] -> [SKIP][5] ([i915#3180])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-11600/igt@kms_frontbuffer_tracking@basic.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-11600/igt@kms_frontbuffer_tracking@basic.html

  * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-a:
    - fi-rkl-11600:       [PASS][6] -> [SKIP][7] ([i915#3919])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-11600/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-a.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-11600/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-a.html

  
#### Possible fixes ####

  * igt@gem_exec_suspend@basic-s3:
    - fi-tgl-1115g4:      [FAIL][8] ([i915#1888]) -> [PASS][9]
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html

  * igt@i915_pm_rpm@basic-pci-d3-state:
    - fi-glk-dsi:         [SKIP][10] ([fdo#109271]) -> [PASS][11] +1 similar issue
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-glk-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-glk-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html
    - fi-icl-u2:          [SKIP][12] ([i915#579]) -> [PASS][13] +1 similar issue
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-icl-u2/igt@i915_pm_rpm@basic-pci-d3-state.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-icl-u2/igt@i915_pm_rpm@basic-pci-d3-state.html
    - fi-kbl-7500u:       [SKIP][14] ([fdo#109271]) -> [PASS][15] +1 similar issue
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-kbl-7500u/igt@i915_pm_rpm@basic-pci-d3-state.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-kbl-7500u/igt@i915_pm_rpm@basic-pci-d3-state.html
    - fi-kbl-soraka:      [SKIP][16] ([fdo#109271]) -> [PASS][17] +1 similar issue
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-kbl-soraka/igt@i915_pm_rpm@basic-pci-d3-state.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-kbl-soraka/igt@i915_pm_rpm@basic-pci-d3-state.html
    - fi-hsw-4770:        [SKIP][18] ([fdo#109271]) -> [PASS][19] +1 similar issue
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-hsw-4770/igt@i915_pm_rpm@basic-pci-d3-state.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-hsw-4770/igt@i915_pm_rpm@basic-pci-d3-state.html
    - fi-bxt-dsi:         [SKIP][20] ([fdo#109271]) -> [PASS][21] +1 similar issue
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-bxt-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-bxt-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html
    - {fi-tgl-dsi}:       [SKIP][22] ([i915#579]) -> [PASS][23] +1 similar issue
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-tgl-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-tgl-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html

  * igt@i915_pm_rpm@basic-rte:
    - fi-kbl-7500u:       [FAIL][24] ([i915#579]) -> [PASS][25]
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-kbl-7500u/igt@i915_pm_rpm@basic-rte.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-kbl-7500u/igt@i915_pm_rpm@basic-rte.html
    - fi-cml-u2:          [FAIL][26] ([i915#579]) -> [PASS][27]
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cml-u2/igt@i915_pm_rpm@basic-rte.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cml-u2/igt@i915_pm_rpm@basic-rte.html
    - {fi-jsl-1}:         [FAIL][28] ([i915#579]) -> [PASS][29]
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-jsl-1/igt@i915_pm_rpm@basic-rte.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-jsl-1/igt@i915_pm_rpm@basic-rte.html
    - fi-rkl-guc:         [FAIL][30] ([i915#3855]) -> [PASS][31]
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-guc/igt@i915_pm_rpm@basic-rte.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-guc/igt@i915_pm_rpm@basic-rte.html
    - fi-bxt-dsi:         [FAIL][32] ([i915#579]) -> [PASS][33]
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-bxt-dsi/igt@i915_pm_rpm@basic-rte.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-bxt-dsi/igt@i915_pm_rpm@basic-rte.html
    - fi-hsw-4770:        [FAIL][34] ([i915#579]) -> [PASS][35]
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-hsw-4770/igt@i915_pm_rpm@basic-rte.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-hsw-4770/igt@i915_pm_rpm@basic-rte.html
    - fi-tgl-1115g4:      [FAIL][36] ([i915#579]) -> [PASS][37]
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html
    - fi-cfl-guc:         [FAIL][38] ([i915#579]) -> [PASS][39]
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cfl-guc/igt@i915_pm_rpm@basic-rte.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cfl-guc/igt@i915_pm_rpm@basic-rte.html
    - fi-skl-guc:         [FAIL][40] ([i915#579]) -> [PASS][41]
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-skl-guc/igt@i915_pm_rpm@basic-rte.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-skl-guc/igt@i915_pm_rpm@basic-rte.html
    - fi-rkl-11600:       [FAIL][42] ([i915#3855]) -> [PASS][43]
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-11600/igt@i915_pm_rpm@basic-rte.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-11600/igt@i915_pm_rpm@basic-rte.html
    - fi-cfl-8700k:       [FAIL][44] ([i915#579]) -> [PASS][45]
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cfl-8700k/igt@i915_pm_rpm@basic-rte.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cfl-8700k/igt@i915_pm_rpm@basic-rte.html
    - fi-icl-y:           [FAIL][46] ([i915#579]) -> [PASS][47]
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-icl-y/igt@i915_pm_rpm@basic-rte.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-icl-y/igt@i915_pm_rpm@basic-rte.html
    - {fi-ehl-2}:         [FAIL][48] ([i915#579]) -> [PASS][49]
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-ehl-2/igt@i915_pm_rpm@basic-rte.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-ehl-2/igt@i915_pm_rpm@basic-rte.html
    - fi-skl-6700k2:      [FAIL][50] ([i915#579]) -> [PASS][51]
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-skl-6700k2/igt@i915_pm_rpm@basic-rte.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-skl-6700k2/igt@i915_pm_rpm@basic-rte.html
    - fi-icl-u2:          [FAIL][52] ([i915#579]) -> [PASS][53]
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-icl-u2/igt@i915_pm_rpm@basic-rte.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-icl-u2/igt@i915_pm_rpm@basic-rte.html
    - {fi-tgl-dsi}:       [FAIL][54] ([i915#579]) -> [PASS][55]
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-tgl-dsi/igt@i915_pm_rpm@basic-rte.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-tgl-dsi/igt@i915_pm_rpm@basic-rte.html
    - fi-glk-dsi:         [FAIL][56] ([i915#579]) -> [PASS][57]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-glk-dsi/igt@i915_pm_rpm@basic-rte.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-glk-dsi/igt@i915_pm_rpm@basic-rte.html
    - fi-bsw-kefka:       [FAIL][58] ([i915#3855]) -> [PASS][59]
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-bsw-kefka/igt@i915_pm_rpm@basic-rte.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-bsw-kefka/igt@i915_pm_rpm@basic-rte.html
    - fi-cfl-8109u:       [FAIL][60] ([i915#579]) -> [PASS][61]
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html
    - fi-kbl-soraka:      [FAIL][62] ([i915#579]) -> [PASS][63]
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-kbl-soraka/igt@i915_pm_rpm@basic-rte.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-kbl-soraka/igt@i915_pm_rpm@basic-rte.html

  * igt@i915_pm_rpm@module-reload:
    - fi-cfl-8109u:       [SKIP][64] ([fdo#109271]) -> [PASS][65] +1 similar issue
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html
    - {fi-hsw-gt1}:       [SKIP][66] ([fdo#109271]) -> [PASS][67]
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-hsw-gt1/igt@i915_pm_rpm@module-reload.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-hsw-gt1/igt@i915_pm_rpm@module-reload.html
    - fi-cfl-8700k:       [SKIP][68] ([fdo#109271]) -> [PASS][69] +1 similar issue
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cfl-8700k/igt@i915_pm_rpm@module-reload.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cfl-8700k/igt@i915_pm_rpm@module-reload.html
    - fi-bsw-kefka:       [SKIP][70] ([fdo#109271]) -> [PASS][71] +1 similar issue
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-bsw-kefka/igt@i915_pm_rpm@module-reload.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-bsw-kefka/igt@i915_pm_rpm@module-reload.html
    - fi-rkl-11600:       [SKIP][72] ([i915#3844] / [i915#579]) -> [PASS][73] +1 similar issue
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html
    - {fi-ehl-2}:         [SKIP][74] ([i915#3844]) -> [PASS][75] +1 similar issue
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-ehl-2/igt@i915_pm_rpm@module-reload.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-ehl-2/igt@i915_pm_rpm@module-reload.html
    - fi-skl-guc:         [SKIP][76] ([fdo#109271]) -> [PASS][77] +1 similar issue
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-skl-guc/igt@i915_pm_rpm@module-reload.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-skl-guc/igt@i915_pm_rpm@module-reload.html
    - fi-skl-6700k2:      [SKIP][78] ([fdo#109271]) -> [PASS][79] +1 similar issue
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-skl-6700k2/igt@i915_pm_rpm@module-reload.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-skl-6700k2/igt@i915_pm_rpm@module-reload.html
    - fi-cfl-guc:         [SKIP][80] ([fdo#109271]) -> [PASS][81] +1 similar issue
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cfl-guc/igt@i915_pm_rpm@module-reload.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cfl-guc/igt@i915_pm_rpm@module-reload.html
    - fi-icl-y:           [SKIP][82] ([i915#579]) -> [PASS][83] +1 similar issue
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-icl-y/igt@i915_pm_rpm@module-reload.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-icl-y/igt@i915_pm_rpm@module-reload.html
    - fi-tgl-1115g4:      [SKIP][84] ([i915#579]) -> [PASS][85] +1 similar issue
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html
    - {fi-jsl-1}:         [SKIP][86] ([i915#3844]) -> [PASS][87] +1 similar issue
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-jsl-1/igt@i915_pm_rpm@module-reload.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-jsl-1/igt@i915_pm_rpm@module-reload.html
    - fi-rkl-guc:         [SKIP][88] ([i915#3844] / [i915#579]) -> [PASS][89] +1 similar issue
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-guc/igt@i915_pm_rpm@module-reload.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-guc/igt@i915_pm_rpm@module-reload.html
    - fi-cml-u2:          [SKIP][90] ([i915#579]) -> [PASS][91] +1 similar issue
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cml-u2/igt@i915_pm_rpm@module-reload.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cml-u2/igt@i915_pm_rpm@module-reload.html
    - fi-kbl-guc:         [SKIP][92] ([fdo#109271]) -> [PASS][93]
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live@gt_lrc:
    - fi-rkl-guc:         [DMESG-WARN][94] -> [PASS][95]
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-guc/igt@i915_selftest@live@gt_lrc.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-guc/igt@i915_selftest@live@gt_lrc.html

  * igt@i915_selftest@live@hangcheck:
    - fi-icl-u2:          [INCOMPLETE][96] -> [PASS][97]
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-icl-u2/igt@i915_selftest@live@hangcheck.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-icl-u2/igt@i915_selftest@live@hangcheck.html

  
#### Warnings ####

  * igt@i915_pm_rpm@basic-rte:
    - fi-kbl-guc:         [FAIL][98] ([i915#579]) -> [SKIP][99] ([fdo#109271])
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html

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

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#3013]: https://gitlab.freedesktop.org/drm/intel/issues/3013
  [i915#3180]: https://gitlab.freedesktop.org/drm/intel/issues/3180
  [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303
  [i915#3844]: https://gitlab.freedesktop.org/drm/intel/issues/3844
  [i915#3855]: https://gitlab.freedesktop.org/drm/intel/issues/3855
  [i915#3919]: https://gitlab.freedesktop.org/drm/intel/issues/3919
  [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579


Participating hosts (37 -> 34)
------------------------------

  Missing    (3): fi-bdw-samus fi-bsw-cyan bat-jsl-1 


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

  * Linux: CI_DRM_10460 -> Patchwork_20786

  CI-20190529: 20190529
  CI_DRM_10460: 933d74e4ff60d39ff929b26780dca84412551174 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_6163: 9f9d82df8c8e68c304e84aba717a9937b65e10e6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  Patchwork_20786: 6a6bc1405f985b3c0ebbf26a91a166b002142f4d @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

6a6bc1405f98 fbdev/efifb: Release PCI device's runtime PM ref during FB destroy

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/index.html

[-- Attachment #2: Type: text/html, Size: 21267 bytes --]

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

* Re: [Intel-gfx]  ✗ Fi.CI.BAT: failure for fbdev/efifb: Release PCI device's runtime PM ref during FB destroy (rev2)
  2021-08-09 15:12   ` Imre Deak
@ 2021-08-09 16:37     ` Vudum, Lakshminarayana
  0 siblings, 0 replies; 19+ messages in thread
From: Vudum, Lakshminarayana @ 2021-08-09 16:37 UTC (permalink / raw)
  To: Deak, Imre, intel-gfx

Filed a new bug for the skip and re-reported.

Lakshmi.

-----Original Message-----
From: Deak, Imre <imre.deak@intel.com> 
Sent: Monday, August 9, 2021 8:13 AM
To: intel-gfx@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Subject: Re: ✗ Fi.CI.BAT: failure for fbdev/efifb: Release PCI device's runtime PM ref during FB destroy (rev2)

Hi Lakshmi,

On Mon, Aug 09, 2021 at 02:49:24PM +0000, Patchwork wrote:
> [...]
> #### Possible regressions ####
> 
>   * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-a:
>     - fi-rkl-11600:       [PASS][1] -> [SKIP][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-11600/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-a.html
>    [2]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-11600/
> igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-a.html

The skip is due to the monitor disconnecting itself at:
<7>[  110.708337] [IGT] kms_force_connector_basic: exiting, ret=0 ...
<7>[  110.750522] i915 0000:00:02.0: [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00020000, dig 0x000000a0, pins 0x00000020, long 0x00000020 ...
<7>[  110.750915] [drm:intel_encoder_hotplug [i915]] [CONNECTOR:185:HDMI-A-1] status updated from connected to disconnected (epoch counter 15->16)

and only re-appearing at:

<7>[  110.892384] [IGT] kms_pipe_crc_basic: starting subtest compare-crc-sanitycheck-pipe-A <7>[  110.892657] [IGT] kms_pipe_crc_basic: exiting, ret=77 ...
<7>[  110.948844] i915 0000:00:02.0: [drm:gen8_de_irq_handler [i915]] hotplug event received, stat 0x00020000, dig 0x000000a0, pins 0x00000020, long 0x00000020 ...
<7>[  110.969382] [drm:drm_helper_probe_single_connector_modes] [CONNECTOR:185:HDMI-A-1] status updated from disconnected to connected

Possibly the monitor entering/exiting some power saving state when IGT doesn't expect this. The patch only affects runtime PM, re-enabling the runtime suspend functionality, but the first runtime suspend happens only at:

<7>[  122.366611] i915 0000:00:02.0: [drm:intel_runtime_suspend [i915]] Device suspended

so I can't see how the changes are related to the skip.

> Known issues
> ------------
> 
>   Here are the changes found in Patchwork_20786 that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@amdgpu/amd_cs_nop@fork-gfx0:
>     - fi-icl-u2:          NOTRUN -> [SKIP][3] ([fdo#109315]) +17 similar issues
>    [3]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-icl-u2/igt
> @amdgpu/amd_cs_nop@fork-gfx0.html
> 
>   * igt@gem_exec_suspend@basic-s0:
>     - fi-tgl-1115g4:      [PASS][4] -> [FAIL][5] ([i915#1888])
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s0.html
>    [5]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-tgl-1115g4
> /igt@gem_exec_suspend@basic-s0.html
> 
>   * igt@kms_frontbuffer_tracking@basic:
>     - fi-rkl-11600:       [PASS][6] -> [SKIP][7] ([i915#3180])
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-11600/igt@kms_frontbuffer_tracking@basic.html
>    [7]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-11600/
> igt@kms_frontbuffer_tracking@basic.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@gem_exec_suspend@basic-s3:
>     - fi-tgl-1115g4:      [FAIL][8] ([i915#1888]) -> [PASS][9]
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html
>    [9]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-tgl-1115g4
> /igt@gem_exec_suspend@basic-s3.html
> 
>   * igt@i915_pm_rpm@basic-pci-d3-state:
>     - fi-glk-dsi:         [SKIP][10] ([fdo#109271]) -> [PASS][11] +1 similar issue
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-glk-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-glk-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html
>     - fi-icl-u2:          [SKIP][12] ([i915#579]) -> [PASS][13] +1 similar issue
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-icl-u2/igt@i915_pm_rpm@basic-pci-d3-state.html
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-icl-u2/igt@i915_pm_rpm@basic-pci-d3-state.html
>     - fi-kbl-7500u:       [SKIP][14] ([fdo#109271]) -> [PASS][15] +1 similar issue
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-kbl-7500u/igt@i915_pm_rpm@basic-pci-d3-state.html
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-kbl-7500u/igt@i915_pm_rpm@basic-pci-d3-state.html
>     - fi-kbl-soraka:      [SKIP][16] ([fdo#109271]) -> [PASS][17] +1 similar issue
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-kbl-soraka/igt@i915_pm_rpm@basic-pci-d3-state.html
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-kbl-soraka/igt@i915_pm_rpm@basic-pci-d3-state.html
>     - fi-hsw-4770:        [SKIP][18] ([fdo#109271]) -> [PASS][19] +1 similar issue
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-hsw-4770/igt@i915_pm_rpm@basic-pci-d3-state.html
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-hsw-4770/igt@i915_pm_rpm@basic-pci-d3-state.html
>     - fi-bxt-dsi:         [SKIP][20] ([fdo#109271]) -> [PASS][21] +1 similar issue
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-bxt-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-bxt-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html
>     - {fi-tgl-dsi}:       [SKIP][22] ([i915#579]) -> [PASS][23] +1 similar issue
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-tgl-dsi/igt@i915_pm_rpm@basic-pci-d3-state.html
>    [23]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-tgl-dsi/ig
> t@i915_pm_rpm@basic-pci-d3-state.html
> 
>   * igt@i915_pm_rpm@basic-rte:
>     - fi-kbl-7500u:       [FAIL][24] ([i915#579]) -> [PASS][25]
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-kbl-7500u/igt@i915_pm_rpm@basic-rte.html
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-kbl-7500u/igt@i915_pm_rpm@basic-rte.html
>     - fi-cml-u2:          [FAIL][26] ([i915#579]) -> [PASS][27]
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cml-u2/igt@i915_pm_rpm@basic-rte.html
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cml-u2/igt@i915_pm_rpm@basic-rte.html
>     - {fi-jsl-1}:         [FAIL][28] ([i915#579]) -> [PASS][29]
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-jsl-1/igt@i915_pm_rpm@basic-rte.html
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-jsl-1/igt@i915_pm_rpm@basic-rte.html
>     - fi-rkl-guc:         [FAIL][30] ([i915#3855]) -> [PASS][31]
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-guc/igt@i915_pm_rpm@basic-rte.html
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-guc/igt@i915_pm_rpm@basic-rte.html
>     - fi-bxt-dsi:         [FAIL][32] ([i915#579]) -> [PASS][33]
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-bxt-dsi/igt@i915_pm_rpm@basic-rte.html
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-bxt-dsi/igt@i915_pm_rpm@basic-rte.html
>     - fi-hsw-4770:        [FAIL][34] ([i915#579]) -> [PASS][35]
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-hsw-4770/igt@i915_pm_rpm@basic-rte.html
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-hsw-4770/igt@i915_pm_rpm@basic-rte.html
>     - fi-tgl-1115g4:      [FAIL][36] ([i915#579]) -> [PASS][37]
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-tgl-1115g4/igt@i915_pm_rpm@basic-rte.html
>     - fi-cfl-guc:         [FAIL][38] ([i915#579]) -> [PASS][39]
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cfl-guc/igt@i915_pm_rpm@basic-rte.html
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cfl-guc/igt@i915_pm_rpm@basic-rte.html
>     - fi-skl-guc:         [FAIL][40] ([i915#579]) -> [PASS][41]
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-skl-guc/igt@i915_pm_rpm@basic-rte.html
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-skl-guc/igt@i915_pm_rpm@basic-rte.html
>     - fi-rkl-11600:       [FAIL][42] ([i915#3855]) -> [PASS][43]
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-11600/igt@i915_pm_rpm@basic-rte.html
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-11600/igt@i915_pm_rpm@basic-rte.html
>     - fi-cfl-8700k:       [FAIL][44] ([i915#579]) -> [PASS][45]
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cfl-8700k/igt@i915_pm_rpm@basic-rte.html
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cfl-8700k/igt@i915_pm_rpm@basic-rte.html
>     - fi-icl-y:           [FAIL][46] ([i915#579]) -> [PASS][47]
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-icl-y/igt@i915_pm_rpm@basic-rte.html
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-icl-y/igt@i915_pm_rpm@basic-rte.html
>     - {fi-ehl-2}:         [FAIL][48] ([i915#579]) -> [PASS][49]
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-ehl-2/igt@i915_pm_rpm@basic-rte.html
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-ehl-2/igt@i915_pm_rpm@basic-rte.html
>     - fi-skl-6700k2:      [FAIL][50] ([i915#579]) -> [PASS][51]
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-skl-6700k2/igt@i915_pm_rpm@basic-rte.html
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-skl-6700k2/igt@i915_pm_rpm@basic-rte.html
>     - fi-icl-u2:          [FAIL][52] ([i915#579]) -> [PASS][53]
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-icl-u2/igt@i915_pm_rpm@basic-rte.html
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-icl-u2/igt@i915_pm_rpm@basic-rte.html
>     - {fi-tgl-dsi}:       [FAIL][54] ([i915#579]) -> [PASS][55]
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-tgl-dsi/igt@i915_pm_rpm@basic-rte.html
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-tgl-dsi/igt@i915_pm_rpm@basic-rte.html
>     - fi-glk-dsi:         [FAIL][56] ([i915#579]) -> [PASS][57]
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-glk-dsi/igt@i915_pm_rpm@basic-rte.html
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-glk-dsi/igt@i915_pm_rpm@basic-rte.html
>     - fi-bsw-kefka:       [FAIL][58] ([i915#3855]) -> [PASS][59]
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-bsw-kefka/igt@i915_pm_rpm@basic-rte.html
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-bsw-kefka/igt@i915_pm_rpm@basic-rte.html
>     - fi-cfl-8109u:       [FAIL][60] ([i915#579]) -> [PASS][61]
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html
>     - fi-kbl-soraka:      [FAIL][62] ([i915#579]) -> [PASS][63]
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-kbl-soraka/igt@i915_pm_rpm@basic-rte.html
>    [63]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-kbl-soraka
> /igt@i915_pm_rpm@basic-rte.html
> 
>   * igt@i915_pm_rpm@module-reload:
>     - fi-cfl-8109u:       [SKIP][64] ([fdo#109271]) -> [PASS][65] +1 similar issue
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cfl-8109u/igt@i915_pm_rpm@module-reload.html
>     - {fi-hsw-gt1}:       [SKIP][66] ([fdo#109271]) -> [PASS][67]
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-hsw-gt1/igt@i915_pm_rpm@module-reload.html
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-hsw-gt1/igt@i915_pm_rpm@module-reload.html
>     - fi-cfl-8700k:       [SKIP][68] ([fdo#109271]) -> [PASS][69] +1 similar issue
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cfl-8700k/igt@i915_pm_rpm@module-reload.html
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cfl-8700k/igt@i915_pm_rpm@module-reload.html
>     - fi-bsw-kefka:       [SKIP][70] ([fdo#109271]) -> [PASS][71] +1 similar issue
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-bsw-kefka/igt@i915_pm_rpm@module-reload.html
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-bsw-kefka/igt@i915_pm_rpm@module-reload.html
>     - fi-rkl-11600:       [SKIP][72] ([i915#3844] / [i915#579]) -> [PASS][73] +1 similar issue
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html
>     - {fi-ehl-2}:         [SKIP][74] ([i915#3844]) -> [PASS][75] +1 similar issue
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-ehl-2/igt@i915_pm_rpm@module-reload.html
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-ehl-2/igt@i915_pm_rpm@module-reload.html
>     - fi-skl-guc:         [SKIP][76] ([fdo#109271]) -> [PASS][77] +1 similar issue
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-skl-guc/igt@i915_pm_rpm@module-reload.html
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-skl-guc/igt@i915_pm_rpm@module-reload.html
>     - fi-skl-6700k2:      [SKIP][78] ([fdo#109271]) -> [PASS][79] +1 similar issue
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-skl-6700k2/igt@i915_pm_rpm@module-reload.html
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-skl-6700k2/igt@i915_pm_rpm@module-reload.html
>     - fi-cfl-guc:         [SKIP][80] ([fdo#109271]) -> [PASS][81] +1 similar issue
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cfl-guc/igt@i915_pm_rpm@module-reload.html
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cfl-guc/igt@i915_pm_rpm@module-reload.html
>     - fi-icl-y:           [SKIP][82] ([i915#579]) -> [PASS][83] +1 similar issue
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-icl-y/igt@i915_pm_rpm@module-reload.html
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-icl-y/igt@i915_pm_rpm@module-reload.html
>     - fi-tgl-1115g4:      [SKIP][84] ([i915#579]) -> [PASS][85] +1 similar issue
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html
>     - {fi-jsl-1}:         [SKIP][86] ([i915#3844]) -> [PASS][87] +1 similar issue
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-jsl-1/igt@i915_pm_rpm@module-reload.html
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-jsl-1/igt@i915_pm_rpm@module-reload.html
>     - fi-rkl-guc:         [SKIP][88] ([i915#3844] / [i915#579]) -> [PASS][89] +1 similar issue
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-guc/igt@i915_pm_rpm@module-reload.html
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-guc/igt@i915_pm_rpm@module-reload.html
>     - fi-cml-u2:          [SKIP][90] ([i915#579]) -> [PASS][91] +1 similar issue
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-cml-u2/igt@i915_pm_rpm@module-reload.html
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-cml-u2/igt@i915_pm_rpm@module-reload.html
>     - fi-kbl-guc:         [SKIP][92] ([fdo#109271]) -> [PASS][93]
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html
>    [93]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-kbl-guc/ig
> t@i915_pm_rpm@module-reload.html
> 
>   * igt@i915_selftest@live@gt_lrc:
>     - fi-rkl-guc:         [DMESG-WARN][94] -> [PASS][95]
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-rkl-guc/igt@i915_selftest@live@gt_lrc.html
>    [95]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-rkl-guc/ig
> t@i915_selftest@live@gt_lrc.html
> 
>   * igt@i915_selftest@live@hangcheck:
>     - fi-icl-u2:          [INCOMPLETE][96] -> [PASS][97]
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-icl-u2/igt@i915_selftest@live@hangcheck.html
>    [97]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-icl-u2/igt
> @i915_selftest@live@hangcheck.html
> 
>   
> #### Warnings ####
> 
>   * igt@i915_pm_rpm@basic-rte:
>     - fi-kbl-guc:         [FAIL][98] ([i915#579]) -> [SKIP][99] ([fdo#109271])
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/fi-kbl-guc/igt@i915_pm_rpm@basic-rte.html
>    [99]: 
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/fi-kbl-guc/ig
> t@i915_pm_rpm@basic-rte.html
> 
>   
>   {name}: This element is suppressed. This means it is ignored when computing
>           the status of the difference (SUCCESS, WARNING, or FAILURE).
> 
>   [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>   [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
>   [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
>   [i915#3013]: https://gitlab.freedesktop.org/drm/intel/issues/3013
>   [i915#3180]: https://gitlab.freedesktop.org/drm/intel/issues/3180
>   [i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303
>   [i915#3844]: https://gitlab.freedesktop.org/drm/intel/issues/3844
>   [i915#3855]: https://gitlab.freedesktop.org/drm/intel/issues/3855
>   [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579
> 
> 
> Participating hosts (37 -> 34)
> ------------------------------
> 
>   Missing    (3): fi-bdw-samus fi-bsw-cyan bat-jsl-1 
> 
> 
> Build changes
> -------------
> 
>   * Linux: CI_DRM_10460 -> Patchwork_20786
> 
>   CI-20190529: 20190529
>   CI_DRM_10460: 933d74e4ff60d39ff929b26780dca84412551174 @ git://anongit.freedesktop.org/gfx-ci/linux
>   IGT_6163: 9f9d82df8c8e68c304e84aba717a9937b65e10e6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>   Patchwork_20786: 6a6bc1405f985b3c0ebbf26a91a166b002142f4d @ 
> git://anongit.freedesktop.org/gfx-ci/linux
> 
> 
> == Linux commits ==
> 
> 6a6bc1405f98 fbdev/efifb: Release PCI device's runtime PM ref during 
> FB destroy
> 
> == Logs ==
> 
> For more details see: 
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/index.html

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

* [Intel-gfx] ✗ Fi.CI.IGT: failure for fbdev/efifb: Release PCI device's runtime PM ref during FB destroy (rev2)
  2021-08-02 13:35 [Intel-gfx] [PATCH] fbdev/efifb: Release PCI device's runtime PM ref during FB destroy Imre Deak
                   ` (5 preceding siblings ...)
  2021-08-09 16:10 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
@ 2021-08-09 17:23 ` Patchwork
  2021-08-09 17:57   ` Imre Deak
  2021-08-09 18:21 ` [Intel-gfx] ✓ Fi.CI.IGT: success " Patchwork
  7 siblings, 1 reply; 19+ messages in thread
From: Patchwork @ 2021-08-09 17:23 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-gfx

[-- Attachment #1: Type: text/plain, Size: 30296 bytes --]

== Series Details ==

Series: fbdev/efifb: Release PCI device's runtime PM ref during FB destroy (rev2)
URL   : https://patchwork.freedesktop.org/series/93307/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_10460_full -> Patchwork_20786_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with Patchwork_20786_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in Patchwork_20786_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_20786_full:

### IGT changes ###

#### Possible regressions ####

  * igt@i915_selftest@live@hangcheck:
    - shard-snb:          [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-snb2/igt@i915_selftest@live@hangcheck.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-snb6/igt@i915_selftest@live@hangcheck.html

  
#### Suppressed ####

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

  * {igt@i915_pm_rpm@gem-mmap-type@fixed}:
    - shard-tglb:         NOTRUN -> [SKIP][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb5/igt@i915_pm_rpm@gem-mmap-type@fixed.html
    - shard-iclb:         NOTRUN -> [SKIP][4]
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb5/igt@i915_pm_rpm@gem-mmap-type@fixed.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_persistence@legacy-engines-mixed:
    - shard-snb:          NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#1099]) +1 similar issue
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-snb5/igt@gem_ctx_persistence@legacy-engines-mixed.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-kbl:          NOTRUN -> [FAIL][6] ([i915#2846])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl2/igt@gem_exec_fair@basic-deadline.html
    - shard-glk:          [PASS][7] -> [FAIL][8] ([i915#2846])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk3/igt@gem_exec_fair@basic-deadline.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk6/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-apl:          [PASS][9] -> [FAIL][10] ([i915#2842])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-apl7/igt@gem_exec_fair@basic-none@vcs0.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl2/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [PASS][11] -> [FAIL][12] ([i915#2842])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         [PASS][13] -> [FAIL][14] ([i915#2849])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb4/igt@gem_exec_fair@basic-throttle@rcs0.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-snb:          NOTRUN -> [WARN][15] ([i915#2658])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-snb6/igt@gem_pwrite@basic-exhaustion.html
    - shard-apl:          NOTRUN -> [WARN][16] ([i915#2658])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl1/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_softpin@noreloc-s3:
    - shard-kbl:          [PASS][17] -> [DMESG-WARN][18] ([i915#180]) +1 similar issue
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-kbl4/igt@gem_softpin@noreloc-s3.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl6/igt@gem_softpin@noreloc-s3.html

  * igt@gen7_exec_parse@basic-offset:
    - shard-apl:          NOTRUN -> [SKIP][19] ([fdo#109271]) +167 similar issues
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl1/igt@gen7_exec_parse@basic-offset.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-kbl:          NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#3777]) +1 similar issue
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-apl:          NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#3777]) +1 similar issue
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#3886]) +6 similar issues
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl7/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
    - shard-kbl:          NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#3886]) +5 similar issues
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl7/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
    - shard-skl:          NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#3886]) +3 similar issues
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_color@pipe-d-ctm-negative:
    - shard-skl:          NOTRUN -> [SKIP][25] ([fdo#109271]) +50 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@kms_color@pipe-d-ctm-negative.html

  * igt@kms_color_chamelium@pipe-a-ctm-negative:
    - shard-snb:          NOTRUN -> [SKIP][26] ([fdo#109271] / [fdo#111827]) +7 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-snb6/igt@kms_color_chamelium@pipe-a-ctm-negative.html

  * igt@kms_color_chamelium@pipe-a-degamma:
    - shard-kbl:          NOTRUN -> [SKIP][27] ([fdo#109271] / [fdo#111827]) +10 similar issues
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl2/igt@kms_color_chamelium@pipe-a-degamma.html

  * igt@kms_color_chamelium@pipe-b-ctm-limited-range:
    - shard-skl:          NOTRUN -> [SKIP][28] ([fdo#109271] / [fdo#111827]) +1 similar issue
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@kms_color_chamelium@pipe-b-ctm-limited-range.html

  * igt@kms_color_chamelium@pipe-c-ctm-0-25:
    - shard-apl:          NOTRUN -> [SKIP][29] ([fdo#109271] / [fdo#111827]) +13 similar issues
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl3/igt@kms_color_chamelium@pipe-c-ctm-0-25.html

  * igt@kms_content_protection@srm:
    - shard-apl:          NOTRUN -> [TIMEOUT][30] ([i915#1319])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl1/igt@kms_content_protection@srm.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-skl:          [PASS][31] -> [FAIL][32] ([i915#2346])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-xtiled:
    - shard-glk:          [PASS][33] -> [FAIL][34] ([i915#1888] / [i915#3451])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk1/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-xtiled.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk6/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-xtiled.html

  * igt@kms_dsc@basic-dsc-enable@edp-1-pipe-c:
    - shard-iclb:         NOTRUN -> [DMESG-WARN][35] ([i915#1226]) +2 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb2/igt@kms_dsc@basic-dsc-enable@edp-1-pipe-c.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-skl:          [PASS][36] -> [FAIL][37] ([i915#2122])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
    - shard-kbl:          NOTRUN -> [SKIP][38] ([fdo#109271]) +97 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
    - shard-snb:          NOTRUN -> [SKIP][39] ([fdo#109271]) +143 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-snb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_pipe_crc_basic@hang-read-crc-pipe-d:
    - shard-skl:          NOTRUN -> [SKIP][40] ([fdo#109271] / [i915#533])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@kms_pipe_crc_basic@hang-read-crc-pipe-d.html

  * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence:
    - shard-kbl:          NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#533])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl2/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
    - shard-apl:          NOTRUN -> [FAIL][42] ([i915#265])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl3/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-basic:
    - shard-kbl:          NOTRUN -> [FAIL][43] ([fdo#108145] / [i915#265]) +1 similar issue
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl2/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
    - shard-skl:          NOTRUN -> [FAIL][44] ([fdo#108145] / [i915#265])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
    - shard-apl:          NOTRUN -> [SKIP][45] ([fdo#109271] / [i915#658]) +3 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-2:
    - shard-skl:          NOTRUN -> [SKIP][46] ([fdo#109271] / [i915#658]) +2 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html

  * igt@kms_psr@psr2_no_drrs:
    - shard-iclb:         [PASS][47] -> [SKIP][48] ([fdo#109441])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb2/igt@kms_psr@psr2_no_drrs.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb6/igt@kms_psr@psr2_no_drrs.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-apl:          NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#2437])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl1/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@perf@polling-small-buf:
    - shard-skl:          [PASS][50] -> [FAIL][51] ([i915#1722])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl2/igt@perf@polling-small-buf.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl8/igt@perf@polling-small-buf.html

  * igt@perf_pmu@module-unload:
    - shard-skl:          NOTRUN -> [DMESG-WARN][52] ([i915#1982] / [i915#262])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@perf_pmu@module-unload.html

  * igt@sysfs_clients@fair-1:
    - shard-kbl:          NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#2994])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl2/igt@sysfs_clients@fair-1.html

  * igt@sysfs_clients@pidname:
    - shard-skl:          NOTRUN -> [SKIP][54] ([fdo#109271] / [i915#2994])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@sysfs_clients@pidname.html

  * igt@sysfs_clients@sema-10:
    - shard-apl:          NOTRUN -> [SKIP][55] ([fdo#109271] / [i915#2994])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl3/igt@sysfs_clients@sema-10.html

  
#### Possible fixes ####

  * igt@feature_discovery@psr2:
    - shard-iclb:         [SKIP][56] ([i915#658]) -> [PASS][57]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb4/igt@feature_discovery@psr2.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb2/igt@feature_discovery@psr2.html

  * igt@gem_ctx_persistence@many-contexts:
    - {shard-rkl}:        [FAIL][58] ([i915#2410]) -> [PASS][59]
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-rkl-1/igt@gem_ctx_persistence@many-contexts.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-rkl-2/igt@gem_ctx_persistence@many-contexts.html

  * igt@gem_eio@unwedge-stress:
    - shard-tglb:         [TIMEOUT][60] ([i915#2369] / [i915#3063] / [i915#3648]) -> [PASS][61]
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb7/igt@gem_eio@unwedge-stress.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb2/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-none@rcs0:
    - shard-glk:          [FAIL][62] ([i915#2842]) -> [PASS][63]
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk6/igt@gem_exec_fair@basic-none@rcs0.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk9/igt@gem_exec_fair@basic-none@rcs0.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-kbl:          [FAIL][64] ([i915#2842]) -> [PASS][65] +3 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-kbl2/igt@gem_exec_fair@basic-none@vcs0.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl4/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_fair@basic-none@vecs0:
    - shard-apl:          [FAIL][66] ([i915#2842] / [i915#3468]) -> [PASS][67]
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-apl7/igt@gem_exec_fair@basic-none@vecs0.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl2/igt@gem_exec_fair@basic-none@vecs0.html

  * igt@gem_exec_fair@basic-pace@bcs0:
    - shard-tglb:         [FAIL][68] ([i915#2842]) -> [PASS][69] +1 similar issue
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb6/igt@gem_exec_fair@basic-pace@bcs0.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb1/igt@gem_exec_fair@basic-pace@bcs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - {shard-rkl}:        [FAIL][70] ([i915#2842]) -> [PASS][71] +2 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-rkl-5/igt@gem_exec_fair@basic-throttle@rcs0.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-rkl-2/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_whisper@basic-contexts-all:
    - shard-glk:          [DMESG-WARN][72] ([i915#118] / [i915#95]) -> [PASS][73] +1 similar issue
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk1/igt@gem_exec_whisper@basic-contexts-all.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk6/igt@gem_exec_whisper@basic-contexts-all.html

  * igt@gem_mmap_gtt@cpuset-big-copy:
    - shard-iclb:         [FAIL][74] ([i915#2428]) -> [PASS][75]
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb8/igt@gem_mmap_gtt@cpuset-big-copy.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb3/igt@gem_mmap_gtt@cpuset-big-copy.html

  * igt@gem_mmap_offset@clear:
    - {shard-rkl}:        [FAIL][76] ([i915#3160]) -> [PASS][77]
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-rkl-1/igt@gem_mmap_offset@clear.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-rkl-5/igt@gem_mmap_offset@clear.html

  * igt@gem_softpin@noreloc-s3:
    - shard-apl:          [DMESG-WARN][78] ([i915#180]) -> [PASS][79]
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-apl1/igt@gem_softpin@noreloc-s3.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl7/igt@gem_softpin@noreloc-s3.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-skl:          [INCOMPLETE][80] ([i915#198] / [i915#2405]) -> [PASS][81]
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl3/igt@gem_workarounds@suspend-resume-fd.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@gem_workarounds@suspend-resume-fd.html

  * igt@i915_pm_backlight@fade_with_dpms:
    - shard-tglb:         [SKIP][82] ([i915#1311] / [i915#579]) -> [PASS][83]
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb8/igt@i915_pm_backlight@fade_with_dpms.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb7/igt@i915_pm_backlight@fade_with_dpms.html

  * igt@i915_pm_dc@dc5-dpms:
    - shard-skl:          [FAIL][84] ([i915#545]) -> [PASS][85]
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl10/igt@i915_pm_dc@dc5-dpms.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl2/igt@i915_pm_dc@dc5-dpms.html

  * igt@i915_pm_rpm@basic-pci-d3-state:
    - shard-skl:          [SKIP][86] ([fdo#109271]) -> [PASS][87] +20 similar issues
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl1/igt@i915_pm_rpm@basic-pci-d3-state.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl9/igt@i915_pm_rpm@basic-pci-d3-state.html

  * igt@i915_pm_rpm@basic-rte:
    - shard-skl:          [FAIL][88] ([i915#579]) -> [PASS][89]
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl6/igt@i915_pm_rpm@basic-rte.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl5/igt@i915_pm_rpm@basic-rte.html
    - shard-kbl:          [FAIL][90] ([i915#579]) -> [PASS][91]
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-kbl6/igt@i915_pm_rpm@basic-rte.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl2/igt@i915_pm_rpm@basic-rte.html
    - shard-apl:          [FAIL][92] ([i915#579]) -> [PASS][93]
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-apl6/igt@i915_pm_rpm@basic-rte.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl1/igt@i915_pm_rpm@basic-rte.html
    - shard-glk:          [FAIL][94] ([i915#579]) -> [PASS][95]
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk9/igt@i915_pm_rpm@basic-rte.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk1/igt@i915_pm_rpm@basic-rte.html
    - shard-iclb:         [FAIL][96] ([i915#579]) -> [PASS][97]
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb1/igt@i915_pm_rpm@basic-rte.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb1/igt@i915_pm_rpm@basic-rte.html
    - shard-tglb:         [FAIL][98] ([i915#579]) -> [PASS][99]
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb7/igt@i915_pm_rpm@basic-rte.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb2/igt@i915_pm_rpm@basic-rte.html

  * igt@i915_pm_rpm@gem-execbuf-stress:
    - shard-glk:          [SKIP][100] ([fdo#109271]) -> [PASS][101] +30 similar issues
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk5/igt@i915_pm_rpm@gem-execbuf-stress.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk5/igt@i915_pm_rpm@gem-execbuf-stress.html
    - {shard-rkl}:        [SKIP][102] ([i915#3844] / [i915#579]) -> [PASS][103] +1 similar issue
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-rkl-6/igt@i915_pm_rpm@gem-execbuf-stress.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-rkl-6/igt@i915_pm_rpm@gem-execbuf-stress.html

  * igt@i915_pm_rpm@gem-idle:
    - shard-iclb:         [SKIP][104] ([i915#579]) -> [PASS][105] +25 similar issues
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb2/igt@i915_pm_rpm@gem-idle.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb6/igt@i915_pm_rpm@gem-idle.html

  * igt@i915_pm_rpm@i2c:
    - shard-tglb:         [SKIP][106] ([i915#579]) -> [PASS][107] +24 similar issues
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb1/igt@i915_pm_rpm@i2c.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb8/igt@i915_pm_rpm@i2c.html

  * igt@i915_pm_rpm@system-suspend:
    - shard-kbl:          [SKIP][108] ([fdo#109271]) -> [PASS][109] +28 similar issues
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-kbl1/igt@i915_pm_rpm@system-suspend.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl6/igt@i915_pm_rpm@system-suspend.html

  * igt@kms_cursor_crc@pipe-a-cursor-suspend:
    - shard-kbl:          [DMESG-WARN][110] ([i915#180]) -> [PASS][111] +4 similar issues
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2:
    - shard-glk:          [FAIL][112] ([i915#79]) -> [PASS][113]
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
    - shard-skl:          [FAIL][114] ([i915#79]) -> [PASS][115]
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-skl:          [FAIL][116] ([i915#1188]) -> [PASS][117]
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl2/igt@kms_hdr@bpc-switch-suspend.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl8/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc:
    - shard-skl:          [FAIL][118] ([fdo#108145] / [i915#265]) -> [PASS][119] +1 similar issue
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl2/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl10/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html

  * igt@kms_psr@psr2_cursor_render:
    - shard-iclb:         [SKIP][120] ([fdo#109441]) -> [PASS][121] +1 similar issue
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb4/igt@kms_psr@psr2_cursor_render.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb2/igt@kms_psr@psr2_cursor_render.html

  * igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm:
    - shard-tglb:         [SKIP][122] ([i915#3841]) -> [PASS][123] +7 similar issues
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb8/igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb7/igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm.html
    - {shard-rkl}:        [SKIP][124] ([i915#3841]) -> [PASS][125]
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-rkl-6/igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-rkl-6/igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm.html

  * igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm:
    - shard-apl:          [SKIP][126] ([fdo#109271]) -> [PASS][127] +17 similar issues
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-apl6/igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl1/igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm.html
    - shard-iclb:         [SKIP][128] ([fdo#109278]) -> [PASS][129] +5 similar issues
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb6/igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb4/igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm.html

  * igt@perf_pmu@rc6-runtime-pm:
    - shard-tglb:         [SKIP][130] ([fdo#111719]) -> [PASS][131] +1 similar issue
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb7/igt@perf_pmu@rc6-runtime-pm.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb6/igt@perf_pmu@rc6-runtime-pm.html

  * igt@perf_pmu@rc6-runtime-pm-long:
    - {shard-rkl}:        [SKIP][132] ([i915#293]) -> [PASS][133] +1 similar issue
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-rkl-6/igt@perf_pmu@rc6-runtime-pm-long.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-rkl-6/igt@perf_pmu@rc6-runtime-pm-long.html
    - shard-iclb:         [SKIP][134] ([i915#293]) -> [PASS][135] +1 similar issue
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb3/igt@perf_pmu@rc6-runtime-pm-long.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb1/igt@perf_pmu@rc6-runtime-pm-long.html

  
#### Warnings ####

  * igt@i915_pm_dc@dc6-dpms:
    - shard-kbl:          [FAIL][136] ([i915#545]) -> [FAIL][137] ([i915#454])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-kbl1/igt@i915_pm_dc@dc6-dpms.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl4/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-iclb:         [WARN][138] ([i915#2684]) -> [WARN][139] ([i915#1804] / [i915#2684])
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb1/igt@i915_pm_rc6_residency@rc6-idle.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb7/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-tglb:         [SKIP][140] ([i915#579]) -> [SKIP][141] ([fdo#111644] / [i915#1397] / [i915#2411]) +3 similar issues
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb5/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb2/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@i915_pm_rpm@gem-execbuf-stress-pc8:
    - shard-iclb:         [SKIP][142] ([i915#579]) -> [SKIP][143] ([fdo#109293] / [fdo#109506]) +1 similar issue
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb5/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb7/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
    - shard-tglb:         [SKIP][144] ([i915#579]) -> [SKIP][145] ([fdo#109506] / [i915#2411]) +1 similar issue
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb8/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb7/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html

  * igt@i915_pm_rpm@modeset-non-lpsp:
    - shard-iclb:         [SKIP][146] ([i915#579]) -> [SKIP][147] ([fdo#110892]) +4 similar issues
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb1/igt@i915_pm_rpm@modeset-non-lpsp.html
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb3/igt@i915_pm_rpm@modeset-non-lpsp.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
    - shard-iclb:         [SKIP][148] ([i915#658]) -> [SKIP][149] ([i915#2920]) +1 similar issue
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2:
    - shard-iclb:         [SKIP][150] ([i915#2920]) -> [SKIP][151] ([i915#658])
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2.html
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2.html

  * igt@runner@aborted:
    - shard-kbl:          ([FAIL][152], [FAIL][153], [FAIL][154], [FAIL][155], [FAIL][156], [FAIL][

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/index.html

[-- Attachment #2: Type: text/html, Size: 33314 bytes --]

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

* Re: [Intel-gfx]  ✗ Fi.CI.IGT: failure for fbdev/efifb: Release PCI device's runtime PM ref during FB destroy (rev2)
  2021-08-09 17:23 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-08-09 17:57   ` Imre Deak
  2021-08-09 18:32     ` Vudum, Lakshminarayana
  0 siblings, 1 reply; 19+ messages in thread
From: Imre Deak @ 2021-08-09 17:57 UTC (permalink / raw)
  To: intel-gfx, Lakshminarayana Vudum

Hi,

On Mon, Aug 09, 2021 at 05:23:59PM +0000, Patchwork wrote:
> [...] 
>   * igt@i915_selftest@live@hangcheck:
>     - shard-snb:          [PASS][1] -> [INCOMPLETE][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-snb2/igt@i915_selftest@live@hangcheck.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-snb6/igt@i915_selftest@live@hangcheck.html

no EFI FB on this machine, so the patch should have no effect on it.

--Imre

> #### Suppressed ####
> 
>   The following results come from untrusted machines, tests, or statuses.
>   They do not affect the overall result.
> 
>   * {igt@i915_pm_rpm@gem-mmap-type@fixed}:
>     - shard-tglb:         NOTRUN -> [SKIP][3]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb5/igt@i915_pm_rpm@gem-mmap-type@fixed.html
>     - shard-iclb:         NOTRUN -> [SKIP][4]
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb5/igt@i915_pm_rpm@gem-mmap-type@fixed.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in Patchwork_20786_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_ctx_persistence@legacy-engines-mixed:
>     - shard-snb:          NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#1099]) +1 similar issue
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-snb5/igt@gem_ctx_persistence@legacy-engines-mixed.html
> 
>   * igt@gem_exec_fair@basic-deadline:
>     - shard-kbl:          NOTRUN -> [FAIL][6] ([i915#2846])
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl2/igt@gem_exec_fair@basic-deadline.html
>     - shard-glk:          [PASS][7] -> [FAIL][8] ([i915#2846])
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk3/igt@gem_exec_fair@basic-deadline.html
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk6/igt@gem_exec_fair@basic-deadline.html
> 
>   * igt@gem_exec_fair@basic-none@vcs0:
>     - shard-apl:          [PASS][9] -> [FAIL][10] ([i915#2842])
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-apl7/igt@gem_exec_fair@basic-none@vcs0.html
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl2/igt@gem_exec_fair@basic-none@vcs0.html
> 
>   * igt@gem_exec_fair@basic-pace-share@rcs0:
>     - shard-glk:          [PASS][11] -> [FAIL][12] ([i915#2842])
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html
> 
>   * igt@gem_exec_fair@basic-throttle@rcs0:
>     - shard-iclb:         [PASS][13] -> [FAIL][14] ([i915#2849])
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb4/igt@gem_exec_fair@basic-throttle@rcs0.html
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html
> 
>   * igt@gem_pwrite@basic-exhaustion:
>     - shard-snb:          NOTRUN -> [WARN][15] ([i915#2658])
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-snb6/igt@gem_pwrite@basic-exhaustion.html
>     - shard-apl:          NOTRUN -> [WARN][16] ([i915#2658])
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl1/igt@gem_pwrite@basic-exhaustion.html
> 
>   * igt@gem_softpin@noreloc-s3:
>     - shard-kbl:          [PASS][17] -> [DMESG-WARN][18] ([i915#180]) +1 similar issue
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-kbl4/igt@gem_softpin@noreloc-s3.html
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl6/igt@gem_softpin@noreloc-s3.html
> 
>   * igt@gen7_exec_parse@basic-offset:
>     - shard-apl:          NOTRUN -> [SKIP][19] ([fdo#109271]) +167 similar issues
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl1/igt@gen7_exec_parse@basic-offset.html
> 
>   * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:
>     - shard-kbl:          NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#3777]) +1 similar issue
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
> 
>   * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
>     - shard-apl:          NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#3777]) +1 similar issue
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
> 
>   * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
>     - shard-apl:          NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#3886]) +6 similar issues
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl7/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
> 
>   * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
>     - shard-kbl:          NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#3886]) +5 similar issues
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl7/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html
> 
>   * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
>     - shard-skl:          NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#3886]) +3 similar issues
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html
> 
>   * igt@kms_color@pipe-d-ctm-negative:
>     - shard-skl:          NOTRUN -> [SKIP][25] ([fdo#109271]) +50 similar issues
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@kms_color@pipe-d-ctm-negative.html
> 
>   * igt@kms_color_chamelium@pipe-a-ctm-negative:
>     - shard-snb:          NOTRUN -> [SKIP][26] ([fdo#109271] / [fdo#111827]) +7 similar issues
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-snb6/igt@kms_color_chamelium@pipe-a-ctm-negative.html
> 
>   * igt@kms_color_chamelium@pipe-a-degamma:
>     - shard-kbl:          NOTRUN -> [SKIP][27] ([fdo#109271] / [fdo#111827]) +10 similar issues
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl2/igt@kms_color_chamelium@pipe-a-degamma.html
> 
>   * igt@kms_color_chamelium@pipe-b-ctm-limited-range:
>     - shard-skl:          NOTRUN -> [SKIP][28] ([fdo#109271] / [fdo#111827]) +1 similar issue
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@kms_color_chamelium@pipe-b-ctm-limited-range.html
> 
>   * igt@kms_color_chamelium@pipe-c-ctm-0-25:
>     - shard-apl:          NOTRUN -> [SKIP][29] ([fdo#109271] / [fdo#111827]) +13 similar issues
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl3/igt@kms_color_chamelium@pipe-c-ctm-0-25.html
> 
>   * igt@kms_content_protection@srm:
>     - shard-apl:          NOTRUN -> [TIMEOUT][30] ([i915#1319])
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl1/igt@kms_content_protection@srm.html
> 
>   * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
>     - shard-skl:          [PASS][31] -> [FAIL][32] ([i915#2346])
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
> 
>   * igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-xtiled:
>     - shard-glk:          [PASS][33] -> [FAIL][34] ([i915#1888] / [i915#3451])
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk1/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-xtiled.html
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk6/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-xtiled.html
> 
>   * igt@kms_dsc@basic-dsc-enable@edp-1-pipe-c:
>     - shard-iclb:         NOTRUN -> [DMESG-WARN][35] ([i915#1226]) +2 similar issues
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb2/igt@kms_dsc@basic-dsc-enable@edp-1-pipe-c.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
>     - shard-skl:          [PASS][36] -> [FAIL][37] ([i915#2122])
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
>     - shard-kbl:          NOTRUN -> [SKIP][38] ([fdo#109271]) +97 similar issues
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
>     - shard-snb:          NOTRUN -> [SKIP][39] ([fdo#109271]) +143 similar issues
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-snb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html
> 
>   * igt@kms_pipe_crc_basic@hang-read-crc-pipe-d:
>     - shard-skl:          NOTRUN -> [SKIP][40] ([fdo#109271] / [i915#533])
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@kms_pipe_crc_basic@hang-read-crc-pipe-d.html
> 
>   * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence:
>     - shard-kbl:          NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#533])
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl2/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence.html
> 
>   * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
>     - shard-apl:          NOTRUN -> [FAIL][42] ([i915#265])
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl3/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html
> 
>   * igt@kms_plane_alpha_blend@pipe-b-alpha-basic:
>     - shard-kbl:          NOTRUN -> [FAIL][43] ([fdo#108145] / [i915#265]) +1 similar issue
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl2/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html
> 
>   * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
>     - shard-skl:          NOTRUN -> [FAIL][44] ([fdo#108145] / [i915#265])
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html
> 
>   * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
>     - shard-apl:          NOTRUN -> [SKIP][45] ([fdo#109271] / [i915#658]) +3 similar issues
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html
> 
>   * igt@kms_psr2_sf@plane-move-sf-dmg-area-2:
>     - shard-skl:          NOTRUN -> [SKIP][46] ([fdo#109271] / [i915#658]) +2 similar issues
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html
> 
>   * igt@kms_psr@psr2_no_drrs:
>     - shard-iclb:         [PASS][47] -> [SKIP][48] ([fdo#109441])
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb2/igt@kms_psr@psr2_no_drrs.html
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb6/igt@kms_psr@psr2_no_drrs.html
> 
>   * igt@kms_writeback@writeback-invalid-parameters:
>     - shard-apl:          NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#2437])
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl1/igt@kms_writeback@writeback-invalid-parameters.html
> 
>   * igt@perf@polling-small-buf:
>     - shard-skl:          [PASS][50] -> [FAIL][51] ([i915#1722])
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl2/igt@perf@polling-small-buf.html
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl8/igt@perf@polling-small-buf.html
> 
>   * igt@perf_pmu@module-unload:
>     - shard-skl:          NOTRUN -> [DMESG-WARN][52] ([i915#1982] / [i915#262])
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@perf_pmu@module-unload.html
> 
>   * igt@sysfs_clients@fair-1:
>     - shard-kbl:          NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#2994])
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl2/igt@sysfs_clients@fair-1.html
> 
>   * igt@sysfs_clients@pidname:
>     - shard-skl:          NOTRUN -> [SKIP][54] ([fdo#109271] / [i915#2994])
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@sysfs_clients@pidname.html
> 
>   * igt@sysfs_clients@sema-10:
>     - shard-apl:          NOTRUN -> [SKIP][55] ([fdo#109271] / [i915#2994])
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl3/igt@sysfs_clients@sema-10.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@feature_discovery@psr2:
>     - shard-iclb:         [SKIP][56] ([i915#658]) -> [PASS][57]
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb4/igt@feature_discovery@psr2.html
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb2/igt@feature_discovery@psr2.html
> 
>   * igt@gem_ctx_persistence@many-contexts:
>     - {shard-rkl}:        [FAIL][58] ([i915#2410]) -> [PASS][59]
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-rkl-1/igt@gem_ctx_persistence@many-contexts.html
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-rkl-2/igt@gem_ctx_persistence@many-contexts.html
> 
>   * igt@gem_eio@unwedge-stress:
>     - shard-tglb:         [TIMEOUT][60] ([i915#2369] / [i915#3063] / [i915#3648]) -> [PASS][61]
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb7/igt@gem_eio@unwedge-stress.html
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb2/igt@gem_eio@unwedge-stress.html
> 
>   * igt@gem_exec_fair@basic-none@rcs0:
>     - shard-glk:          [FAIL][62] ([i915#2842]) -> [PASS][63]
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk6/igt@gem_exec_fair@basic-none@rcs0.html
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk9/igt@gem_exec_fair@basic-none@rcs0.html
> 
>   * igt@gem_exec_fair@basic-none@vcs0:
>     - shard-kbl:          [FAIL][64] ([i915#2842]) -> [PASS][65] +3 similar issues
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-kbl2/igt@gem_exec_fair@basic-none@vcs0.html
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl4/igt@gem_exec_fair@basic-none@vcs0.html
> 
>   * igt@gem_exec_fair@basic-none@vecs0:
>     - shard-apl:          [FAIL][66] ([i915#2842] / [i915#3468]) -> [PASS][67]
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-apl7/igt@gem_exec_fair@basic-none@vecs0.html
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl2/igt@gem_exec_fair@basic-none@vecs0.html
> 
>   * igt@gem_exec_fair@basic-pace@bcs0:
>     - shard-tglb:         [FAIL][68] ([i915#2842]) -> [PASS][69] +1 similar issue
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb6/igt@gem_exec_fair@basic-pace@bcs0.html
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb1/igt@gem_exec_fair@basic-pace@bcs0.html
> 
>   * igt@gem_exec_fair@basic-throttle@rcs0:
>     - {shard-rkl}:        [FAIL][70] ([i915#2842]) -> [PASS][71] +2 similar issues
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-rkl-5/igt@gem_exec_fair@basic-throttle@rcs0.html
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-rkl-2/igt@gem_exec_fair@basic-throttle@rcs0.html
> 
>   * igt@gem_exec_whisper@basic-contexts-all:
>     - shard-glk:          [DMESG-WARN][72] ([i915#118] / [i915#95]) -> [PASS][73] +1 similar issue
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk1/igt@gem_exec_whisper@basic-contexts-all.html
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk6/igt@gem_exec_whisper@basic-contexts-all.html
> 
>   * igt@gem_mmap_gtt@cpuset-big-copy:
>     - shard-iclb:         [FAIL][74] ([i915#2428]) -> [PASS][75]
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb8/igt@gem_mmap_gtt@cpuset-big-copy.html
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb3/igt@gem_mmap_gtt@cpuset-big-copy.html
> 
>   * igt@gem_mmap_offset@clear:
>     - {shard-rkl}:        [FAIL][76] ([i915#3160]) -> [PASS][77]
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-rkl-1/igt@gem_mmap_offset@clear.html
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-rkl-5/igt@gem_mmap_offset@clear.html
> 
>   * igt@gem_softpin@noreloc-s3:
>     - shard-apl:          [DMESG-WARN][78] ([i915#180]) -> [PASS][79]
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-apl1/igt@gem_softpin@noreloc-s3.html
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl7/igt@gem_softpin@noreloc-s3.html
> 
>   * igt@gem_workarounds@suspend-resume-fd:
>     - shard-skl:          [INCOMPLETE][80] ([i915#198] / [i915#2405]) -> [PASS][81]
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl3/igt@gem_workarounds@suspend-resume-fd.html
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@gem_workarounds@suspend-resume-fd.html
> 
>   * igt@i915_pm_backlight@fade_with_dpms:
>     - shard-tglb:         [SKIP][82] ([i915#1311] / [i915#579]) -> [PASS][83]
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb8/igt@i915_pm_backlight@fade_with_dpms.html
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb7/igt@i915_pm_backlight@fade_with_dpms.html
> 
>   * igt@i915_pm_dc@dc5-dpms:
>     - shard-skl:          [FAIL][84] ([i915#545]) -> [PASS][85]
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl10/igt@i915_pm_dc@dc5-dpms.html
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl2/igt@i915_pm_dc@dc5-dpms.html
> 
>   * igt@i915_pm_rpm@basic-pci-d3-state:
>     - shard-skl:          [SKIP][86] ([fdo#109271]) -> [PASS][87] +20 similar issues
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl1/igt@i915_pm_rpm@basic-pci-d3-state.html
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl9/igt@i915_pm_rpm@basic-pci-d3-state.html
> 
>   * igt@i915_pm_rpm@basic-rte:
>     - shard-skl:          [FAIL][88] ([i915#579]) -> [PASS][89]
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl6/igt@i915_pm_rpm@basic-rte.html
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl5/igt@i915_pm_rpm@basic-rte.html
>     - shard-kbl:          [FAIL][90] ([i915#579]) -> [PASS][91]
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-kbl6/igt@i915_pm_rpm@basic-rte.html
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl2/igt@i915_pm_rpm@basic-rte.html
>     - shard-apl:          [FAIL][92] ([i915#579]) -> [PASS][93]
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-apl6/igt@i915_pm_rpm@basic-rte.html
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl1/igt@i915_pm_rpm@basic-rte.html
>     - shard-glk:          [FAIL][94] ([i915#579]) -> [PASS][95]
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk9/igt@i915_pm_rpm@basic-rte.html
>    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk1/igt@i915_pm_rpm@basic-rte.html
>     - shard-iclb:         [FAIL][96] ([i915#579]) -> [PASS][97]
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb1/igt@i915_pm_rpm@basic-rte.html
>    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb1/igt@i915_pm_rpm@basic-rte.html
>     - shard-tglb:         [FAIL][98] ([i915#579]) -> [PASS][99]
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb7/igt@i915_pm_rpm@basic-rte.html
>    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb2/igt@i915_pm_rpm@basic-rte.html
> 
>   * igt@i915_pm_rpm@gem-execbuf-stress:
>     - shard-glk:          [SKIP][100] ([fdo#109271]) -> [PASS][101] +30 similar issues
>    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk5/igt@i915_pm_rpm@gem-execbuf-stress.html
>    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk5/igt@i915_pm_rpm@gem-execbuf-stress.html
>     - {shard-rkl}:        [SKIP][102] ([i915#3844] / [i915#579]) -> [PASS][103] +1 similar issue
>    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-rkl-6/igt@i915_pm_rpm@gem-execbuf-stress.html
>    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-rkl-6/igt@i915_pm_rpm@gem-execbuf-stress.html
> 
>   * igt@i915_pm_rpm@gem-idle:
>     - shard-iclb:         [SKIP][104] ([i915#579]) -> [PASS][105] +25 similar issues
>    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb2/igt@i915_pm_rpm@gem-idle.html
>    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb6/igt@i915_pm_rpm@gem-idle.html
> 
>   * igt@i915_pm_rpm@i2c:
>     - shard-tglb:         [SKIP][106] ([i915#579]) -> [PASS][107] +24 similar issues
>    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb1/igt@i915_pm_rpm@i2c.html
>    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb8/igt@i915_pm_rpm@i2c.html
> 
>   * igt@i915_pm_rpm@system-suspend:
>     - shard-kbl:          [SKIP][108] ([fdo#109271]) -> [PASS][109] +28 similar issues
>    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-kbl1/igt@i915_pm_rpm@system-suspend.html
>    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl6/igt@i915_pm_rpm@system-suspend.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-suspend:
>     - shard-kbl:          [DMESG-WARN][110] ([i915#180]) -> [PASS][111] +4 similar issues
>    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
>    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
> 
>   * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2:
>     - shard-glk:          [FAIL][112] ([i915#79]) -> [PASS][113]
>    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html
>    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
>     - shard-skl:          [FAIL][114] ([i915#79]) -> [PASS][115]
>    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
>    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
> 
>   * igt@kms_hdr@bpc-switch-suspend:
>     - shard-skl:          [FAIL][116] ([i915#1188]) -> [PASS][117]
>    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl2/igt@kms_hdr@bpc-switch-suspend.html
>    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl8/igt@kms_hdr@bpc-switch-suspend.html
> 
>   * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc:
>     - shard-skl:          [FAIL][118] ([fdo#108145] / [i915#265]) -> [PASS][119] +1 similar issue
>    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl2/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
>    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl10/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
> 
>   * igt@kms_psr@psr2_cursor_render:
>     - shard-iclb:         [SKIP][120] ([fdo#109441]) -> [PASS][121] +1 similar issue
>    [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb4/igt@kms_psr@psr2_cursor_render.html
>    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb2/igt@kms_psr@psr2_cursor_render.html
> 
>   * igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm:
>     - shard-tglb:         [SKIP][122] ([i915#3841]) -> [PASS][123] +7 similar issues
>    [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb8/igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm.html
>    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb7/igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm.html
>     - {shard-rkl}:        [SKIP][124] ([i915#3841]) -> [PASS][125]
>    [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-rkl-6/igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm.html
>    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-rkl-6/igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm.html
> 
>   * igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm:
>     - shard-apl:          [SKIP][126] ([fdo#109271]) -> [PASS][127] +17 similar issues
>    [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-apl6/igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm.html
>    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl1/igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm.html
>     - shard-iclb:         [SKIP][128] ([fdo#109278]) -> [PASS][129] +5 similar issues
>    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb6/igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm.html
>    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb4/igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm.html
> 
>   * igt@perf_pmu@rc6-runtime-pm:
>     - shard-tglb:         [SKIP][130] ([fdo#111719]) -> [PASS][131] +1 similar issue
>    [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb7/igt@perf_pmu@rc6-runtime-pm.html
>    [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb6/igt@perf_pmu@rc6-runtime-pm.html
> 
>   * igt@perf_pmu@rc6-runtime-pm-long:
>     - {shard-rkl}:        [SKIP][132] ([i915#293]) -> [PASS][133] +1 similar issue
>    [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-rkl-6/igt@perf_pmu@rc6-runtime-pm-long.html
>    [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-rkl-6/igt@perf_pmu@rc6-runtime-pm-long.html
>     - shard-iclb:         [SKIP][134] ([i915#293]) -> [PASS][135] +1 similar issue
>    [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb3/igt@perf_pmu@rc6-runtime-pm-long.html
>    [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb1/igt@perf_pmu@rc6-runtime-pm-long.html
> 
>   
> #### Warnings ####
> 
>   * igt@i915_pm_dc@dc6-dpms:
>     - shard-kbl:          [FAIL][136] ([i915#545]) -> [FAIL][137] ([i915#454])
>    [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-kbl1/igt@i915_pm_dc@dc6-dpms.html
>    [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl4/igt@i915_pm_dc@dc6-dpms.html
> 
>   * igt@i915_pm_rc6_residency@rc6-idle:
>     - shard-iclb:         [WARN][138] ([i915#2684]) -> [WARN][139] ([i915#1804] / [i915#2684])
>    [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb1/igt@i915_pm_rc6_residency@rc6-idle.html
>    [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb7/igt@i915_pm_rc6_residency@rc6-idle.html
> 
>   * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
>     - shard-tglb:         [SKIP][140] ([i915#579]) -> [SKIP][141] ([fdo#111644] / [i915#1397] / [i915#2411]) +3 similar issues
>    [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb5/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
>    [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb2/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
> 
>   * igt@i915_pm_rpm@gem-execbuf-stress-pc8:
>     - shard-iclb:         [SKIP][142] ([i915#579]) -> [SKIP][143] ([fdo#109293] / [fdo#109506]) +1 similar issue
>    [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb5/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
>    [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb7/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
>     - shard-tglb:         [SKIP][144] ([i915#579]) -> [SKIP][145] ([fdo#109506] / [i915#2411]) +1 similar issue
>    [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb8/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
>    [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb7/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
> 
>   * igt@i915_pm_rpm@modeset-non-lpsp:
>     - shard-iclb:         [SKIP][146] ([i915#579]) -> [SKIP][147] ([fdo#110892]) +4 similar issues
>    [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb1/igt@i915_pm_rpm@modeset-non-lpsp.html
>    [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb3/igt@i915_pm_rpm@modeset-non-lpsp.html
> 
>   * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
>     - shard-iclb:         [SKIP][148] ([i915#658]) -> [SKIP][149] ([i915#2920]) +1 similar issue
>    [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
>    [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
> 
>   * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2:
>     - shard-iclb:         [SKIP][150] ([i915#2920]) -> [SKIP][151] ([i915#658])
>    [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2.html
>    [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2.html
> 
>   * igt@runner@aborted:
>     - shard-kbl:          ([FAIL][152], [FAIL][153], [FAIL][154], [FAIL][155], [FAIL][156], [FAIL][
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/index.html

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

* [Intel-gfx] ✓ Fi.CI.IGT: success for fbdev/efifb: Release PCI device's runtime PM ref during FB destroy (rev2)
  2021-08-02 13:35 [Intel-gfx] [PATCH] fbdev/efifb: Release PCI device's runtime PM ref during FB destroy Imre Deak
                   ` (6 preceding siblings ...)
  2021-08-09 17:23 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
@ 2021-08-09 18:21 ` Patchwork
  7 siblings, 0 replies; 19+ messages in thread
From: Patchwork @ 2021-08-09 18:21 UTC (permalink / raw)
  To: Imre Deak; +Cc: intel-gfx

[-- Attachment #1: Type: text/plain, Size: 30296 bytes --]

== Series Details ==

Series: fbdev/efifb: Release PCI device's runtime PM ref during FB destroy (rev2)
URL   : https://patchwork.freedesktop.org/series/93307/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_10460_full -> Patchwork_20786_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

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

### IGT changes ###

#### Suppressed ####

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

  * {igt@i915_pm_rpm@gem-mmap-type@fixed}:
    - shard-tglb:         NOTRUN -> [SKIP][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb5/igt@i915_pm_rpm@gem-mmap-type@fixed.html
    - shard-iclb:         NOTRUN -> [SKIP][2]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb5/igt@i915_pm_rpm@gem-mmap-type@fixed.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_persistence@legacy-engines-mixed:
    - shard-snb:          NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#1099]) +1 similar issue
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-snb5/igt@gem_ctx_persistence@legacy-engines-mixed.html

  * igt@gem_exec_fair@basic-deadline:
    - shard-kbl:          NOTRUN -> [FAIL][4] ([i915#2846])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl2/igt@gem_exec_fair@basic-deadline.html
    - shard-glk:          [PASS][5] -> [FAIL][6] ([i915#2846])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk3/igt@gem_exec_fair@basic-deadline.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk6/igt@gem_exec_fair@basic-deadline.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-apl:          [PASS][7] -> [FAIL][8] ([i915#2842])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-apl7/igt@gem_exec_fair@basic-none@vcs0.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl2/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_fair@basic-pace-share@rcs0:
    - shard-glk:          [PASS][9] -> [FAIL][10] ([i915#2842])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - shard-iclb:         [PASS][11] -> [FAIL][12] ([i915#2849])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb4/igt@gem_exec_fair@basic-throttle@rcs0.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_pwrite@basic-exhaustion:
    - shard-snb:          NOTRUN -> [WARN][13] ([i915#2658])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-snb6/igt@gem_pwrite@basic-exhaustion.html
    - shard-apl:          NOTRUN -> [WARN][14] ([i915#2658])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl1/igt@gem_pwrite@basic-exhaustion.html

  * igt@gem_softpin@noreloc-s3:
    - shard-kbl:          [PASS][15] -> [DMESG-WARN][16] ([i915#180]) +1 similar issue
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-kbl4/igt@gem_softpin@noreloc-s3.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl6/igt@gem_softpin@noreloc-s3.html

  * igt@gen7_exec_parse@basic-offset:
    - shard-apl:          NOTRUN -> [SKIP][17] ([fdo#109271]) +167 similar issues
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl1/igt@gen7_exec_parse@basic-offset.html

  * igt@i915_selftest@live@hangcheck:
    - shard-snb:          [PASS][18] -> [INCOMPLETE][19] ([i915#3921])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-snb2/igt@i915_selftest@live@hangcheck.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-snb6/igt@i915_selftest@live@hangcheck.html

  * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-kbl:          NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#3777]) +1 similar issue
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-apl:          NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#3777]) +1 similar issue
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#3886]) +6 similar issues
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl7/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
    - shard-kbl:          NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#3886]) +5 similar issues
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl7/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
    - shard-skl:          NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#3886]) +3 similar issues
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_color@pipe-d-ctm-negative:
    - shard-skl:          NOTRUN -> [SKIP][25] ([fdo#109271]) +50 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@kms_color@pipe-d-ctm-negative.html

  * igt@kms_color_chamelium@pipe-a-ctm-negative:
    - shard-snb:          NOTRUN -> [SKIP][26] ([fdo#109271] / [fdo#111827]) +7 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-snb6/igt@kms_color_chamelium@pipe-a-ctm-negative.html

  * igt@kms_color_chamelium@pipe-a-degamma:
    - shard-kbl:          NOTRUN -> [SKIP][27] ([fdo#109271] / [fdo#111827]) +10 similar issues
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl2/igt@kms_color_chamelium@pipe-a-degamma.html

  * igt@kms_color_chamelium@pipe-b-ctm-limited-range:
    - shard-skl:          NOTRUN -> [SKIP][28] ([fdo#109271] / [fdo#111827]) +1 similar issue
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@kms_color_chamelium@pipe-b-ctm-limited-range.html

  * igt@kms_color_chamelium@pipe-c-ctm-0-25:
    - shard-apl:          NOTRUN -> [SKIP][29] ([fdo#109271] / [fdo#111827]) +13 similar issues
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl3/igt@kms_color_chamelium@pipe-c-ctm-0-25.html

  * igt@kms_content_protection@srm:
    - shard-apl:          NOTRUN -> [TIMEOUT][30] ([i915#1319])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl1/igt@kms_content_protection@srm.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
    - shard-skl:          [PASS][31] -> [FAIL][32] ([i915#2346])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html

  * igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-xtiled:
    - shard-glk:          [PASS][33] -> [FAIL][34] ([i915#1888] / [i915#3451])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk1/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-xtiled.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk6/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-xtiled.html

  * igt@kms_dsc@basic-dsc-enable@edp-1-pipe-c:
    - shard-iclb:         NOTRUN -> [DMESG-WARN][35] ([i915#1226]) +2 similar issues
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb2/igt@kms_dsc@basic-dsc-enable@edp-1-pipe-c.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
    - shard-skl:          [PASS][36] -> [FAIL][37] ([i915#2122])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
    - shard-kbl:          NOTRUN -> [SKIP][38] ([fdo#109271]) +97 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
    - shard-snb:          NOTRUN -> [SKIP][39] ([fdo#109271]) +143 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-snb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_pipe_crc_basic@hang-read-crc-pipe-d:
    - shard-skl:          NOTRUN -> [SKIP][40] ([fdo#109271] / [i915#533])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@kms_pipe_crc_basic@hang-read-crc-pipe-d.html

  * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence:
    - shard-kbl:          NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#533])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl2/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence.html

  * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
    - shard-apl:          NOTRUN -> [FAIL][42] ([i915#265])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl3/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-basic:
    - shard-kbl:          NOTRUN -> [FAIL][43] ([fdo#108145] / [i915#265]) +1 similar issue
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl2/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html

  * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
    - shard-skl:          NOTRUN -> [FAIL][44] ([fdo#108145] / [i915#265])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html

  * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
    - shard-apl:          NOTRUN -> [SKIP][45] ([fdo#109271] / [i915#658]) +3 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-2:
    - shard-skl:          NOTRUN -> [SKIP][46] ([fdo#109271] / [i915#658]) +2 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html

  * igt@kms_psr@psr2_no_drrs:
    - shard-iclb:         [PASS][47] -> [SKIP][48] ([fdo#109441])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb2/igt@kms_psr@psr2_no_drrs.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb6/igt@kms_psr@psr2_no_drrs.html

  * igt@kms_writeback@writeback-invalid-parameters:
    - shard-apl:          NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#2437])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl1/igt@kms_writeback@writeback-invalid-parameters.html

  * igt@perf@polling-small-buf:
    - shard-skl:          [PASS][50] -> [FAIL][51] ([i915#1722])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl2/igt@perf@polling-small-buf.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl8/igt@perf@polling-small-buf.html

  * igt@perf_pmu@module-unload:
    - shard-skl:          NOTRUN -> [DMESG-WARN][52] ([i915#1982] / [i915#262])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@perf_pmu@module-unload.html

  * igt@sysfs_clients@fair-1:
    - shard-kbl:          NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#2994])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl2/igt@sysfs_clients@fair-1.html

  * igt@sysfs_clients@pidname:
    - shard-skl:          NOTRUN -> [SKIP][54] ([fdo#109271] / [i915#2994])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@sysfs_clients@pidname.html

  * igt@sysfs_clients@sema-10:
    - shard-apl:          NOTRUN -> [SKIP][55] ([fdo#109271] / [i915#2994])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl3/igt@sysfs_clients@sema-10.html

  
#### Possible fixes ####

  * igt@feature_discovery@psr2:
    - shard-iclb:         [SKIP][56] ([i915#658]) -> [PASS][57]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb4/igt@feature_discovery@psr2.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb2/igt@feature_discovery@psr2.html

  * igt@gem_ctx_persistence@many-contexts:
    - {shard-rkl}:        [FAIL][58] ([i915#2410]) -> [PASS][59]
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-rkl-1/igt@gem_ctx_persistence@many-contexts.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-rkl-2/igt@gem_ctx_persistence@many-contexts.html

  * igt@gem_eio@unwedge-stress:
    - shard-tglb:         [TIMEOUT][60] ([i915#2369] / [i915#3063] / [i915#3648]) -> [PASS][61]
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb7/igt@gem_eio@unwedge-stress.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb2/igt@gem_eio@unwedge-stress.html

  * igt@gem_exec_fair@basic-none@rcs0:
    - shard-glk:          [FAIL][62] ([i915#2842]) -> [PASS][63]
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk6/igt@gem_exec_fair@basic-none@rcs0.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk9/igt@gem_exec_fair@basic-none@rcs0.html

  * igt@gem_exec_fair@basic-none@vcs0:
    - shard-kbl:          [FAIL][64] ([i915#2842]) -> [PASS][65] +3 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-kbl2/igt@gem_exec_fair@basic-none@vcs0.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl4/igt@gem_exec_fair@basic-none@vcs0.html

  * igt@gem_exec_fair@basic-none@vecs0:
    - shard-apl:          [FAIL][66] ([i915#2842] / [i915#3468]) -> [PASS][67]
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-apl7/igt@gem_exec_fair@basic-none@vecs0.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl2/igt@gem_exec_fair@basic-none@vecs0.html

  * igt@gem_exec_fair@basic-pace@bcs0:
    - shard-tglb:         [FAIL][68] ([i915#2842]) -> [PASS][69] +1 similar issue
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb6/igt@gem_exec_fair@basic-pace@bcs0.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb1/igt@gem_exec_fair@basic-pace@bcs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - {shard-rkl}:        [FAIL][70] ([i915#2842]) -> [PASS][71] +2 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-rkl-5/igt@gem_exec_fair@basic-throttle@rcs0.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-rkl-2/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_whisper@basic-contexts-all:
    - shard-glk:          [DMESG-WARN][72] ([i915#118] / [i915#95]) -> [PASS][73] +1 similar issue
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk1/igt@gem_exec_whisper@basic-contexts-all.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk6/igt@gem_exec_whisper@basic-contexts-all.html

  * igt@gem_mmap_gtt@cpuset-big-copy:
    - shard-iclb:         [FAIL][74] ([i915#2428]) -> [PASS][75]
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb8/igt@gem_mmap_gtt@cpuset-big-copy.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb3/igt@gem_mmap_gtt@cpuset-big-copy.html

  * igt@gem_mmap_offset@clear:
    - {shard-rkl}:        [FAIL][76] ([i915#3160]) -> [PASS][77]
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-rkl-1/igt@gem_mmap_offset@clear.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-rkl-5/igt@gem_mmap_offset@clear.html

  * igt@gem_softpin@noreloc-s3:
    - shard-apl:          [DMESG-WARN][78] ([i915#180]) -> [PASS][79]
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-apl1/igt@gem_softpin@noreloc-s3.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl7/igt@gem_softpin@noreloc-s3.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-skl:          [INCOMPLETE][80] ([i915#198] / [i915#2405]) -> [PASS][81]
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl3/igt@gem_workarounds@suspend-resume-fd.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@gem_workarounds@suspend-resume-fd.html

  * igt@i915_pm_backlight@fade_with_dpms:
    - shard-tglb:         [SKIP][82] ([i915#1311] / [i915#579]) -> [PASS][83]
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb8/igt@i915_pm_backlight@fade_with_dpms.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb7/igt@i915_pm_backlight@fade_with_dpms.html

  * igt@i915_pm_dc@dc5-dpms:
    - shard-skl:          [FAIL][84] ([i915#545]) -> [PASS][85]
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl10/igt@i915_pm_dc@dc5-dpms.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl2/igt@i915_pm_dc@dc5-dpms.html

  * igt@i915_pm_rpm@basic-pci-d3-state:
    - shard-skl:          [SKIP][86] ([fdo#109271]) -> [PASS][87] +20 similar issues
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl1/igt@i915_pm_rpm@basic-pci-d3-state.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl9/igt@i915_pm_rpm@basic-pci-d3-state.html

  * igt@i915_pm_rpm@basic-rte:
    - shard-skl:          [FAIL][88] ([i915#579]) -> [PASS][89]
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl6/igt@i915_pm_rpm@basic-rte.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl5/igt@i915_pm_rpm@basic-rte.html
    - shard-kbl:          [FAIL][90] ([i915#579]) -> [PASS][91]
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-kbl6/igt@i915_pm_rpm@basic-rte.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl2/igt@i915_pm_rpm@basic-rte.html
    - shard-apl:          [FAIL][92] ([i915#579]) -> [PASS][93]
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-apl6/igt@i915_pm_rpm@basic-rte.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl1/igt@i915_pm_rpm@basic-rte.html
    - shard-glk:          [FAIL][94] ([i915#579]) -> [PASS][95]
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk9/igt@i915_pm_rpm@basic-rte.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk1/igt@i915_pm_rpm@basic-rte.html
    - shard-iclb:         [FAIL][96] ([i915#579]) -> [PASS][97]
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb1/igt@i915_pm_rpm@basic-rte.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb1/igt@i915_pm_rpm@basic-rte.html
    - shard-tglb:         [FAIL][98] ([i915#579]) -> [PASS][99]
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb7/igt@i915_pm_rpm@basic-rte.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb2/igt@i915_pm_rpm@basic-rte.html

  * igt@i915_pm_rpm@gem-execbuf-stress:
    - shard-glk:          [SKIP][100] ([fdo#109271]) -> [PASS][101] +30 similar issues
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk5/igt@i915_pm_rpm@gem-execbuf-stress.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk5/igt@i915_pm_rpm@gem-execbuf-stress.html
    - {shard-rkl}:        [SKIP][102] ([i915#3844] / [i915#579]) -> [PASS][103] +1 similar issue
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-rkl-6/igt@i915_pm_rpm@gem-execbuf-stress.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-rkl-6/igt@i915_pm_rpm@gem-execbuf-stress.html

  * igt@i915_pm_rpm@gem-idle:
    - shard-iclb:         [SKIP][104] ([i915#579]) -> [PASS][105] +25 similar issues
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb2/igt@i915_pm_rpm@gem-idle.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb6/igt@i915_pm_rpm@gem-idle.html

  * igt@i915_pm_rpm@i2c:
    - shard-tglb:         [SKIP][106] ([i915#579]) -> [PASS][107] +24 similar issues
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb1/igt@i915_pm_rpm@i2c.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb8/igt@i915_pm_rpm@i2c.html

  * igt@i915_pm_rpm@system-suspend:
    - shard-kbl:          [SKIP][108] ([fdo#109271]) -> [PASS][109] +28 similar issues
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-kbl1/igt@i915_pm_rpm@system-suspend.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl6/igt@i915_pm_rpm@system-suspend.html

  * igt@kms_cursor_crc@pipe-a-cursor-suspend:
    - shard-kbl:          [DMESG-WARN][110] ([i915#180]) -> [PASS][111] +4 similar issues
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2:
    - shard-glk:          [FAIL][112] ([i915#79]) -> [PASS][113]
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
    - shard-skl:          [FAIL][114] ([i915#79]) -> [PASS][115]
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html

  * igt@kms_hdr@bpc-switch-suspend:
    - shard-skl:          [FAIL][116] ([i915#1188]) -> [PASS][117]
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl2/igt@kms_hdr@bpc-switch-suspend.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl8/igt@kms_hdr@bpc-switch-suspend.html

  * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc:
    - shard-skl:          [FAIL][118] ([fdo#108145] / [i915#265]) -> [PASS][119] +1 similar issue
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl2/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl10/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html

  * igt@kms_psr@psr2_cursor_render:
    - shard-iclb:         [SKIP][120] ([fdo#109441]) -> [PASS][121] +1 similar issue
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb4/igt@kms_psr@psr2_cursor_render.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb2/igt@kms_psr@psr2_cursor_render.html

  * igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm:
    - shard-tglb:         [SKIP][122] ([i915#3841]) -> [PASS][123] +7 similar issues
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb8/igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb7/igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm.html
    - {shard-rkl}:        [SKIP][124] ([i915#3841]) -> [PASS][125]
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-rkl-6/igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-rkl-6/igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm.html

  * igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm:
    - shard-apl:          [SKIP][126] ([fdo#109271]) -> [PASS][127] +17 similar issues
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-apl6/igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl1/igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm.html
    - shard-iclb:         [SKIP][128] ([fdo#109278]) -> [PASS][129] +5 similar issues
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb6/igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb4/igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm.html

  * igt@perf_pmu@rc6-runtime-pm:
    - shard-tglb:         [SKIP][130] ([fdo#111719]) -> [PASS][131] +1 similar issue
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb7/igt@perf_pmu@rc6-runtime-pm.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb6/igt@perf_pmu@rc6-runtime-pm.html

  * igt@perf_pmu@rc6-runtime-pm-long:
    - {shard-rkl}:        [SKIP][132] ([i915#293]) -> [PASS][133] +1 similar issue
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-rkl-6/igt@perf_pmu@rc6-runtime-pm-long.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-rkl-6/igt@perf_pmu@rc6-runtime-pm-long.html
    - shard-iclb:         [SKIP][134] ([i915#293]) -> [PASS][135] +1 similar issue
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb3/igt@perf_pmu@rc6-runtime-pm-long.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb1/igt@perf_pmu@rc6-runtime-pm-long.html

  
#### Warnings ####

  * igt@i915_pm_dc@dc6-dpms:
    - shard-kbl:          [FAIL][136] ([i915#545]) -> [FAIL][137] ([i915#454])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-kbl1/igt@i915_pm_dc@dc6-dpms.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl4/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-iclb:         [WARN][138] ([i915#2684]) -> [WARN][139] ([i915#1804] / [i915#2684])
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb1/igt@i915_pm_rc6_residency@rc6-idle.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb7/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
    - shard-tglb:         [SKIP][140] ([i915#579]) -> [SKIP][141] ([fdo#111644] / [i915#1397] / [i915#2411]) +3 similar issues
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb5/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb2/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html

  * igt@i915_pm_rpm@gem-execbuf-stress-pc8:
    - shard-iclb:         [SKIP][142] ([i915#579]) -> [SKIP][143] ([fdo#109293] / [fdo#109506]) +1 similar issue
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb5/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb7/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
    - shard-tglb:         [SKIP][144] ([i915#579]) -> [SKIP][145] ([fdo#109506] / [i915#2411]) +1 similar issue
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb8/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb7/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html

  * igt@i915_pm_rpm@modeset-non-lpsp:
    - shard-iclb:         [SKIP][146] ([i915#579]) -> [SKIP][147] ([fdo#110892]) +4 similar issues
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb1/igt@i915_pm_rpm@modeset-non-lpsp.html
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb3/igt@i915_pm_rpm@modeset-non-lpsp.html

  * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
    - shard-iclb:         [SKIP][148] ([i915#658]) -> [SKIP][149] ([i915#2920]) +1 similar issue
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2:
    - shard-iclb:         [SKIP][150] ([i915#2920]) -> [SKIP][151] ([i915#658])
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2.html
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2.html

  * igt@runner@aborted:
    - shard-kbl:          ([FAIL][152], [FAIL][153], [FAIL][154], [FAIL][155], [FAIL][156], [FAIL][157], [FAIL][158], [FAIL][159], [FAIL][160]) ([i915#1436] / [i915#180] / [i915#1814] / [i915#2505] / [i915#3002] / [i915#3363] / [i915#602] / [i915#92]) -> ([FAIL][161], [FAIL][162], [FAIL][163], [FAIL][164], [FAIL][165], [FAIL][166]) ([i915#180] / [i915#1814] / [i915#2505] / [i915#3002] / [i915#3363] / [i915#92])
   [152]: https:

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/index.html

[-- Attachment #2: Type: text/html, Size: 33297 bytes --]

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

* Re: [Intel-gfx]  ✗ Fi.CI.IGT: failure for fbdev/efifb: Release PCI device's runtime PM ref during FB destroy (rev2)
  2021-08-09 17:57   ` Imre Deak
@ 2021-08-09 18:32     ` Vudum, Lakshminarayana
  0 siblings, 0 replies; 19+ messages in thread
From: Vudum, Lakshminarayana @ 2021-08-09 18:32 UTC (permalink / raw)
  To: Deak, Imre, intel-gfx

Re-reported.

-----Original Message-----
From: Deak, Imre <imre.deak@intel.com> 
Sent: Monday, August 9, 2021 10:57 AM
To: intel-gfx@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Subject: Re: ✗ Fi.CI.IGT: failure for fbdev/efifb: Release PCI device's runtime PM ref during FB destroy (rev2)

Hi,

On Mon, Aug 09, 2021 at 05:23:59PM +0000, Patchwork wrote:
> [...] 
>   * igt@i915_selftest@live@hangcheck:
>     - shard-snb:          [PASS][1] -> [INCOMPLETE][2]
>    [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-snb2/igt@i915_selftest@live@hangcheck.html
>    [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-snb6/igt@i915_selftest@live@hangcheck.html

no EFI FB on this machine, so the patch should have no effect on it.

--Imre

> #### Suppressed ####
> 
>   The following results come from untrusted machines, tests, or statuses.
>   They do not affect the overall result.
> 
>   * {igt@i915_pm_rpm@gem-mmap-type@fixed}:
>     - shard-tglb:         NOTRUN -> [SKIP][3]
>    [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb5/igt@i915_pm_rpm@gem-mmap-type@fixed.html
>     - shard-iclb:         NOTRUN -> [SKIP][4]
>    [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb5/igt@i915_pm_rpm@gem-mmap-type@fixed.html
> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in Patchwork_20786_full that come from known issues:
> 
> ### IGT changes ###
> 
> #### Issues hit ####
> 
>   * igt@gem_ctx_persistence@legacy-engines-mixed:
>     - shard-snb:          NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#1099]) +1 similar issue
>    [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-snb5/igt@gem_ctx_persistence@legacy-engines-mixed.html
> 
>   * igt@gem_exec_fair@basic-deadline:
>     - shard-kbl:          NOTRUN -> [FAIL][6] ([i915#2846])
>    [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl2/igt@gem_exec_fair@basic-deadline.html
>     - shard-glk:          [PASS][7] -> [FAIL][8] ([i915#2846])
>    [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk3/igt@gem_exec_fair@basic-deadline.html
>    [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk6/igt@gem_exec_fair@basic-deadline.html
> 
>   * igt@gem_exec_fair@basic-none@vcs0:
>     - shard-apl:          [PASS][9] -> [FAIL][10] ([i915#2842])
>    [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-apl7/igt@gem_exec_fair@basic-none@vcs0.html
>    [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl2/igt@gem_exec_fair@basic-none@vcs0.html
> 
>   * igt@gem_exec_fair@basic-pace-share@rcs0:
>     - shard-glk:          [PASS][11] -> [FAIL][12] ([i915#2842])
>    [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html
>    [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html
> 
>   * igt@gem_exec_fair@basic-throttle@rcs0:
>     - shard-iclb:         [PASS][13] -> [FAIL][14] ([i915#2849])
>    [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb4/igt@gem_exec_fair@basic-throttle@rcs0.html
>    [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html
> 
>   * igt@gem_pwrite@basic-exhaustion:
>     - shard-snb:          NOTRUN -> [WARN][15] ([i915#2658])
>    [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-snb6/igt@gem_pwrite@basic-exhaustion.html
>     - shard-apl:          NOTRUN -> [WARN][16] ([i915#2658])
>    [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl1/igt@gem_pwrite@basic-exhaustion.html
> 
>   * igt@gem_softpin@noreloc-s3:
>     - shard-kbl:          [PASS][17] -> [DMESG-WARN][18] ([i915#180]) +1 similar issue
>    [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-kbl4/igt@gem_softpin@noreloc-s3.html
>    [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl6/igt@gem_softpin@noreloc-s3.html
> 
>   * igt@gen7_exec_parse@basic-offset:
>     - shard-apl:          NOTRUN -> [SKIP][19] ([fdo#109271]) +167 similar issues
>    [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl1/igt@gen7_exec_parse@basic-offset.html
> 
>   * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip:
>     - shard-kbl:          NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#3777]) +1 similar issue
>    [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
> 
>   * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
>     - shard-apl:          NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#3777]) +1 similar issue
>    [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
> 
>   * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
>     - shard-apl:          NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#3886]) +6 similar issues
>    [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl7/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
> 
>   * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
>     - shard-kbl:          NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#3886]) +5 similar issues
>    [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl7/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html
> 
>   * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
>     - shard-skl:          NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#3886]) +3 similar issues
>    [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html
> 
>   * igt@kms_color@pipe-d-ctm-negative:
>     - shard-skl:          NOTRUN -> [SKIP][25] ([fdo#109271]) +50 similar issues
>    [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@kms_color@pipe-d-ctm-negative.html
> 
>   * igt@kms_color_chamelium@pipe-a-ctm-negative:
>     - shard-snb:          NOTRUN -> [SKIP][26] ([fdo#109271] / [fdo#111827]) +7 similar issues
>    [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-snb6/igt@kms_color_chamelium@pipe-a-ctm-negative.html
> 
>   * igt@kms_color_chamelium@pipe-a-degamma:
>     - shard-kbl:          NOTRUN -> [SKIP][27] ([fdo#109271] / [fdo#111827]) +10 similar issues
>    [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl2/igt@kms_color_chamelium@pipe-a-degamma.html
> 
>   * igt@kms_color_chamelium@pipe-b-ctm-limited-range:
>     - shard-skl:          NOTRUN -> [SKIP][28] ([fdo#109271] / [fdo#111827]) +1 similar issue
>    [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@kms_color_chamelium@pipe-b-ctm-limited-range.html
> 
>   * igt@kms_color_chamelium@pipe-c-ctm-0-25:
>     - shard-apl:          NOTRUN -> [SKIP][29] ([fdo#109271] / [fdo#111827]) +13 similar issues
>    [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl3/igt@kms_color_chamelium@pipe-c-ctm-0-25.html
> 
>   * igt@kms_content_protection@srm:
>     - shard-apl:          NOTRUN -> [TIMEOUT][30] ([i915#1319])
>    [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl1/igt@kms_content_protection@srm.html
> 
>   * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
>     - shard-skl:          [PASS][31] -> [FAIL][32] ([i915#2346])
>    [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
>    [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
> 
>   * igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-xtiled:
>     - shard-glk:          [PASS][33] -> [FAIL][34] ([i915#1888] / [i915#3451])
>    [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk1/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-xtiled.html
>    [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk6/igt@kms_draw_crc@draw-method-rgb565-mmap-gtt-xtiled.html
> 
>   * igt@kms_dsc@basic-dsc-enable@edp-1-pipe-c:
>     - shard-iclb:         NOTRUN -> [DMESG-WARN][35] ([i915#1226]) +2 similar issues
>    [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb2/igt@kms_dsc@basic-dsc-enable@edp-1-pipe-c.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
>     - shard-skl:          [PASS][36] -> [FAIL][37] ([i915#2122])
>    [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
>    [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
> 
>   * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
>     - shard-kbl:          NOTRUN -> [SKIP][38] ([fdo#109271]) +97 similar issues
>    [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
> 
>   * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
>     - shard-snb:          NOTRUN -> [SKIP][39] ([fdo#109271]) +143 similar issues
>    [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-snb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html
> 
>   * igt@kms_pipe_crc_basic@hang-read-crc-pipe-d:
>     - shard-skl:          NOTRUN -> [SKIP][40] ([fdo#109271] / [i915#533])
>    [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@kms_pipe_crc_basic@hang-read-crc-pipe-d.html
> 
>   * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence:
>     - shard-kbl:          NOTRUN -> [SKIP][41] ([fdo#109271] / [i915#533])
>    [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl2/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence.html
> 
>   * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
>     - shard-apl:          NOTRUN -> [FAIL][42] ([i915#265])
>    [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl3/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html
> 
>   * igt@kms_plane_alpha_blend@pipe-b-alpha-basic:
>     - shard-kbl:          NOTRUN -> [FAIL][43] ([fdo#108145] / [i915#265]) +1 similar issue
>    [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl2/igt@kms_plane_alpha_blend@pipe-b-alpha-basic.html
> 
>   * igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb:
>     - shard-skl:          NOTRUN -> [FAIL][44] ([fdo#108145] / [i915#265])
>    [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@kms_plane_alpha_blend@pipe-c-alpha-opaque-fb.html
> 
>   * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2:
>     - shard-apl:          NOTRUN -> [SKIP][45] ([fdo#109271] / [i915#658]) +3 similar issues
>    [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area-2.html
> 
>   * igt@kms_psr2_sf@plane-move-sf-dmg-area-2:
>     - shard-skl:          NOTRUN -> [SKIP][46] ([fdo#109271] / [i915#658]) +2 similar issues
>    [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html
> 
>   * igt@kms_psr@psr2_no_drrs:
>     - shard-iclb:         [PASS][47] -> [SKIP][48] ([fdo#109441])
>    [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb2/igt@kms_psr@psr2_no_drrs.html
>    [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb6/igt@kms_psr@psr2_no_drrs.html
> 
>   * igt@kms_writeback@writeback-invalid-parameters:
>     - shard-apl:          NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#2437])
>    [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl1/igt@kms_writeback@writeback-invalid-parameters.html
> 
>   * igt@perf@polling-small-buf:
>     - shard-skl:          [PASS][50] -> [FAIL][51] ([i915#1722])
>    [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl2/igt@perf@polling-small-buf.html
>    [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl8/igt@perf@polling-small-buf.html
> 
>   * igt@perf_pmu@module-unload:
>     - shard-skl:          NOTRUN -> [DMESG-WARN][52] ([i915#1982] / [i915#262])
>    [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@perf_pmu@module-unload.html
> 
>   * igt@sysfs_clients@fair-1:
>     - shard-kbl:          NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#2994])
>    [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl2/igt@sysfs_clients@fair-1.html
> 
>   * igt@sysfs_clients@pidname:
>     - shard-skl:          NOTRUN -> [SKIP][54] ([fdo#109271] / [i915#2994])
>    [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@sysfs_clients@pidname.html
> 
>   * igt@sysfs_clients@sema-10:
>     - shard-apl:          NOTRUN -> [SKIP][55] ([fdo#109271] / [i915#2994])
>    [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl3/igt@sysfs_clients@sema-10.html
> 
>   
> #### Possible fixes ####
> 
>   * igt@feature_discovery@psr2:
>     - shard-iclb:         [SKIP][56] ([i915#658]) -> [PASS][57]
>    [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb4/igt@feature_discovery@psr2.html
>    [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb2/igt@feature_discovery@psr2.html
> 
>   * igt@gem_ctx_persistence@many-contexts:
>     - {shard-rkl}:        [FAIL][58] ([i915#2410]) -> [PASS][59]
>    [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-rkl-1/igt@gem_ctx_persistence@many-contexts.html
>    [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-rkl-2/igt@gem_ctx_persistence@many-contexts.html
> 
>   * igt@gem_eio@unwedge-stress:
>     - shard-tglb:         [TIMEOUT][60] ([i915#2369] / [i915#3063] / [i915#3648]) -> [PASS][61]
>    [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb7/igt@gem_eio@unwedge-stress.html
>    [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb2/igt@gem_eio@unwedge-stress.html
> 
>   * igt@gem_exec_fair@basic-none@rcs0:
>     - shard-glk:          [FAIL][62] ([i915#2842]) -> [PASS][63]
>    [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk6/igt@gem_exec_fair@basic-none@rcs0.html
>    [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk9/igt@gem_exec_fair@basic-none@rcs0.html
> 
>   * igt@gem_exec_fair@basic-none@vcs0:
>     - shard-kbl:          [FAIL][64] ([i915#2842]) -> [PASS][65] +3 similar issues
>    [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-kbl2/igt@gem_exec_fair@basic-none@vcs0.html
>    [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl4/igt@gem_exec_fair@basic-none@vcs0.html
> 
>   * igt@gem_exec_fair@basic-none@vecs0:
>     - shard-apl:          [FAIL][66] ([i915#2842] / [i915#3468]) -> [PASS][67]
>    [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-apl7/igt@gem_exec_fair@basic-none@vecs0.html
>    [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl2/igt@gem_exec_fair@basic-none@vecs0.html
> 
>   * igt@gem_exec_fair@basic-pace@bcs0:
>     - shard-tglb:         [FAIL][68] ([i915#2842]) -> [PASS][69] +1 similar issue
>    [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb6/igt@gem_exec_fair@basic-pace@bcs0.html
>    [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb1/igt@gem_exec_fair@basic-pace@bcs0.html
> 
>   * igt@gem_exec_fair@basic-throttle@rcs0:
>     - {shard-rkl}:        [FAIL][70] ([i915#2842]) -> [PASS][71] +2 similar issues
>    [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-rkl-5/igt@gem_exec_fair@basic-throttle@rcs0.html
>    [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-rkl-2/igt@gem_exec_fair@basic-throttle@rcs0.html
> 
>   * igt@gem_exec_whisper@basic-contexts-all:
>     - shard-glk:          [DMESG-WARN][72] ([i915#118] / [i915#95]) -> [PASS][73] +1 similar issue
>    [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk1/igt@gem_exec_whisper@basic-contexts-all.html
>    [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk6/igt@gem_exec_whisper@basic-contexts-all.html
> 
>   * igt@gem_mmap_gtt@cpuset-big-copy:
>     - shard-iclb:         [FAIL][74] ([i915#2428]) -> [PASS][75]
>    [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb8/igt@gem_mmap_gtt@cpuset-big-copy.html
>    [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb3/igt@gem_mmap_gtt@cpuset-big-copy.html
> 
>   * igt@gem_mmap_offset@clear:
>     - {shard-rkl}:        [FAIL][76] ([i915#3160]) -> [PASS][77]
>    [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-rkl-1/igt@gem_mmap_offset@clear.html
>    [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-rkl-5/igt@gem_mmap_offset@clear.html
> 
>   * igt@gem_softpin@noreloc-s3:
>     - shard-apl:          [DMESG-WARN][78] ([i915#180]) -> [PASS][79]
>    [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-apl1/igt@gem_softpin@noreloc-s3.html
>    [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl7/igt@gem_softpin@noreloc-s3.html
> 
>   * igt@gem_workarounds@suspend-resume-fd:
>     - shard-skl:          [INCOMPLETE][80] ([i915#198] / [i915#2405]) -> [PASS][81]
>    [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl3/igt@gem_workarounds@suspend-resume-fd.html
>    [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl4/igt@gem_workarounds@suspend-resume-fd.html
> 
>   * igt@i915_pm_backlight@fade_with_dpms:
>     - shard-tglb:         [SKIP][82] ([i915#1311] / [i915#579]) -> [PASS][83]
>    [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb8/igt@i915_pm_backlight@fade_with_dpms.html
>    [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb7/igt@i915_pm_backlight@fade_with_dpms.html
> 
>   * igt@i915_pm_dc@dc5-dpms:
>     - shard-skl:          [FAIL][84] ([i915#545]) -> [PASS][85]
>    [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl10/igt@i915_pm_dc@dc5-dpms.html
>    [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl2/igt@i915_pm_dc@dc5-dpms.html
> 
>   * igt@i915_pm_rpm@basic-pci-d3-state:
>     - shard-skl:          [SKIP][86] ([fdo#109271]) -> [PASS][87] +20 similar issues
>    [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl1/igt@i915_pm_rpm@basic-pci-d3-state.html
>    [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl9/igt@i915_pm_rpm@basic-pci-d3-state.html
> 
>   * igt@i915_pm_rpm@basic-rte:
>     - shard-skl:          [FAIL][88] ([i915#579]) -> [PASS][89]
>    [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl6/igt@i915_pm_rpm@basic-rte.html
>    [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl5/igt@i915_pm_rpm@basic-rte.html
>     - shard-kbl:          [FAIL][90] ([i915#579]) -> [PASS][91]
>    [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-kbl6/igt@i915_pm_rpm@basic-rte.html
>    [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl2/igt@i915_pm_rpm@basic-rte.html
>     - shard-apl:          [FAIL][92] ([i915#579]) -> [PASS][93]
>    [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-apl6/igt@i915_pm_rpm@basic-rte.html
>    [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl1/igt@i915_pm_rpm@basic-rte.html
>     - shard-glk:          [FAIL][94] ([i915#579]) -> [PASS][95]
>    [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk9/igt@i915_pm_rpm@basic-rte.html
>    [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk1/igt@i915_pm_rpm@basic-rte.html
>     - shard-iclb:         [FAIL][96] ([i915#579]) -> [PASS][97]
>    [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb1/igt@i915_pm_rpm@basic-rte.html
>    [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb1/igt@i915_pm_rpm@basic-rte.html
>     - shard-tglb:         [FAIL][98] ([i915#579]) -> [PASS][99]
>    [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb7/igt@i915_pm_rpm@basic-rte.html
>    [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb2/igt@i915_pm_rpm@basic-rte.html
> 
>   * igt@i915_pm_rpm@gem-execbuf-stress:
>     - shard-glk:          [SKIP][100] ([fdo#109271]) -> [PASS][101] +30 similar issues
>    [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk5/igt@i915_pm_rpm@gem-execbuf-stress.html
>    [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk5/igt@i915_pm_rpm@gem-execbuf-stress.html
>     - {shard-rkl}:        [SKIP][102] ([i915#3844] / [i915#579]) -> [PASS][103] +1 similar issue
>    [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-rkl-6/igt@i915_pm_rpm@gem-execbuf-stress.html
>    [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-rkl-6/igt@i915_pm_rpm@gem-execbuf-stress.html
> 
>   * igt@i915_pm_rpm@gem-idle:
>     - shard-iclb:         [SKIP][104] ([i915#579]) -> [PASS][105] +25 similar issues
>    [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb2/igt@i915_pm_rpm@gem-idle.html
>    [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb6/igt@i915_pm_rpm@gem-idle.html
> 
>   * igt@i915_pm_rpm@i2c:
>     - shard-tglb:         [SKIP][106] ([i915#579]) -> [PASS][107] +24 similar issues
>    [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb1/igt@i915_pm_rpm@i2c.html
>    [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb8/igt@i915_pm_rpm@i2c.html
> 
>   * igt@i915_pm_rpm@system-suspend:
>     - shard-kbl:          [SKIP][108] ([fdo#109271]) -> [PASS][109] +28 similar issues
>    [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-kbl1/igt@i915_pm_rpm@system-suspend.html
>    [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl6/igt@i915_pm_rpm@system-suspend.html
> 
>   * igt@kms_cursor_crc@pipe-a-cursor-suspend:
>     - shard-kbl:          [DMESG-WARN][110] ([i915#180]) -> [PASS][111] +4 similar issues
>    [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
>    [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
> 
>   * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2:
>     - shard-glk:          [FAIL][112] ([i915#79]) -> [PASS][113]
>    [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html
>    [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html
> 
>   * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1:
>     - shard-skl:          [FAIL][114] ([i915#79]) -> [PASS][115]
>    [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
>    [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-edp1.html
> 
>   * igt@kms_hdr@bpc-switch-suspend:
>     - shard-skl:          [FAIL][116] ([i915#1188]) -> [PASS][117]
>    [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl2/igt@kms_hdr@bpc-switch-suspend.html
>    [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl8/igt@kms_hdr@bpc-switch-suspend.html
> 
>   * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc:
>     - shard-skl:          [FAIL][118] ([fdo#108145] / [i915#265]) -> [PASS][119] +1 similar issue
>    [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-skl2/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
>    [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-skl10/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
> 
>   * igt@kms_psr@psr2_cursor_render:
>     - shard-iclb:         [SKIP][120] ([fdo#109441]) -> [PASS][121] +1 similar issue
>    [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb4/igt@kms_psr@psr2_cursor_render.html
>    [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb2/igt@kms_psr@psr2_cursor_render.html
> 
>   * igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm:
>     - shard-tglb:         [SKIP][122] ([i915#3841]) -> [PASS][123] +7 similar issues
>    [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb8/igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm.html
>    [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb7/igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm.html
>     - {shard-rkl}:        [SKIP][124] ([i915#3841]) -> [PASS][125]
>    [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-rkl-6/igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm.html
>    [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-rkl-6/igt@kms_vblank@pipe-a-ts-continuation-modeset-rpm.html
> 
>   * igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm:
>     - shard-apl:          [SKIP][126] ([fdo#109271]) -> [PASS][127] +17 similar issues
>    [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-apl6/igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm.html
>    [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-apl1/igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm.html
>     - shard-iclb:         [SKIP][128] ([fdo#109278]) -> [PASS][129] +5 similar issues
>    [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb6/igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm.html
>    [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb4/igt@kms_vblank@pipe-b-ts-continuation-dpms-rpm.html
> 
>   * igt@perf_pmu@rc6-runtime-pm:
>     - shard-tglb:         [SKIP][130] ([fdo#111719]) -> [PASS][131] +1 similar issue
>    [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb7/igt@perf_pmu@rc6-runtime-pm.html
>    [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb6/igt@perf_pmu@rc6-runtime-pm.html
> 
>   * igt@perf_pmu@rc6-runtime-pm-long:
>     - {shard-rkl}:        [SKIP][132] ([i915#293]) -> [PASS][133] +1 similar issue
>    [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-rkl-6/igt@perf_pmu@rc6-runtime-pm-long.html
>    [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-rkl-6/igt@perf_pmu@rc6-runtime-pm-long.html
>     - shard-iclb:         [SKIP][134] ([i915#293]) -> [PASS][135] +1 similar issue
>    [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb3/igt@perf_pmu@rc6-runtime-pm-long.html
>    [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb1/igt@perf_pmu@rc6-runtime-pm-long.html
> 
>   
> #### Warnings ####
> 
>   * igt@i915_pm_dc@dc6-dpms:
>     - shard-kbl:          [FAIL][136] ([i915#545]) -> [FAIL][137] ([i915#454])
>    [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-kbl1/igt@i915_pm_dc@dc6-dpms.html
>    [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-kbl4/igt@i915_pm_dc@dc6-dpms.html
> 
>   * igt@i915_pm_rc6_residency@rc6-idle:
>     - shard-iclb:         [WARN][138] ([i915#2684]) -> [WARN][139] ([i915#1804] / [i915#2684])
>    [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb1/igt@i915_pm_rc6_residency@rc6-idle.html
>    [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb7/igt@i915_pm_rc6_residency@rc6-idle.html
> 
>   * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
>     - shard-tglb:         [SKIP][140] ([i915#579]) -> [SKIP][141] ([fdo#111644] / [i915#1397] / [i915#2411]) +3 similar issues
>    [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb5/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
>    [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb2/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
> 
>   * igt@i915_pm_rpm@gem-execbuf-stress-pc8:
>     - shard-iclb:         [SKIP][142] ([i915#579]) -> [SKIP][143] ([fdo#109293] / [fdo#109506]) +1 similar issue
>    [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb5/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
>    [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb7/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
>     - shard-tglb:         [SKIP][144] ([i915#579]) -> [SKIP][145] ([fdo#109506] / [i915#2411]) +1 similar issue
>    [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-tglb8/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
>    [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-tglb7/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
> 
>   * igt@i915_pm_rpm@modeset-non-lpsp:
>     - shard-iclb:         [SKIP][146] ([i915#579]) -> [SKIP][147] ([fdo#110892]) +4 similar issues
>    [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb1/igt@i915_pm_rpm@modeset-non-lpsp.html
>    [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb3/igt@i915_pm_rpm@modeset-non-lpsp.html
> 
>   * igt@kms_psr2_sf@plane-move-sf-dmg-area-0:
>     - shard-iclb:         [SKIP][148] ([i915#658]) -> [SKIP][149] ([i915#2920]) +1 similar issue
>    [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb4/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
>    [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area-0.html
> 
>   * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2:
>     - shard-iclb:         [SKIP][150] ([i915#2920]) -> [SKIP][151] ([i915#658])
>    [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10460/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2.html
>    [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/shard-iclb6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-2.html
> 
>   * igt@runner@aborted:
>     - shard-kbl:          ([FAIL][152], [FAIL][153], [FAIL][154], [FAIL][155], [FAIL][156], [FAIL][
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20786/index.html

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

* Re: [Intel-gfx] [PATCH v2] fbdev/efifb: Release PCI device's runtime PM ref during FB destroy
  2021-08-09 13:31 ` [Intel-gfx] [PATCH v2] " Imre Deak
@ 2021-08-10  8:36   ` Imre Deak
  2021-08-10 14:48     ` Alex Deucher
  2021-08-13 13:46   ` Imre Deak
  1 sibling, 1 reply; 19+ messages in thread
From: Imre Deak @ 2021-08-10  8:36 UTC (permalink / raw)
  To: linux-fbdev, Kai-Heng Feng, Alex Deucher
  Cc: dri-devel, Thomas Zimmermann, intel-gfx, Daniel Vetter

Hi Kai-Heng, Alex,

could you add your ack if the fix looks ok and you're ok if I push it to
the i915 tree?

Thanks,
Imre

On Mon, Aug 09, 2021 at 04:31:46PM +0300, Imre Deak wrote:
> Atm the EFI FB platform driver gets a runtime PM reference for the
> associated GFX PCI device during probing the EFI FB platform device and
> releases it only when the platform device gets unbound.
> 
> When fbcon switches to the FB provided by the PCI device's driver (for
> instance i915/drmfb), the EFI FB will get only unregistered without the
> EFI FB platform device getting unbound, keeping the runtime PM reference
> acquired during the platform device probing. This reference will prevent
> the PCI driver from runtime suspending the device.
> 
> Fix this by releasing the RPM reference from the EFI FB's destroy hook,
> called when the FB gets unregistered.
> 
> While at it assert that pm_runtime_get_sync() didn't fail.
> 
> v2:
> - Move pm_runtime_get_sync() before register_framebuffer() to avoid its
>   race wrt. efifb_destroy()->pm_runtime_put(). (Daniel)
> - Assert that pm_runtime_get_sync() didn't fail.
> - Clarify commit message wrt. platform/PCI device/driver and driver
>   removal vs. device unbinding.
> 
> Fixes: a6c0fd3d5a8b ("efifb: Ensure graphics device for efifb stays at PCI D0")
> Cc: Kai-Heng Feng <kai.heng.feng@canonical.com>
> Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> (v1)
> Signed-off-by: Imre Deak <imre.deak@intel.com>
> ---
>  drivers/video/fbdev/efifb.c | 21 ++++++++++++++-------
>  1 file changed, 14 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/video/fbdev/efifb.c b/drivers/video/fbdev/efifb.c
> index 8ea8f079cde26..edca3703b9640 100644
> --- a/drivers/video/fbdev/efifb.c
> +++ b/drivers/video/fbdev/efifb.c
> @@ -47,6 +47,8 @@ static bool use_bgrt = true;
>  static bool request_mem_succeeded = false;
>  static u64 mem_flags = EFI_MEMORY_WC | EFI_MEMORY_UC;
>  
> +static struct pci_dev *efifb_pci_dev;	/* dev with BAR covering the efifb */
> +
>  static struct fb_var_screeninfo efifb_defined = {
>  	.activate		= FB_ACTIVATE_NOW,
>  	.height			= -1,
> @@ -243,6 +245,9 @@ static inline void efifb_show_boot_graphics(struct fb_info *info) {}
>  
>  static void efifb_destroy(struct fb_info *info)
>  {
> +	if (efifb_pci_dev)
> +		pm_runtime_put(&efifb_pci_dev->dev);
> +
>  	if (info->screen_base) {
>  		if (mem_flags & (EFI_MEMORY_UC | EFI_MEMORY_WC))
>  			iounmap(info->screen_base);
> @@ -333,7 +338,6 @@ ATTRIBUTE_GROUPS(efifb);
>  
>  static bool pci_dev_disabled;	/* FB base matches BAR of a disabled device */
>  
> -static struct pci_dev *efifb_pci_dev;	/* dev with BAR covering the efifb */
>  static struct resource *bar_resource;
>  static u64 bar_offset;
>  
> @@ -569,17 +573,22 @@ static int efifb_probe(struct platform_device *dev)
>  		pr_err("efifb: cannot allocate colormap\n");
>  		goto err_groups;
>  	}
> +
> +	if (efifb_pci_dev)
> +		WARN_ON(pm_runtime_get_sync(&efifb_pci_dev->dev) < 0);
> +
>  	err = register_framebuffer(info);
>  	if (err < 0) {
>  		pr_err("efifb: cannot register framebuffer\n");
> -		goto err_fb_dealoc;
> +		goto err_put_rpm_ref;
>  	}
>  	fb_info(info, "%s frame buffer device\n", info->fix.id);
> -	if (efifb_pci_dev)
> -		pm_runtime_get_sync(&efifb_pci_dev->dev);
>  	return 0;
>  
> -err_fb_dealoc:
> +err_put_rpm_ref:
> +	if (efifb_pci_dev)
> +		pm_runtime_put(&efifb_pci_dev->dev);
> +
>  	fb_dealloc_cmap(&info->cmap);
>  err_groups:
>  	sysfs_remove_groups(&dev->dev.kobj, efifb_groups);
> @@ -603,8 +612,6 @@ static int efifb_remove(struct platform_device *pdev)
>  	unregister_framebuffer(info);
>  	sysfs_remove_groups(&pdev->dev.kobj, efifb_groups);
>  	framebuffer_release(info);
> -	if (efifb_pci_dev)
> -		pm_runtime_put(&efifb_pci_dev->dev);
>  
>  	return 0;
>  }
> -- 
> 2.27.0
> 

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

* Re: [Intel-gfx] [PATCH v2] fbdev/efifb: Release PCI device's runtime PM ref during FB destroy
  2021-08-10  8:36   ` Imre Deak
@ 2021-08-10 14:48     ` Alex Deucher
  2021-08-10 15:20       ` Kai-Heng Feng
  0 siblings, 1 reply; 19+ messages in thread
From: Alex Deucher @ 2021-08-10 14:48 UTC (permalink / raw)
  To: Imre Deak
  Cc: open list:EFIFB FRAMEBUFFER DRIVER, Kai-Heng Feng, Alex Deucher,
	Maling list - DRI developers, Thomas Zimmermann,
	Intel Graphics Development, Daniel Vetter

On Tue, Aug 10, 2021 at 4:36 AM Imre Deak <imre.deak@intel.com> wrote:
>
> Hi Kai-Heng, Alex,
>
> could you add your ack if the fix looks ok and you're ok if I push it to
> the i915 tree?
>

Acked-by: Alex Deucher <alexander.deucher@amd.com>

> Thanks,
> Imre
>
> On Mon, Aug 09, 2021 at 04:31:46PM +0300, Imre Deak wrote:
> > Atm the EFI FB platform driver gets a runtime PM reference for the
> > associated GFX PCI device during probing the EFI FB platform device and
> > releases it only when the platform device gets unbound.
> >
> > When fbcon switches to the FB provided by the PCI device's driver (for
> > instance i915/drmfb), the EFI FB will get only unregistered without the
> > EFI FB platform device getting unbound, keeping the runtime PM reference
> > acquired during the platform device probing. This reference will prevent
> > the PCI driver from runtime suspending the device.
> >
> > Fix this by releasing the RPM reference from the EFI FB's destroy hook,
> > called when the FB gets unregistered.
> >
> > While at it assert that pm_runtime_get_sync() didn't fail.
> >
> > v2:
> > - Move pm_runtime_get_sync() before register_framebuffer() to avoid its
> >   race wrt. efifb_destroy()->pm_runtime_put(). (Daniel)
> > - Assert that pm_runtime_get_sync() didn't fail.
> > - Clarify commit message wrt. platform/PCI device/driver and driver
> >   removal vs. device unbinding.
> >
> > Fixes: a6c0fd3d5a8b ("efifb: Ensure graphics device for efifb stays at PCI D0")
> > Cc: Kai-Heng Feng <kai.heng.feng@canonical.com>
> > Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
> > Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> (v1)
> > Signed-off-by: Imre Deak <imre.deak@intel.com>
> > ---
> >  drivers/video/fbdev/efifb.c | 21 ++++++++++++++-------
> >  1 file changed, 14 insertions(+), 7 deletions(-)
> >
> > diff --git a/drivers/video/fbdev/efifb.c b/drivers/video/fbdev/efifb.c
> > index 8ea8f079cde26..edca3703b9640 100644
> > --- a/drivers/video/fbdev/efifb.c
> > +++ b/drivers/video/fbdev/efifb.c
> > @@ -47,6 +47,8 @@ static bool use_bgrt = true;
> >  static bool request_mem_succeeded = false;
> >  static u64 mem_flags = EFI_MEMORY_WC | EFI_MEMORY_UC;
> >
> > +static struct pci_dev *efifb_pci_dev;        /* dev with BAR covering the efifb */
> > +
> >  static struct fb_var_screeninfo efifb_defined = {
> >       .activate               = FB_ACTIVATE_NOW,
> >       .height                 = -1,
> > @@ -243,6 +245,9 @@ static inline void efifb_show_boot_graphics(struct fb_info *info) {}
> >
> >  static void efifb_destroy(struct fb_info *info)
> >  {
> > +     if (efifb_pci_dev)
> > +             pm_runtime_put(&efifb_pci_dev->dev);
> > +
> >       if (info->screen_base) {
> >               if (mem_flags & (EFI_MEMORY_UC | EFI_MEMORY_WC))
> >                       iounmap(info->screen_base);
> > @@ -333,7 +338,6 @@ ATTRIBUTE_GROUPS(efifb);
> >
> >  static bool pci_dev_disabled;        /* FB base matches BAR of a disabled device */
> >
> > -static struct pci_dev *efifb_pci_dev;        /* dev with BAR covering the efifb */
> >  static struct resource *bar_resource;
> >  static u64 bar_offset;
> >
> > @@ -569,17 +573,22 @@ static int efifb_probe(struct platform_device *dev)
> >               pr_err("efifb: cannot allocate colormap\n");
> >               goto err_groups;
> >       }
> > +
> > +     if (efifb_pci_dev)
> > +             WARN_ON(pm_runtime_get_sync(&efifb_pci_dev->dev) < 0);
> > +
> >       err = register_framebuffer(info);
> >       if (err < 0) {
> >               pr_err("efifb: cannot register framebuffer\n");
> > -             goto err_fb_dealoc;
> > +             goto err_put_rpm_ref;
> >       }
> >       fb_info(info, "%s frame buffer device\n", info->fix.id);
> > -     if (efifb_pci_dev)
> > -             pm_runtime_get_sync(&efifb_pci_dev->dev);
> >       return 0;
> >
> > -err_fb_dealoc:
> > +err_put_rpm_ref:
> > +     if (efifb_pci_dev)
> > +             pm_runtime_put(&efifb_pci_dev->dev);
> > +
> >       fb_dealloc_cmap(&info->cmap);
> >  err_groups:
> >       sysfs_remove_groups(&dev->dev.kobj, efifb_groups);
> > @@ -603,8 +612,6 @@ static int efifb_remove(struct platform_device *pdev)
> >       unregister_framebuffer(info);
> >       sysfs_remove_groups(&pdev->dev.kobj, efifb_groups);
> >       framebuffer_release(info);
> > -     if (efifb_pci_dev)
> > -             pm_runtime_put(&efifb_pci_dev->dev);
> >
> >       return 0;
> >  }
> > --
> > 2.27.0
> >

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

* Re: [Intel-gfx] [PATCH v2] fbdev/efifb: Release PCI device's runtime PM ref during FB destroy
  2021-08-10 14:48     ` Alex Deucher
@ 2021-08-10 15:20       ` Kai-Heng Feng
  0 siblings, 0 replies; 19+ messages in thread
From: Kai-Heng Feng @ 2021-08-10 15:20 UTC (permalink / raw)
  To: Alex Deucher
  Cc: Imre Deak, open list:EFIFB FRAMEBUFFER DRIVER, Alex Deucher,
	Maling list - DRI developers, Thomas Zimmermann,
	Intel Graphics Development, Daniel Vetter

On Tue, Aug 10, 2021 at 10:49 PM Alex Deucher <alexdeucher@gmail.com> wrote:
>
> On Tue, Aug 10, 2021 at 4:36 AM Imre Deak <imre.deak@intel.com> wrote:
> >
> > Hi Kai-Heng, Alex,
> >
> > could you add your ack if the fix looks ok and you're ok if I push it to
> > the i915 tree?
> >
>
> Acked-by: Alex Deucher <alexander.deucher@amd.com>

Acked-by: Kai-Heng Feng <kai.heng.feng@canonical.com>

>
> > Thanks,
> > Imre
> >
> > On Mon, Aug 09, 2021 at 04:31:46PM +0300, Imre Deak wrote:
> > > Atm the EFI FB platform driver gets a runtime PM reference for the
> > > associated GFX PCI device during probing the EFI FB platform device and
> > > releases it only when the platform device gets unbound.
> > >
> > > When fbcon switches to the FB provided by the PCI device's driver (for
> > > instance i915/drmfb), the EFI FB will get only unregistered without the
> > > EFI FB platform device getting unbound, keeping the runtime PM reference
> > > acquired during the platform device probing. This reference will prevent
> > > the PCI driver from runtime suspending the device.
> > >
> > > Fix this by releasing the RPM reference from the EFI FB's destroy hook,
> > > called when the FB gets unregistered.
> > >
> > > While at it assert that pm_runtime_get_sync() didn't fail.
> > >
> > > v2:
> > > - Move pm_runtime_get_sync() before register_framebuffer() to avoid its
> > >   race wrt. efifb_destroy()->pm_runtime_put(). (Daniel)
> > > - Assert that pm_runtime_get_sync() didn't fail.
> > > - Clarify commit message wrt. platform/PCI device/driver and driver
> > >   removal vs. device unbinding.
> > >
> > > Fixes: a6c0fd3d5a8b ("efifb: Ensure graphics device for efifb stays at PCI D0")
> > > Cc: Kai-Heng Feng <kai.heng.feng@canonical.com>
> > > Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
> > > Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> (v1)
> > > Signed-off-by: Imre Deak <imre.deak@intel.com>
> > > ---
> > >  drivers/video/fbdev/efifb.c | 21 ++++++++++++++-------
> > >  1 file changed, 14 insertions(+), 7 deletions(-)
> > >
> > > diff --git a/drivers/video/fbdev/efifb.c b/drivers/video/fbdev/efifb.c
> > > index 8ea8f079cde26..edca3703b9640 100644
> > > --- a/drivers/video/fbdev/efifb.c
> > > +++ b/drivers/video/fbdev/efifb.c
> > > @@ -47,6 +47,8 @@ static bool use_bgrt = true;
> > >  static bool request_mem_succeeded = false;
> > >  static u64 mem_flags = EFI_MEMORY_WC | EFI_MEMORY_UC;
> > >
> > > +static struct pci_dev *efifb_pci_dev;        /* dev with BAR covering the efifb */
> > > +
> > >  static struct fb_var_screeninfo efifb_defined = {
> > >       .activate               = FB_ACTIVATE_NOW,
> > >       .height                 = -1,
> > > @@ -243,6 +245,9 @@ static inline void efifb_show_boot_graphics(struct fb_info *info) {}
> > >
> > >  static void efifb_destroy(struct fb_info *info)
> > >  {
> > > +     if (efifb_pci_dev)
> > > +             pm_runtime_put(&efifb_pci_dev->dev);
> > > +
> > >       if (info->screen_base) {
> > >               if (mem_flags & (EFI_MEMORY_UC | EFI_MEMORY_WC))
> > >                       iounmap(info->screen_base);
> > > @@ -333,7 +338,6 @@ ATTRIBUTE_GROUPS(efifb);
> > >
> > >  static bool pci_dev_disabled;        /* FB base matches BAR of a disabled device */
> > >
> > > -static struct pci_dev *efifb_pci_dev;        /* dev with BAR covering the efifb */
> > >  static struct resource *bar_resource;
> > >  static u64 bar_offset;
> > >
> > > @@ -569,17 +573,22 @@ static int efifb_probe(struct platform_device *dev)
> > >               pr_err("efifb: cannot allocate colormap\n");
> > >               goto err_groups;
> > >       }
> > > +
> > > +     if (efifb_pci_dev)
> > > +             WARN_ON(pm_runtime_get_sync(&efifb_pci_dev->dev) < 0);
> > > +
> > >       err = register_framebuffer(info);
> > >       if (err < 0) {
> > >               pr_err("efifb: cannot register framebuffer\n");
> > > -             goto err_fb_dealoc;
> > > +             goto err_put_rpm_ref;
> > >       }
> > >       fb_info(info, "%s frame buffer device\n", info->fix.id);
> > > -     if (efifb_pci_dev)
> > > -             pm_runtime_get_sync(&efifb_pci_dev->dev);
> > >       return 0;
> > >
> > > -err_fb_dealoc:
> > > +err_put_rpm_ref:
> > > +     if (efifb_pci_dev)
> > > +             pm_runtime_put(&efifb_pci_dev->dev);
> > > +
> > >       fb_dealloc_cmap(&info->cmap);
> > >  err_groups:
> > >       sysfs_remove_groups(&dev->dev.kobj, efifb_groups);
> > > @@ -603,8 +612,6 @@ static int efifb_remove(struct platform_device *pdev)
> > >       unregister_framebuffer(info);
> > >       sysfs_remove_groups(&pdev->dev.kobj, efifb_groups);
> > >       framebuffer_release(info);
> > > -     if (efifb_pci_dev)
> > > -             pm_runtime_put(&efifb_pci_dev->dev);
> > >
> > >       return 0;
> > >  }
> > > --
> > > 2.27.0
> > >

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

* Re: [Intel-gfx] [PATCH v2] fbdev/efifb: Release PCI device's runtime PM ref during FB destroy
  2021-08-09 13:31 ` [Intel-gfx] [PATCH v2] " Imre Deak
  2021-08-10  8:36   ` Imre Deak
@ 2021-08-13 13:46   ` Imre Deak
  1 sibling, 0 replies; 19+ messages in thread
From: Imre Deak @ 2021-08-13 13:46 UTC (permalink / raw)
  To: linux-fbdev, Daniel Vetter, Kai-Heng Feng, Alex Deucher
  Cc: dri-devel, Thomas Zimmermann, intel-gfx

On Mon, Aug 09, 2021 at 04:31:46PM +0300, Imre Deak wrote:
> Atm the EFI FB platform driver gets a runtime PM reference for the
> associated GFX PCI device during probing the EFI FB platform device and
> releases it only when the platform device gets unbound.
> 
> When fbcon switches to the FB provided by the PCI device's driver (for
> instance i915/drmfb), the EFI FB will get only unregistered without the
> EFI FB platform device getting unbound, keeping the runtime PM reference
> acquired during the platform device probing. This reference will prevent
> the PCI driver from runtime suspending the device.
> 
> Fix this by releasing the RPM reference from the EFI FB's destroy hook,
> called when the FB gets unregistered.
> 
> While at it assert that pm_runtime_get_sync() didn't fail.
> 
> v2:
> - Move pm_runtime_get_sync() before register_framebuffer() to avoid its
>   race wrt. efifb_destroy()->pm_runtime_put(). (Daniel)
> - Assert that pm_runtime_get_sync() didn't fail.
> - Clarify commit message wrt. platform/PCI device/driver and driver
>   removal vs. device unbinding.
> 
> Fixes: a6c0fd3d5a8b ("efifb: Ensure graphics device for efifb stays at PCI D0")
> Cc: Kai-Heng Feng <kai.heng.feng@canonical.com>
> Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch> (v1)
> Signed-off-by: Imre Deak <imre.deak@intel.com>

Thanks for the reviews, pushed to drm-intel-next.

> ---
>  drivers/video/fbdev/efifb.c | 21 ++++++++++++++-------
>  1 file changed, 14 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/video/fbdev/efifb.c b/drivers/video/fbdev/efifb.c
> index 8ea8f079cde26..edca3703b9640 100644
> --- a/drivers/video/fbdev/efifb.c
> +++ b/drivers/video/fbdev/efifb.c
> @@ -47,6 +47,8 @@ static bool use_bgrt = true;
>  static bool request_mem_succeeded = false;
>  static u64 mem_flags = EFI_MEMORY_WC | EFI_MEMORY_UC;
>  
> +static struct pci_dev *efifb_pci_dev;	/* dev with BAR covering the efifb */
> +
>  static struct fb_var_screeninfo efifb_defined = {
>  	.activate		= FB_ACTIVATE_NOW,
>  	.height			= -1,
> @@ -243,6 +245,9 @@ static inline void efifb_show_boot_graphics(struct fb_info *info) {}
>  
>  static void efifb_destroy(struct fb_info *info)
>  {
> +	if (efifb_pci_dev)
> +		pm_runtime_put(&efifb_pci_dev->dev);
> +
>  	if (info->screen_base) {
>  		if (mem_flags & (EFI_MEMORY_UC | EFI_MEMORY_WC))
>  			iounmap(info->screen_base);
> @@ -333,7 +338,6 @@ ATTRIBUTE_GROUPS(efifb);
>  
>  static bool pci_dev_disabled;	/* FB base matches BAR of a disabled device */
>  
> -static struct pci_dev *efifb_pci_dev;	/* dev with BAR covering the efifb */
>  static struct resource *bar_resource;
>  static u64 bar_offset;
>  
> @@ -569,17 +573,22 @@ static int efifb_probe(struct platform_device *dev)
>  		pr_err("efifb: cannot allocate colormap\n");
>  		goto err_groups;
>  	}
> +
> +	if (efifb_pci_dev)
> +		WARN_ON(pm_runtime_get_sync(&efifb_pci_dev->dev) < 0);
> +
>  	err = register_framebuffer(info);
>  	if (err < 0) {
>  		pr_err("efifb: cannot register framebuffer\n");
> -		goto err_fb_dealoc;
> +		goto err_put_rpm_ref;
>  	}
>  	fb_info(info, "%s frame buffer device\n", info->fix.id);
> -	if (efifb_pci_dev)
> -		pm_runtime_get_sync(&efifb_pci_dev->dev);
>  	return 0;
>  
> -err_fb_dealoc:
> +err_put_rpm_ref:
> +	if (efifb_pci_dev)
> +		pm_runtime_put(&efifb_pci_dev->dev);
> +
>  	fb_dealloc_cmap(&info->cmap);
>  err_groups:
>  	sysfs_remove_groups(&dev->dev.kobj, efifb_groups);
> @@ -603,8 +612,6 @@ static int efifb_remove(struct platform_device *pdev)
>  	unregister_framebuffer(info);
>  	sysfs_remove_groups(&pdev->dev.kobj, efifb_groups);
>  	framebuffer_release(info);
> -	if (efifb_pci_dev)
> -		pm_runtime_put(&efifb_pci_dev->dev);
>  
>  	return 0;
>  }
> -- 
> 2.27.0
> 

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

end of thread, other threads:[~2021-08-13 13:46 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-02 13:35 [Intel-gfx] [PATCH] fbdev/efifb: Release PCI device's runtime PM ref during FB destroy Imre Deak
2021-08-02 15:05 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
2021-08-03  0:58 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2021-08-04 22:23 ` [Intel-gfx] [PATCH] " Daniel Vetter
2021-08-07 15:21   ` Imre Deak
2021-08-09 14:19     ` Daniel Vetter
2021-08-09 13:31 ` [Intel-gfx] [PATCH v2] " Imre Deak
2021-08-10  8:36   ` Imre Deak
2021-08-10 14:48     ` Alex Deucher
2021-08-10 15:20       ` Kai-Heng Feng
2021-08-13 13:46   ` Imre Deak
2021-08-09 14:49 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for fbdev/efifb: Release PCI device's runtime PM ref during FB destroy (rev2) Patchwork
2021-08-09 15:12   ` Imre Deak
2021-08-09 16:37     ` Vudum, Lakshminarayana
2021-08-09 16:10 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2021-08-09 17:23 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2021-08-09 17:57   ` Imre Deak
2021-08-09 18:32     ` Vudum, Lakshminarayana
2021-08-09 18:21 ` [Intel-gfx] ✓ Fi.CI.IGT: success " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).