All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t 1/2] lib: Export drm_load_module()
@ 2020-10-30 11:36 Chris Wilson
  2020-10-30 11:36 ` [igt-dev] [PATCH i-g-t 2/2] fbdev: Force module load Chris Wilson
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Chris Wilson @ 2020-10-30 11:36 UTC (permalink / raw)
  To: igt-dev; +Cc: Petri Latvala, Chris Wilson

Beneath drm_open_driver() we have a routine that tries to load a module
appropriate for the selected chipset. This can be useful for tests that
want to ensure the right module is loaded prior to starting, without
opening the device itself.

Suggested-by: Petri Latvala <petri.latvala@intel.com>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Petri Latvala <petri.latvala@intel.com>
---
 lib/drmtest.c | 8 ++++----
 lib/drmtest.h | 1 +
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/lib/drmtest.c b/lib/drmtest.c
index 447f54353..49e294bde 100644
--- a/lib/drmtest.c
+++ b/lib/drmtest.c
@@ -283,7 +283,7 @@ static int __search_and_open(const char *base, int offset, unsigned int chipset,
 	return -1;
 }
 
-static void __try_modprobe(unsigned int chipset)
+void drm_load_module(unsigned int chipset)
 {
 	static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
 
@@ -307,7 +307,7 @@ static int __open_driver(const char *base, int offset, unsigned int chipset, int
 	if (fd != -1)
 		return fd;
 
-	__try_modprobe(chipset);
+	drm_load_module(chipset);
 
 	return __search_and_open(base, offset, chipset, as_idx);
 }
@@ -320,7 +320,7 @@ static int __open_driver_exact(const char *name, unsigned int chipset)
 	if (fd != -1)
 		return fd;
 
-	__try_modprobe(chipset);
+	drm_load_module(chipset);
 
 	return open_device(name, chipset);
 }
@@ -419,7 +419,7 @@ int __drm_open_driver_another(int idx, int chipset)
 		found = __get_card_for_nth_filter(idx, &card);
 
 		if (!found) {
-			__try_modprobe(chipset);
+			drm_load_module(chipset);
 			found = __get_card_for_nth_filter(idx, &card);
 		}
 
diff --git a/lib/drmtest.h b/lib/drmtest.h
index dd4cd3848..d393dbf15 100644
--- a/lib/drmtest.h
+++ b/lib/drmtest.h
@@ -87,6 +87,7 @@ void __set_forced_driver(const char *name);
  */
 #define ALIGN_DOWN(x, a)	ALIGN((x) - ((a) - 1), (a))
 
+void drm_load_module(unsigned int chipset);
 int drm_open_driver(int chipset);
 int drm_open_driver_master(int chipset);
 int drm_open_driver_render(int chipset);
-- 
2.28.0

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

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

* [igt-dev] [PATCH i-g-t 2/2] fbdev: Force module load
  2020-10-30 11:36 [igt-dev] [PATCH i-g-t 1/2] lib: Export drm_load_module() Chris Wilson
@ 2020-10-30 11:36 ` Chris Wilson
  2020-10-30 13:04   ` Petri Latvala
  2020-10-30 12:37 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] lib: Export drm_load_module() Patchwork
  2020-10-30 14:33 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  2 siblings, 1 reply; 5+ messages in thread
From: Chris Wilson @ 2020-10-30 11:36 UTC (permalink / raw)
  To: igt-dev; +Cc: Petri Latvala, Chris Wilson

If there are no /dev/fbN, force loading of the first available drm
module and try again.

v2: Use drm_load_module() directly

Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/2582
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Petri Latvala <petri.latvala@intel.com>
---
 tests/fbdev.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/tests/fbdev.c b/tests/fbdev.c
index fe320b14f..e5efeb93d 100644
--- a/tests/fbdev.c
+++ b/tests/fbdev.c
@@ -43,8 +43,16 @@ igt_main
 	struct fb_fix_screeninfo fix_info;
 	int fd = -1;
 
+	/*
+	 * Should this test focus on the fbdev independent of any drm driver,
+	 * or should it look for fbdev of a particular device?
+	 */
 	igt_fixture {
 		fd = open("/dev/fb0", O_RDWR);
+		if (fd < 0) {
+			drm_load_module(DRIVER_ANY);
+			fd = open("/dev/fb0", O_RDWR);
+		}
 		igt_require_f(fd != -1, "/dev/fb0\n");
 
 		igt_require(ioctl(fd, FBIOGET_VSCREENINFO, &var_info) == 0);
-- 
2.28.0

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

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

* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] lib: Export drm_load_module()
  2020-10-30 11:36 [igt-dev] [PATCH i-g-t 1/2] lib: Export drm_load_module() Chris Wilson
  2020-10-30 11:36 ` [igt-dev] [PATCH i-g-t 2/2] fbdev: Force module load Chris Wilson
@ 2020-10-30 12:37 ` Patchwork
  2020-10-30 14:33 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2020-10-30 12:37 UTC (permalink / raw)
  To: Chris Wilson; +Cc: igt-dev


[-- Attachment #1.1: Type: text/plain, Size: 6771 bytes --]

== Series Details ==

Series: series starting with [i-g-t,1/2] lib: Export drm_load_module()
URL   : https://patchwork.freedesktop.org/series/83272/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_9227 -> IGTPW_5110
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@core_hotunplug@unbind-rebind:
    - fi-tgl-u2:          [PASS][1] -> [DMESG-WARN][2] ([i915#1982])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/fi-tgl-u2/igt@core_hotunplug@unbind-rebind.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/fi-tgl-u2/igt@core_hotunplug@unbind-rebind.html
    - fi-blb-e6850:       [PASS][3] -> [INCOMPLETE][4] ([i915#2540])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/fi-blb-e6850/igt@core_hotunplug@unbind-rebind.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/fi-blb-e6850/igt@core_hotunplug@unbind-rebind.html
    - fi-icl-y:           [PASS][5] -> [DMESG-WARN][6] ([i915#1982])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/fi-icl-y/igt@core_hotunplug@unbind-rebind.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/fi-icl-y/igt@core_hotunplug@unbind-rebind.html

  * igt@gem_flink_basic@flink-lifetime:
    - fi-tgl-y:           [PASS][7] -> [DMESG-WARN][8] ([i915#402]) +2 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/fi-tgl-y/igt@gem_flink_basic@flink-lifetime.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/fi-tgl-y/igt@gem_flink_basic@flink-lifetime.html

  * igt@i915_module_load@reload:
    - fi-skl-lmem:        [PASS][9] -> [DMESG-WARN][10] ([i915#2605])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/fi-skl-lmem/igt@i915_module_load@reload.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/fi-skl-lmem/igt@i915_module_load@reload.html

  * igt@i915_pm_rpm@basic-pci-d3-state:
    - fi-bsw-kefka:       [PASS][11] -> [DMESG-WARN][12] ([i915#1982])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/fi-bsw-kefka/igt@i915_pm_rpm@basic-pci-d3-state.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/fi-bsw-kefka/igt@i915_pm_rpm@basic-pci-d3-state.html

  * igt@i915_pm_rpm@module-reload:
    - fi-byt-j1900:       [PASS][13] -> [DMESG-WARN][14] ([i915#1982])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/fi-byt-j1900/igt@i915_pm_rpm@module-reload.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/fi-byt-j1900/igt@i915_pm_rpm@module-reload.html

  * igt@kms_flip@basic-flip-vs-dpms@d-edp1:
    - fi-tgl-y:           [PASS][15] -> [DMESG-WARN][16] ([i915#1982])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/fi-tgl-y/igt@kms_flip@basic-flip-vs-dpms@d-edp1.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/fi-tgl-y/igt@kms_flip@basic-flip-vs-dpms@d-edp1.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@gt_pm:
    - {fi-kbl-7560u}:     [DMESG-FAIL][17] ([i915#2524]) -> [PASS][18]
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/fi-kbl-7560u/igt@i915_selftest@live@gt_pm.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/fi-kbl-7560u/igt@i915_selftest@live@gt_pm.html

  * igt@kms_busy@basic@flip:
    - fi-kbl-soraka:      [DMESG-WARN][19] ([i915#1982]) -> [PASS][20]
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/fi-kbl-soraka/igt@kms_busy@basic@flip.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/fi-kbl-soraka/igt@kms_busy@basic@flip.html

  * igt@kms_busy@basic@modeset:
    - {fi-tgl-dsi}:       [DMESG-WARN][21] ([i915#1982]) -> [PASS][22] +1 similar issue
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/fi-tgl-dsi/igt@kms_busy@basic@modeset.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/fi-tgl-dsi/igt@kms_busy@basic@modeset.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
    - fi-icl-u2:          [DMESG-WARN][23] ([i915#1982]) -> [PASS][24] +2 similar issues
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html

  * igt@kms_psr@sprite_plane_onoff:
    - fi-tgl-y:           [DMESG-WARN][25] ([i915#1982]) -> [PASS][26] +1 similar issue
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/fi-tgl-y/igt@kms_psr@sprite_plane_onoff.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/fi-tgl-y/igt@kms_psr@sprite_plane_onoff.html

  * igt@prime_vgem@basic-read:
    - fi-tgl-y:           [DMESG-WARN][27] ([i915#402]) -> [PASS][28] +1 similar issue
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/fi-tgl-y/igt@prime_vgem@basic-read.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/fi-tgl-y/igt@prime_vgem@basic-read.html

  
#### Warnings ####

  * igt@core_hotunplug@unbind-rebind:
    - fi-icl-u2:          [DMESG-WARN][29] ([i915#1982] / [i915#289]) -> [DMESG-WARN][30] ([i915#289])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/fi-icl-u2/igt@core_hotunplug@unbind-rebind.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/fi-icl-u2/igt@core_hotunplug@unbind-rebind.html

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

  [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
  [i915#2524]: https://gitlab.freedesktop.org/drm/intel/issues/2524
  [i915#2540]: https://gitlab.freedesktop.org/drm/intel/issues/2540
  [i915#2605]: https://gitlab.freedesktop.org/drm/intel/issues/2605
  [i915#289]: https://gitlab.freedesktop.org/drm/intel/issues/289
  [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402


Participating hosts (43 -> 41)
------------------------------

  Missing    (2): fi-bsw-cyan fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5828 -> IGTPW_5110

  CI-20190529: 20190529
  CI_DRM_9227: d6f64cb8b9ef0b9235b08cc6e3ec30db8ea197d2 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_5110: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/index.html
  IGT_5828: db972bdaab8ada43b742bc9621bb0fc9d56a6fc6 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

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

[-- Attachment #1.2: Type: text/html, Size: 8462 bytes --]

[-- Attachment #2: Type: text/plain, Size: 154 bytes --]

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

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

* Re: [igt-dev] [PATCH i-g-t 2/2] fbdev: Force module load
  2020-10-30 11:36 ` [igt-dev] [PATCH i-g-t 2/2] fbdev: Force module load Chris Wilson
@ 2020-10-30 13:04   ` Petri Latvala
  0 siblings, 0 replies; 5+ messages in thread
From: Petri Latvala @ 2020-10-30 13:04 UTC (permalink / raw)
  To: Chris Wilson; +Cc: igt-dev

On Fri, Oct 30, 2020 at 11:36:53AM +0000, Chris Wilson wrote:
> If there are no /dev/fbN, force loading of the first available drm
> module and try again.
> 
> v2: Use drm_load_module() directly
> 
> Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/2582
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> Cc: Petri Latvala <petri.latvala@intel.com>


Nice.

For the series,
Reviewed-by: Petri Latvala <petri.latvala@intel.com>


> ---
>  tests/fbdev.c | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/tests/fbdev.c b/tests/fbdev.c
> index fe320b14f..e5efeb93d 100644
> --- a/tests/fbdev.c
> +++ b/tests/fbdev.c
> @@ -43,8 +43,16 @@ igt_main
>  	struct fb_fix_screeninfo fix_info;
>  	int fd = -1;
>  
> +	/*
> +	 * Should this test focus on the fbdev independent of any drm driver,
> +	 * or should it look for fbdev of a particular device?
> +	 */
>  	igt_fixture {
>  		fd = open("/dev/fb0", O_RDWR);
> +		if (fd < 0) {
> +			drm_load_module(DRIVER_ANY);
> +			fd = open("/dev/fb0", O_RDWR);
> +		}
>  		igt_require_f(fd != -1, "/dev/fb0\n");
>  
>  		igt_require(ioctl(fd, FBIOGET_VSCREENINFO, &var_info) == 0);
> -- 
> 2.28.0
> 
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] lib: Export drm_load_module()
  2020-10-30 11:36 [igt-dev] [PATCH i-g-t 1/2] lib: Export drm_load_module() Chris Wilson
  2020-10-30 11:36 ` [igt-dev] [PATCH i-g-t 2/2] fbdev: Force module load Chris Wilson
  2020-10-30 12:37 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] lib: Export drm_load_module() Patchwork
@ 2020-10-30 14:33 ` Patchwork
  2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2020-10-30 14:33 UTC (permalink / raw)
  To: Chris Wilson; +Cc: igt-dev


[-- Attachment #1.1: Type: text/plain, Size: 20385 bytes --]

== Series Details ==

Series: series starting with [i-g-t,1/2] lib: Export drm_load_module()
URL   : https://patchwork.freedesktop.org/series/83272/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_9227_full -> IGTPW_5110_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@perf_pmu@rc6-runtime-pm-long:
    - shard-hsw:          [PASS][1] -> [INCOMPLETE][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-hsw8/igt@perf_pmu@rc6-runtime-pm-long.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-hsw6/igt@perf_pmu@rc6-runtime-pm-long.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_userptr_blits@unsync-unmap-cycles:
    - shard-hsw:          [PASS][3] -> [FAIL][4] ([i915#1888])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-hsw6/igt@gem_userptr_blits@unsync-unmap-cycles.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-hsw8/igt@gem_userptr_blits@unsync-unmap-cycles.html
    - shard-snb:          [PASS][5] -> [INCOMPLETE][6] ([i915#82])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-snb6/igt@gem_userptr_blits@unsync-unmap-cycles.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-snb2/igt@gem_userptr_blits@unsync-unmap-cycles.html

  * igt@i915_module_load@reload:
    - shard-tglb:         [PASS][7] -> [DMESG-WARN][8] ([i915#1982]) +1 similar issue
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-tglb5/igt@i915_module_load@reload.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-tglb1/igt@i915_module_load@reload.html

  * igt@i915_pm_rc6_residency@rc6-idle:
    - shard-hsw:          [PASS][9] -> [WARN][10] ([i915#1519])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-hsw4/igt@i915_pm_rc6_residency@rc6-idle.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-hsw7/igt@i915_pm_rc6_residency@rc6-idle.html

  * igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge:
    - shard-glk:          [PASS][11] -> [DMESG-WARN][12] ([i915#1982]) +4 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-glk9/igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-glk6/igt@kms_cursor_edge_walk@pipe-b-256x256-left-edge.html

  * igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic:
    - shard-tglb:         [PASS][13] -> [FAIL][14] ([i915#2346])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-tglb3/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-tglb2/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html

  * igt@kms_cursor_legacy@short-flip-before-cursor-toggle:
    - shard-apl:          [PASS][15] -> [DMESG-WARN][16] ([i915#1635] / [i915#1982]) +4 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-apl3/igt@kms_cursor_legacy@short-flip-before-cursor-toggle.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-apl3/igt@kms_cursor_legacy@short-flip-before-cursor-toggle.html

  * igt@kms_flip@flip-vs-suspend@c-dp1:
    - shard-kbl:          [PASS][17] -> [DMESG-WARN][18] ([i915#180])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-kbl2/igt@kms_flip@flip-vs-suspend@c-dp1.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-kbl1/igt@kms_flip@flip-vs-suspend@c-dp1.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c:
    - shard-iclb:         [PASS][19] -> [INCOMPLETE][20] ([i915#1185])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-iclb6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-iclb3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html

  * igt@kms_psr@psr2_dpms:
    - shard-iclb:         [PASS][21] -> [SKIP][22] ([fdo#109441]) +1 similar issue
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-iclb2/igt@kms_psr@psr2_dpms.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-iclb1/igt@kms_psr@psr2_dpms.html

  * igt@kms_setmode@basic:
    - shard-kbl:          [PASS][23] -> [FAIL][24] ([i915#31])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-kbl6/igt@kms_setmode@basic.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-kbl6/igt@kms_setmode@basic.html

  * igt@kms_universal_plane@universal-plane-gen9-features-pipe-a:
    - shard-kbl:          [PASS][25] -> [DMESG-WARN][26] ([i915#1982]) +6 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-kbl3/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-kbl4/igt@kms_universal_plane@universal-plane-gen9-features-pipe-a.html

  * igt@perf@invalid-oa-exponent:
    - shard-hsw:          [PASS][27] -> [SKIP][28] ([fdo#109271])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-hsw2/igt@perf@invalid-oa-exponent.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-hsw5/igt@perf@invalid-oa-exponent.html
    - shard-iclb:         [PASS][29] -> [SKIP][30] ([i915#1354])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-iclb5/igt@perf@invalid-oa-exponent.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-iclb1/igt@perf@invalid-oa-exponent.html
    - shard-glk:          [PASS][31] -> [SKIP][32] ([fdo#109271] / [i915#1354])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-glk7/igt@perf@invalid-oa-exponent.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-glk7/igt@perf@invalid-oa-exponent.html
    - shard-tglb:         [PASS][33] -> [SKIP][34] ([i915#1354])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-tglb8/igt@perf@invalid-oa-exponent.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-tglb2/igt@perf@invalid-oa-exponent.html
    - shard-apl:          [PASS][35] -> [SKIP][36] ([fdo#109271] / [i915#1354] / [i915#1635])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-apl2/igt@perf@invalid-oa-exponent.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-apl6/igt@perf@invalid-oa-exponent.html
    - shard-kbl:          [PASS][37] -> [SKIP][38] ([fdo#109271] / [i915#1354])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-kbl2/igt@perf@invalid-oa-exponent.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-kbl3/igt@perf@invalid-oa-exponent.html

  
#### Possible fixes ####

  * igt@core_hotunplug@hotrebind-lateclose:
    - shard-snb:          [INCOMPLETE][39] ([i915#82]) -> [PASS][40]
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-snb7/igt@core_hotunplug@hotrebind-lateclose.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-snb7/igt@core_hotunplug@hotrebind-lateclose.html

  * igt@fbdev@info:
    - shard-iclb:         [SKIP][41] ([i915#2582]) -> [PASS][42]
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-iclb7/igt@fbdev@info.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-iclb1/igt@fbdev@info.html
    - shard-snb:          [SKIP][43] ([fdo#109271]) -> [PASS][44]
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-snb2/igt@fbdev@info.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-snb5/igt@fbdev@info.html
    - shard-hsw:          [SKIP][45] ([fdo#109271]) -> [PASS][46]
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-hsw4/igt@fbdev@info.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-hsw4/igt@fbdev@info.html
    - shard-tglb:         [SKIP][47] ([i915#2582]) -> [PASS][48]
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-tglb1/igt@fbdev@info.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-tglb8/igt@fbdev@info.html
    - shard-kbl:          [SKIP][49] ([fdo#109271]) -> [PASS][50]
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-kbl3/igt@fbdev@info.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-kbl4/igt@fbdev@info.html
    - shard-apl:          [SKIP][51] ([fdo#109271] / [i915#1635]) -> [PASS][52]
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-apl6/igt@fbdev@info.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-apl3/igt@fbdev@info.html
    - shard-glk:          [SKIP][53] ([fdo#109271]) -> [PASS][54]
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-glk9/igt@fbdev@info.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-glk2/igt@fbdev@info.html

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

  * igt@gem_exec_reloc@basic-many-active@rcs0:
    - shard-glk:          [FAIL][57] ([i915#2389]) -> [PASS][58]
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-glk6/igt@gem_exec_reloc@basic-many-active@rcs0.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-glk4/igt@gem_exec_reloc@basic-many-active@rcs0.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-iclb:         [FAIL][59] ([i915#454]) -> [PASS][60]
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-iclb7/igt@i915_pm_dc@dc6-dpms.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_pm_rc6_residency@rc6-fence:
    - shard-iclb:         [WARN][61] ([i915#1515]) -> [PASS][62]
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-iclb5/igt@i915_pm_rc6_residency@rc6-fence.html
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-iclb7/igt@i915_pm_rc6_residency@rc6-fence.html

  * {igt@kms_async_flips@async-flip-with-page-flip-events}:
    - shard-kbl:          [FAIL][63] ([i915#2521]) -> [PASS][64] +1 similar issue
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-kbl7/igt@kms_async_flips@async-flip-with-page-flip-events.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-kbl2/igt@kms_async_flips@async-flip-with-page-flip-events.html
    - shard-glk:          [FAIL][65] ([i915#2521]) -> [PASS][66]
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-glk3/igt@kms_async_flips@async-flip-with-page-flip-events.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-glk1/igt@kms_async_flips@async-flip-with-page-flip-events.html
    - shard-apl:          [FAIL][67] ([i915#1635] / [i915#2521]) -> [PASS][68]
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-apl1/igt@kms_async_flips@async-flip-with-page-flip-events.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-apl4/igt@kms_async_flips@async-flip-with-page-flip-events.html

  * {igt@kms_async_flips@test-time-stamp}:
    - shard-tglb:         [FAIL][69] ([i915#2597]) -> [PASS][70]
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-tglb1/igt@kms_async_flips@test-time-stamp.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-tglb1/igt@kms_async_flips@test-time-stamp.html

  * igt@kms_cursor_crc@pipe-c-cursor-dpms:
    - shard-glk:          [FAIL][71] ([i915#54]) -> [PASS][72]
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-glk1/igt@kms_cursor_crc@pipe-c-cursor-dpms.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-glk5/igt@kms_cursor_crc@pipe-c-cursor-dpms.html
    - shard-apl:          [FAIL][73] ([i915#1635] / [i915#54]) -> [PASS][74]
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-apl3/igt@kms_cursor_crc@pipe-c-cursor-dpms.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-dpms.html
    - shard-kbl:          [FAIL][75] ([i915#54]) -> [PASS][76]
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-kbl3/igt@kms_cursor_crc@pipe-c-cursor-dpms.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-kbl7/igt@kms_cursor_crc@pipe-c-cursor-dpms.html

  * igt@kms_cursor_edge_walk@pipe-b-64x64-left-edge:
    - shard-apl:          [DMESG-WARN][77] ([i915#1635] / [i915#1982]) -> [PASS][78] +3 similar issues
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-apl6/igt@kms_cursor_edge_walk@pipe-b-64x64-left-edge.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-apl6/igt@kms_cursor_edge_walk@pipe-b-64x64-left-edge.html

  * igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge:
    - shard-tglb:         [DMESG-WARN][79] ([i915#1982]) -> [PASS][80] +2 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-tglb8/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-tglb7/igt@kms_cursor_edge_walk@pipe-d-128x128-right-edge.html

  * igt@kms_cursor_legacy@cursor-vs-flip-toggle:
    - shard-hsw:          [FAIL][81] ([i915#2370]) -> [PASS][82]
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-hsw1/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-hsw8/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
    - shard-glk:          [DMESG-WARN][83] ([i915#1982]) -> [PASS][84] +9 similar issues
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-glk2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-glk1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1:
    - shard-apl:          [FAIL][85] ([i915#1635] / [i915#79]) -> [PASS][86]
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-apl4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-apl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp1.html

  * igt@kms_flip@flip-vs-suspend@a-dp1:
    - shard-kbl:          [DMESG-WARN][87] ([i915#180]) -> [PASS][88]
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-kbl2/igt@kms_flip@flip-vs-suspend@a-dp1.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-kbl1/igt@kms_flip@flip-vs-suspend@a-dp1.html

  * igt@kms_hdmi_inject@inject-audio:
    - shard-tglb:         [SKIP][89] ([i915#433]) -> [PASS][90]
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-tglb3/igt@kms_hdmi_inject@inject-audio.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-tglb2/igt@kms_hdmi_inject@inject-audio.html

  * igt@kms_plane_lowres@pipe-b-tiling-y:
    - shard-kbl:          [DMESG-WARN][91] ([i915#1982]) -> [PASS][92] +3 similar issues
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-kbl7/igt@kms_plane_lowres@pipe-b-tiling-y.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-kbl3/igt@kms_plane_lowres@pipe-b-tiling-y.html

  * igt@kms_psr2_su@page_flip:
    - shard-iclb:         [SKIP][93] ([fdo#109642] / [fdo#111068]) -> [PASS][94]
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-iclb6/igt@kms_psr2_su@page_flip.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-iclb2/igt@kms_psr2_su@page_flip.html

  * igt@kms_psr@psr2_primary_render:
    - shard-iclb:         [SKIP][95] ([fdo#109441]) -> [PASS][96]
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-iclb7/igt@kms_psr@psr2_primary_render.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-iclb2/igt@kms_psr@psr2_primary_render.html

  
#### Warnings ####

  * igt@core_hotunplug@hotrebind-lateclose:
    - shard-hsw:          [FAIL][97] -> [WARN][98] ([i915#2283])
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-hsw7/igt@core_hotunplug@hotrebind-lateclose.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-hsw5/igt@core_hotunplug@hotrebind-lateclose.html

  * igt@gem_tiled_swapping@non-threaded:
    - shard-iclb:         [SKIP][99] ([i915#2612]) -> [FAIL][100] ([i915#183])
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9227/shard-iclb1/igt@gem_tiled_swapping@non-threaded.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/shard-iclb2/igt@gem_tiled_swapping@non-threaded.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#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [i915#1185]: https://gitlab.freedesktop.org/drm/intel/issues/1185
  [i915#1354]: https://gitlab.freedesktop.org/drm/intel/issues/1354
  [i915#1515]: https://gitlab.freedesktop.org/drm/intel/issues/1515
  [i915#1519]: https://gitlab.freedesktop.org/drm/intel/issues/1519
  [i915#1635]: https://gitlab.freedesktop.org/drm/intel/issues/1635
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#183]: https://gitlab.freedesktop.org/drm/intel/issues/183
  [i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
  [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
  [i915#2283]: https://gitlab.freedesktop.org/drm/intel/issues/2283
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2370]: https://gitlab.freedesktop.org/drm/intel/issues/2370
  [i915#2389]: https://gitlab.freedesktop.org/drm/intel/issues/2389
  [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#2597]: https://gitlab.freedesktop.org/drm/intel/issues/2597
  [i915#2612]: https://gitlab.freedesktop.org/drm/intel/issues/2612
  [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
  [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
  [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
  [i915#82]: https://gitlab.freedesktop.org/drm/intel/issues/82


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

  Missing    (3): pig-skl-6260u pig-glk-j5005 pig-icl-1065g7 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5828 -> IGTPW_5110
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_9227: d6f64cb8b9ef0b9235b08cc6e3ec30db8ea197d2 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_5110: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5110/index.html
  IGT_5828: db972bdaab8ada43b742bc9621bb0fc9d56a6fc6 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

[-- Attachment #1.2: Type: text/html, Size: 24269 bytes --]

[-- Attachment #2: Type: text/plain, Size: 154 bytes --]

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

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

end of thread, other threads:[~2020-10-30 14:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-30 11:36 [igt-dev] [PATCH i-g-t 1/2] lib: Export drm_load_module() Chris Wilson
2020-10-30 11:36 ` [igt-dev] [PATCH i-g-t 2/2] fbdev: Force module load Chris Wilson
2020-10-30 13:04   ` Petri Latvala
2020-10-30 12:37 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] lib: Export drm_load_module() Patchwork
2020-10-30 14:33 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork

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