intel-gfx.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [Intel-gfx] [PATCH] Revert "drm/vgem: Implement mmap as GEM object function"
@ 2021-07-13  9:02 Thomas Zimmermann
  2021-07-13  9:18 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
  2021-07-13  9:49 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
  0 siblings, 2 replies; 3+ messages in thread
From: Thomas Zimmermann @ 2021-07-13  9:02 UTC (permalink / raw)
  To: airlied, daniel, christian.koenig, ville.syrjala, melissa.srw,
	jgg, lee.jones, chris, miaoqinglang
  Cc: Daniel Vetter, intel-gfx, Thomas Zimmermann, dri-devel, Gerd Hoffmann

Commit 375cca1cfeb5 ("drm/vgem: Implement mmap as GEM object function")
broke severla IGT tests in vgem_basic. [1] Attempts to fix the issue
have not worked out so far. [2][3] Revert the original patch for now.

Note that there is a patch that converts vgem to shmem helpers. [4]
Merging this change would be preferable to modifying vgem's mmap code.

[1] https://intel-gfx-ci.01.org/tree/drm-tip/igt@vgem_basic@unload.html
[2] https://lore.kernel.org/intel-gfx/20210709154256.12005-1-tzimmermann@suse.de/
[3] https://lore.kernel.org/intel-gfx/20210712123321.3658-1-tzimmermann@suse.de/
[4] https://patchwork.freedesktop.org/series/90671/

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Fixes: 375cca1cfeb5 ("drm/vgem: Implement mmap as GEM object function")
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Christian König <christian.koenig@amd.com>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: "Christian König" <christian.koenig@amd.com>
Cc: Jason Gunthorpe <jgg@ziepe.ca>
Cc: Melissa Wen <melissa.srw@gmail.com>
Cc: Qinglang Miao <miaoqinglang@huawei.com>
Cc: Gerd Hoffmann <kraxel@redhat.com>
---
 drivers/gpu/drm/vgem/vgem_drv.c | 46 +++++++++++++++++++++++++++++----
 1 file changed, 41 insertions(+), 5 deletions(-)

diff --git a/drivers/gpu/drm/vgem/vgem_drv.c b/drivers/gpu/drm/vgem/vgem_drv.c
index df634aa52638..bf38a7e319d1 100644
--- a/drivers/gpu/drm/vgem/vgem_drv.c
+++ b/drivers/gpu/drm/vgem/vgem_drv.c
@@ -239,7 +239,32 @@ static struct drm_ioctl_desc vgem_ioctls[] = {
 	DRM_IOCTL_DEF_DRV(VGEM_FENCE_SIGNAL, vgem_fence_signal_ioctl, DRM_RENDER_ALLOW),
 };

-DEFINE_DRM_GEM_FOPS(vgem_driver_fops);
+static int vgem_mmap(struct file *filp, struct vm_area_struct *vma)
+{
+	unsigned long flags = vma->vm_flags;
+	int ret;
+
+	ret = drm_gem_mmap(filp, vma);
+	if (ret)
+		return ret;
+
+	/* Keep the WC mmaping set by drm_gem_mmap() but our pages
+	 * are ordinary and not special.
+	 */
+	vma->vm_flags = flags | VM_DONTEXPAND | VM_DONTDUMP;
+	return 0;
+}
+
+static const struct file_operations vgem_driver_fops = {
+	.owner		= THIS_MODULE,
+	.open		= drm_open,
+	.mmap		= vgem_mmap,
+	.poll		= drm_poll,
+	.read		= drm_read,
+	.unlocked_ioctl = drm_ioctl,
+	.compat_ioctl	= drm_compat_ioctl,
+	.release	= drm_release,
+};

 static struct page **vgem_pin_pages(struct drm_vgem_gem_object *bo)
 {
@@ -362,12 +387,24 @@ static void vgem_prime_vunmap(struct drm_gem_object *obj, struct dma_buf_map *ma
 	vgem_unpin_pages(bo);
 }

-static int vgem_prime_mmap(struct drm_gem_object *obj, struct vm_area_struct *vma)
+static int vgem_prime_mmap(struct drm_gem_object *obj,
+			   struct vm_area_struct *vma)
 {
+	int ret;
+
+	if (obj->size < vma->vm_end - vma->vm_start)
+		return -EINVAL;
+
+	if (!obj->filp)
+		return -ENODEV;
+
+	ret = call_mmap(obj->filp, vma);
+	if (ret)
+		return ret;
+
 	vma_set_file(vma, obj->filp);
 	vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
 	vma->vm_page_prot = pgprot_writecombine(vm_get_page_prot(vma->vm_flags));
-	vma->vm_page_prot = pgprot_decrypted(vma->vm_page_prot);

 	return 0;
 }
@@ -379,7 +416,6 @@ static const struct drm_gem_object_funcs vgem_gem_object_funcs = {
 	.get_sg_table = vgem_prime_get_sg_table,
 	.vmap = vgem_prime_vmap,
 	.vunmap = vgem_prime_vunmap,
-	.mmap = vgem_prime_mmap,
 	.vm_ops = &vgem_gem_vm_ops,
 };

@@ -397,7 +433,7 @@ static const struct drm_driver vgem_driver = {
 	.prime_fd_to_handle = drm_gem_prime_fd_to_handle,
 	.gem_prime_import = vgem_prime_import,
 	.gem_prime_import_sg_table = vgem_prime_import_sg_table,
-	.gem_prime_mmap = drm_gem_prime_mmap,
+	.gem_prime_mmap = vgem_prime_mmap,

 	.name	= DRIVER_NAME,
 	.desc	= DRIVER_DESC,
--
2.32.0

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

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

* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for Revert "drm/vgem: Implement mmap as GEM object function"
  2021-07-13  9:02 [Intel-gfx] [PATCH] Revert "drm/vgem: Implement mmap as GEM object function" Thomas Zimmermann
@ 2021-07-13  9:18 ` Patchwork
  2021-07-13  9:49 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
  1 sibling, 0 replies; 3+ messages in thread
From: Patchwork @ 2021-07-13  9:18 UTC (permalink / raw)
  To: Thomas Zimmermann; +Cc: intel-gfx

== Series Details ==

Series: Revert "drm/vgem: Implement mmap as GEM object function"
URL   : https://patchwork.freedesktop.org/series/92467/
State : warning

== Summary ==

$ dim checkpatch origin/drm-tip
80530052a67f Revert "drm/vgem: Implement mmap as GEM object function"
-:17: WARNING:COMMIT_LOG_LONG_LINE: Possible unwrapped commit description (prefer a maximum 75 chars per line)
#17: 
[2] https://lore.kernel.org/intel-gfx/20210709154256.12005-1-tzimmermann@suse.de/

total: 0 errors, 1 warnings, 0 checks, 74 lines checked


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

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

* [Intel-gfx] ✗ Fi.CI.BAT: failure for Revert "drm/vgem: Implement mmap as GEM object function"
  2021-07-13  9:02 [Intel-gfx] [PATCH] Revert "drm/vgem: Implement mmap as GEM object function" Thomas Zimmermann
  2021-07-13  9:18 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
@ 2021-07-13  9:49 ` Patchwork
  1 sibling, 0 replies; 3+ messages in thread
From: Patchwork @ 2021-07-13  9:49 UTC (permalink / raw)
  To: Thomas Zimmermann; +Cc: intel-gfx


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

== Series Details ==

Series: Revert "drm/vgem: Implement mmap as GEM object function"
URL   : https://patchwork.freedesktop.org/series/92467/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_10337 -> Patchwork_20584
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_exec_suspend@basic-s3:
    - fi-kbl-8809g:       [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-kbl-8809g/igt@gem_exec_suspend@basic-s3.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-kbl-8809g/igt@gem_exec_suspend@basic-s3.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@amdgpu/amd_basic@cs-compute:
    - fi-cfl-guc:         NOTRUN -> [SKIP][3] ([fdo#109271]) +17 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-cfl-guc/igt@amdgpu/amd_basic@cs-compute.html
    - fi-skl-guc:         NOTRUN -> [SKIP][4] ([fdo#109271]) +17 similar issues
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-skl-guc/igt@amdgpu/amd_basic@cs-compute.html
    - fi-elk-e7500:       NOTRUN -> [SKIP][5] ([fdo#109271]) +18 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-elk-e7500/igt@amdgpu/amd_basic@cs-compute.html

  * igt@amdgpu/amd_basic@cs-gfx:
    - fi-hsw-4770:        NOTRUN -> [SKIP][6] ([fdo#109271] / [fdo#109315]) +17 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-hsw-4770/igt@amdgpu/amd_basic@cs-gfx.html
    - fi-skl-6700k2:      NOTRUN -> [SKIP][7] ([fdo#109271]) +17 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-skl-6700k2/igt@amdgpu/amd_basic@cs-gfx.html
    - fi-kbl-soraka:      NOTRUN -> [SKIP][8] ([fdo#109271]) +9 similar issues
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-kbl-soraka/igt@amdgpu/amd_basic@cs-gfx.html

  * igt@amdgpu/amd_basic@cs-sdma:
    - fi-kbl-guc:         NOTRUN -> [SKIP][9] ([fdo#109271]) +17 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-kbl-guc/igt@amdgpu/amd_basic@cs-sdma.html
    - fi-kbl-7500u:       NOTRUN -> [SKIP][10] ([fdo#109271]) +17 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-kbl-7500u/igt@amdgpu/amd_basic@cs-sdma.html

  * igt@amdgpu/amd_basic@memory-alloc:
    - fi-cml-u2:          NOTRUN -> [SKIP][11] ([fdo#109315]) +17 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-cml-u2/igt@amdgpu/amd_basic@memory-alloc.html

  * igt@amdgpu/amd_basic@query-info:
    - fi-bsw-kefka:       NOTRUN -> [SKIP][12] ([fdo#109271]) +17 similar issues
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-bsw-kefka/igt@amdgpu/amd_basic@query-info.html
    - fi-glk-dsi:         NOTRUN -> [SKIP][13] ([fdo#109271]) +17 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-glk-dsi/igt@amdgpu/amd_basic@query-info.html
    - fi-tgl-y:           NOTRUN -> [SKIP][14] ([fdo#109315])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-tgl-y/igt@amdgpu/amd_basic@query-info.html

  * igt@amdgpu/amd_basic@semaphore:
    - fi-icl-y:           NOTRUN -> [SKIP][15] ([fdo#109315]) +17 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-icl-y/igt@amdgpu/amd_basic@semaphore.html
    - fi-bsw-nick:        NOTRUN -> [SKIP][16] ([fdo#109271]) +17 similar issues
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-bsw-nick/igt@amdgpu/amd_basic@semaphore.html
    - fi-bdw-5557u:       NOTRUN -> [SKIP][17] ([fdo#109271]) +17 similar issues
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-bdw-5557u/igt@amdgpu/amd_basic@semaphore.html

  * igt@amdgpu/amd_basic@userptr:
    - fi-bxt-dsi:         NOTRUN -> [SKIP][18] ([fdo#109271]) +17 similar issues
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-bxt-dsi/igt@amdgpu/amd_basic@userptr.html

  * igt@amdgpu/amd_cs_nop@fork-compute0:
    - fi-ivb-3770:        NOTRUN -> [SKIP][19] ([fdo#109271]) +18 similar issues
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-ivb-3770/igt@amdgpu/amd_cs_nop@fork-compute0.html

  * igt@amdgpu/amd_cs_nop@fork-gfx0:
    - fi-tgl-y:           NOTRUN -> [SKIP][20] ([fdo#109315] / [i915#2575]) +16 similar issues
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-tgl-y/igt@amdgpu/amd_cs_nop@fork-gfx0.html

  * igt@amdgpu/amd_cs_nop@nop-gfx0:
    - fi-bwr-2160:        NOTRUN -> [SKIP][21] ([fdo#109271]) +18 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-bwr-2160/igt@amdgpu/amd_cs_nop@nop-gfx0.html

  * igt@amdgpu/amd_cs_nop@sync-fork-gfx0:
    - fi-cfl-8700k:       NOTRUN -> [SKIP][22] ([fdo#109271]) +17 similar issues
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-cfl-8700k/igt@amdgpu/amd_cs_nop@sync-fork-gfx0.html

  * igt@amdgpu/amd_cs_nop@sync-gfx0:
    - fi-kbl-7567u:       NOTRUN -> [SKIP][23] ([fdo#109271]) +17 similar issues
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-kbl-7567u/igt@amdgpu/amd_cs_nop@sync-gfx0.html

  * igt@amdgpu/amd_prime@amd-to-i915:
    - fi-kbl-x1275:       NOTRUN -> [SKIP][24] ([fdo#109271]) +17 similar issues
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-kbl-x1275/igt@amdgpu/amd_prime@amd-to-i915.html
    - fi-pnv-d510:        NOTRUN -> [SKIP][25] ([fdo#109271]) +18 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-pnv-d510/igt@amdgpu/amd_prime@amd-to-i915.html

  * igt@amdgpu/amd_prime@i915-to-amd:
    - fi-snb-2520m:       NOTRUN -> [SKIP][26] ([fdo#109271]) +18 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-snb-2520m/igt@amdgpu/amd_prime@i915-to-amd.html

  * igt@gem_exec_suspend@basic-s0:
    - fi-cfl-8109u:       [PASS][27] -> [INCOMPLETE][28] ([i915#155])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-cfl-8109u/igt@gem_exec_suspend@basic-s0.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-cfl-8109u/igt@gem_exec_suspend@basic-s0.html

  * igt@i915_selftest@live@gt_lrc:
    - fi-tgl-y:           NOTRUN -> [DMESG-FAIL][29] ([i915#2373])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-tgl-y/igt@i915_selftest@live@gt_lrc.html

  * igt@i915_selftest@live@gt_pm:
    - fi-tgl-y:           NOTRUN -> [DMESG-FAIL][30] ([i915#1759])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-tgl-y/igt@i915_selftest@live@gt_pm.html
    - fi-kbl-soraka:      NOTRUN -> [DMESG-FAIL][31] ([i915#1886] / [i915#2291])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html

  
#### Possible fixes ####

  * igt@vgem_basic@unload:
    - fi-kbl-7567u:       [INCOMPLETE][32] ([i915#3744]) -> [PASS][33]
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-kbl-7567u/igt@vgem_basic@unload.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-kbl-7567u/igt@vgem_basic@unload.html
    - fi-elk-e7500:       [INCOMPLETE][34] ([i915#3744]) -> [PASS][35]
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-elk-e7500/igt@vgem_basic@unload.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-elk-e7500/igt@vgem_basic@unload.html
    - fi-skl-6700k2:      [INCOMPLETE][36] ([i915#3744]) -> [PASS][37]
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-skl-6700k2/igt@vgem_basic@unload.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-skl-6700k2/igt@vgem_basic@unload.html
    - {fi-ehl-2}:         [INCOMPLETE][38] ([i915#3744]) -> [PASS][39]
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-ehl-2/igt@vgem_basic@unload.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-ehl-2/igt@vgem_basic@unload.html
    - fi-skl-guc:         [INCOMPLETE][40] ([i915#3744]) -> [PASS][41]
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-skl-guc/igt@vgem_basic@unload.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-skl-guc/igt@vgem_basic@unload.html
    - fi-cfl-guc:         [INCOMPLETE][42] ([i915#3744]) -> [PASS][43]
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-cfl-guc/igt@vgem_basic@unload.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-cfl-guc/igt@vgem_basic@unload.html
    - fi-hsw-4770:        [INCOMPLETE][44] ([i915#3744]) -> [PASS][45]
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-hsw-4770/igt@vgem_basic@unload.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-hsw-4770/igt@vgem_basic@unload.html
    - {fi-jsl-1}:         [INCOMPLETE][46] ([i915#3744]) -> [PASS][47]
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-jsl-1/igt@vgem_basic@unload.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-jsl-1/igt@vgem_basic@unload.html
    - fi-cml-u2:          [INCOMPLETE][48] ([i915#3744]) -> [PASS][49]
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-cml-u2/igt@vgem_basic@unload.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-cml-u2/igt@vgem_basic@unload.html
    - fi-bxt-dsi:         [INCOMPLETE][50] ([i915#3744]) -> [PASS][51]
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-bxt-dsi/igt@vgem_basic@unload.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-bxt-dsi/igt@vgem_basic@unload.html
    - {fi-tgl-1115g4}:    [INCOMPLETE][52] ([i915#3744]) -> [PASS][53]
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-tgl-1115g4/igt@vgem_basic@unload.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-tgl-1115g4/igt@vgem_basic@unload.html
    - fi-kbl-soraka:      [INCOMPLETE][54] ([i915#3744]) -> [PASS][55]
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-kbl-soraka/igt@vgem_basic@unload.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-kbl-soraka/igt@vgem_basic@unload.html
    - fi-bsw-nick:        [INCOMPLETE][56] ([i915#3744]) -> [PASS][57]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-bsw-nick/igt@vgem_basic@unload.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-bsw-nick/igt@vgem_basic@unload.html
    - {fi-dg1-1}:         [INCOMPLETE][58] ([i915#3717] / [i915#3744]) -> [PASS][59]
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-dg1-1/igt@vgem_basic@unload.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-dg1-1/igt@vgem_basic@unload.html
    - fi-bdw-5557u:       [INCOMPLETE][60] ([i915#3744]) -> [PASS][61]
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-bdw-5557u/igt@vgem_basic@unload.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-bdw-5557u/igt@vgem_basic@unload.html
    - fi-bwr-2160:        [INCOMPLETE][62] ([i915#3744]) -> [PASS][63]
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-bwr-2160/igt@vgem_basic@unload.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-bwr-2160/igt@vgem_basic@unload.html
    - fi-bsw-kefka:       [INCOMPLETE][64] ([i915#3744]) -> [PASS][65]
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-bsw-kefka/igt@vgem_basic@unload.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-bsw-kefka/igt@vgem_basic@unload.html
    - fi-kbl-guc:         [INCOMPLETE][66] ([i915#3744]) -> [PASS][67]
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-kbl-guc/igt@vgem_basic@unload.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-kbl-guc/igt@vgem_basic@unload.html
    - fi-kbl-7500u:       [INCOMPLETE][68] ([i915#3744]) -> [PASS][69]
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-kbl-7500u/igt@vgem_basic@unload.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-kbl-7500u/igt@vgem_basic@unload.html
    - fi-kbl-x1275:       [INCOMPLETE][70] ([i915#3744]) -> [PASS][71]
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-kbl-x1275/igt@vgem_basic@unload.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-kbl-x1275/igt@vgem_basic@unload.html
    - fi-pnv-d510:        [INCOMPLETE][72] ([i915#299] / [i915#3744]) -> [PASS][73]
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-pnv-d510/igt@vgem_basic@unload.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-pnv-d510/igt@vgem_basic@unload.html
    - fi-tgl-y:           [INCOMPLETE][74] ([i915#3744]) -> [PASS][75]
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-tgl-y/igt@vgem_basic@unload.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-tgl-y/igt@vgem_basic@unload.html
    - {fi-hsw-gt1}:       [INCOMPLETE][76] ([i915#3744]) -> [PASS][77]
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-hsw-gt1/igt@vgem_basic@unload.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-hsw-gt1/igt@vgem_basic@unload.html
    - {fi-tgl-dsi}:       [INCOMPLETE][78] ([i915#3744]) -> [PASS][79]
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-tgl-dsi/igt@vgem_basic@unload.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-tgl-dsi/igt@vgem_basic@unload.html
    - fi-icl-y:           [INCOMPLETE][80] ([i915#3744]) -> [PASS][81]
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-icl-y/igt@vgem_basic@unload.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-icl-y/igt@vgem_basic@unload.html
    - fi-cfl-8700k:       [INCOMPLETE][82] ([i915#3744]) -> [PASS][83]
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-cfl-8700k/igt@vgem_basic@unload.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-cfl-8700k/igt@vgem_basic@unload.html
    - fi-snb-2520m:       [INCOMPLETE][84] ([i915#3744]) -> [PASS][85]
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-snb-2520m/igt@vgem_basic@unload.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-snb-2520m/igt@vgem_basic@unload.html
    - fi-ivb-3770:        [INCOMPLETE][86] ([i915#3744]) -> [PASS][87]
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-ivb-3770/igt@vgem_basic@unload.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-ivb-3770/igt@vgem_basic@unload.html
    - fi-glk-dsi:         [INCOMPLETE][88] ([i915#3744]) -> [PASS][89]
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-glk-dsi/igt@vgem_basic@unload.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-glk-dsi/igt@vgem_basic@unload.html

  
#### Warnings ####

  * igt@runner@aborted:
    - fi-kbl-8809g:       [FAIL][90] ([i915#2722] / [i915#3363] / [i915#3744]) -> [FAIL][91] ([i915#180] / [i915#3363])
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10337/fi-kbl-8809g/igt@runner@aborted.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_20584/fi-kbl-8809g/igt@runner@aborted.html

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

  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
  [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
  [i915#1759]: https://gitlab.freedesktop.org/drm/intel/issues/1759
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
  [i915#2291]: https://gitlab.freedesktop.org/drm/intel/issues/2291
  [i915#2373]: https://gitlab.freedesktop.org/drm/intel/issues/2373
  [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
  [i915#2722]: https://gitlab.freedesktop.org/drm/intel/issues/2722
  [i915#299]: https://gitlab.freedesktop.org/drm/intel/issues/299
  [i915#3363]: https://gitlab.freedesktop.org/drm/intel/issues/3363
  [i915#3717]: https://gitlab.freedesktop.org/drm/intel/issues/3717
  [i915#3744]: https://gitlab.freedesktop.org/drm/intel/issues/3744


Participating hosts (37 -> 35)
------------------------------

  Missing    (2): fi-bdw-samus fi-ilk-650 


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

  * Linux: CI_DRM_10337 -> Patchwork_20584

  CI-20190529: 20190529
  CI_DRM_10337: 52d04d593394807e36200b0875a6e91c8d6af770 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_6135: 3bf28f9dffd41b85c262d4e6664ffbdf5b7d9a93 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  Patchwork_20584: 80530052a67fb8e4c45f6335191190850e8e0bd2 @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

80530052a67f Revert "drm/vgem: Implement mmap as GEM object function"

== Logs ==

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

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

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

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

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

end of thread, other threads:[~2021-07-13  9:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-13  9:02 [Intel-gfx] [PATCH] Revert "drm/vgem: Implement mmap as GEM object function" Thomas Zimmermann
2021-07-13  9:18 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
2021-07-13  9:49 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " 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).