* [igt-dev] [PATCH i-g-t] Revert "tests/core_unauth_vs_render: new test for the relaxed DRM_AUTH handling"
@ 2019-05-15 10:19 Petri Latvala
2019-05-15 10:45 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Petri Latvala @ 2019-05-15 10:19 UTC (permalink / raw)
To: igt-dev; +Cc: Petri Latvala, Emil Velikov
The kernel patch for relaxed DRM_AUTH handling caused a regression,
highlighting bug in the RADV implementation, and was reverted. The
patch will be reinstated, likely in different form, although until
then disable the test.
See the thread for details.
https://lists.freedesktop.org/archives/dri-devel/2019-April/215018.html
This reverts commit 90f78ac704718a4dc089ca99041f032191c6f8b1.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=110467
Signed-off-by: Petri Latvala <petri.latvala@intel.com>
Cc: Emil Velikov <emil.velikov@collabora.com>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
---
Rather than adding #if 0
(https://patchwork.freedesktop.org/series/59945/) better to completely
revert for now.
---
tests/core_auth.c | 114 ----------------------------------------------
1 file changed, 114 deletions(-)
diff --git a/tests/core_auth.c b/tests/core_auth.c
index 49cad7cd..9c240fdb 100644
--- a/tests/core_auth.c
+++ b/tests/core_auth.c
@@ -1,6 +1,5 @@
/*
* Copyright 2015 David Herrmann <dh.herrmann@gmail.com>
- * Copyright 2018 Collabora, Ltd
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@@ -43,7 +42,6 @@
#include <sys/time.h>
#include <sys/poll.h>
#include <sys/resource.h>
-#include <sys/sysmacros.h>
#include "drm.h"
#ifndef __linux__
@@ -192,105 +190,6 @@ static void test_basic_auth(int master)
close(slave);
}
-static bool has_prime_import(int fd)
-{
- uint64_t value;
-
- if (drmGetCap(fd, DRM_CAP_PRIME, &value))
- return false;
-
- return value & DRM_PRIME_CAP_IMPORT;
-}
-
-static void check_auth_sanity(int master)
-{
- uint32_t handle;
-
- igt_assert(check_auth(master) == true);
- igt_require(has_prime_import(master));
-
- igt_assert(drmPrimeFDToHandle(master, -1, &handle) < 0);
-
- /* IOCTL requires authenticated master as done in drm_permit.
- * As we get past that, we'll fail due to the invalid FD.
- *
- * Note: strictly speaking this is unrelated to the goal of
- * the test, although danvet requested it.
- */
- igt_assert(errno == EBADF);
-}
-
-static bool has_render_node(int fd)
-{
- char node_name[80];
- struct stat sbuf;
-
- if (fstat(fd, &sbuf))
- return false;
-
- sprintf(node_name, "/dev/dri/renderD%d", minor(sbuf.st_rdev) | 0x80);
- if (stat(node_name, &sbuf))
- return false;
-
- return true;
-}
-
-/*
- * Testcase: Render capable, unauthenticated master doesn't throw -EACCES for
- * DRM_RENDER_ALLOW ioctls.
- */
-static void test_unauth_vs_render(int master)
-{
- int slave;
- uint32_t handle;
- struct stat statbuf;
- bool has_render;
-
- /* need to check for render nodes before we wreak the filesystem */
- has_render = has_render_node(master);
-
- /* create a card node matching master which (only) we can access as
- * non-root */
- do_or_die(fstat(master, &statbuf));
- do_or_die(unshare(CLONE_NEWNS));
- do_or_die(mount(NULL, "/", NULL, MS_PRIVATE | MS_REC, NULL));
- do_or_die(mount("none", "/dev/dri", "tmpfs", 0, NULL));
- umask(0);
- do_or_die(mknod("/dev/dri/card", S_IFCHR | 0666, statbuf.st_rdev));
-
- igt_drop_root();
-
- slave = open("/dev/dri/card", O_RDWR);
-
- igt_assert(slave >= 0);
-
- /*
- * The second open() happens without CAP_SYS_ADMIN, thus it will NOT
- * be authenticated.
- */
- igt_assert(check_auth(slave) == false);
-
- /* Issuing the following ioctl will fail, no doubt about it. */
- igt_assert(drmPrimeFDToHandle(slave, -1, &handle) < 0);
-
- /*
- * Updated kernels allow render capable, unauthenticated master to
- * issue DRM_AUTH ioctls (like FD2HANDLE above), as long as they are
- * annotated as DRM_RENDER_ALLOW.
- *
- * Otherwise, errno is set to -EACCES
- *
- * Note: We are _not_ interested in the FD2HANDLE specific errno,
- * yet the EBADF check is added on the explicit request by danvet.
- */
- if (has_render)
- igt_assert(errno == EBADF);
- else
- igt_assert(errno == EACCES);
-
- close(slave);
-}
-
igt_main
{
int master;
@@ -329,17 +228,4 @@ igt_main
igt_subtest("many-magics")
test_many_magics(master);
}
-
- igt_subtest_group {
- igt_fixture
- master = drm_open_driver(DRIVER_ANY);
-
- igt_subtest("unauth-vs-render") {
- check_auth_sanity(master);
-
- igt_fork(child, 1)
- test_unauth_vs_render(master);
- igt_waitchildren();
- }
- }
}
--
2.19.1
_______________________________________________
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 Revert "tests/core_unauth_vs_render: new test for the relaxed DRM_AUTH handling"
2019-05-15 10:19 [igt-dev] [PATCH i-g-t] Revert "tests/core_unauth_vs_render: new test for the relaxed DRM_AUTH handling" Petri Latvala
@ 2019-05-15 10:45 ` Patchwork
2019-05-15 12:11 ` [igt-dev] [PATCH i-g-t] " Emil Velikov
2019-05-15 13:40 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2019-05-15 10:45 UTC (permalink / raw)
To: Petri Latvala; +Cc: igt-dev
== Series Details ==
Series: Revert "tests/core_unauth_vs_render: new test for the relaxed DRM_AUTH handling"
URL : https://patchwork.freedesktop.org/series/60667/
State : success
== Summary ==
CI Bug Log - changes from IGT_4989 -> IGTPW_2984
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://patchwork.freedesktop.org/api/1.0/series/60667/revisions/1/mbox/
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_2984:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@gem_ctx_exec@basic:
- {fi-cml-u}: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/fi-cml-u/igt@gem_ctx_exec@basic.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/fi-cml-u/igt@gem_ctx_exec@basic.html
Known issues
------------
Here are the changes found in IGTPW_2984 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_module_load@reload:
- fi-blb-e6850: [PASS][3] -> [INCOMPLETE][4] ([fdo#107718])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/fi-blb-e6850/igt@i915_module_load@reload.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/fi-blb-e6850/igt@i915_module_load@reload.html
* igt@i915_selftest@live_contexts:
- fi-bdw-gvtdvm: [PASS][5] -> [DMESG-FAIL][6] ([fdo#110235])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/fi-bdw-gvtdvm/igt@i915_selftest@live_contexts.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/fi-bdw-gvtdvm/igt@i915_selftest@live_contexts.html
#### Possible fixes ####
* igt@amdgpu/amd_basic@userptr:
- fi-kbl-8809g: [DMESG-WARN][7] ([fdo#108965]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/fi-kbl-8809g/igt@amdgpu/amd_basic@userptr.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/fi-kbl-8809g/igt@amdgpu/amd_basic@userptr.html
* igt@i915_selftest@live_hangcheck:
- fi-skl-iommu: [INCOMPLETE][9] ([fdo#108602] / [fdo#108744]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/fi-skl-iommu/igt@i915_selftest@live_hangcheck.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/fi-skl-iommu/igt@i915_selftest@live_hangcheck.html
* igt@kms_frontbuffer_tracking@basic:
- {fi-icl-u3}: [FAIL][11] ([fdo#103167]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/fi-icl-u3/igt@kms_frontbuffer_tracking@basic.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/fi-icl-u3/igt@kms_frontbuffer_tracking@basic.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
[fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
[fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718
[fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
[fdo#108602]: https://bugs.freedesktop.org/show_bug.cgi?id=108602
[fdo#108744]: https://bugs.freedesktop.org/show_bug.cgi?id=108744
[fdo#108965]: https://bugs.freedesktop.org/show_bug.cgi?id=108965
[fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100
[fdo#110235]: https://bugs.freedesktop.org/show_bug.cgi?id=110235
[fdo#110627]: https://bugs.freedesktop.org/show_bug.cgi?id=110627
Participating hosts (51 -> 46)
------------------------------
Additional (3): fi-byt-j1900 fi-apl-guc fi-pnv-d510
Missing (8): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus
Build changes
-------------
* IGT: IGT_4989 -> IGTPW_2984
CI_DRM_6085: 48d8cf5cc0aadd21924d05ad3e86b08d8e0e1c50 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_2984: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/
IGT_4989: 5b941737519c170c4710d1ec7823866ee080a67e @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Testlist changes ==
-igt@core_auth@unauth-vs-render
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/
_______________________________________________
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] Revert "tests/core_unauth_vs_render: new test for the relaxed DRM_AUTH handling"
2019-05-15 10:19 [igt-dev] [PATCH i-g-t] Revert "tests/core_unauth_vs_render: new test for the relaxed DRM_AUTH handling" Petri Latvala
2019-05-15 10:45 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2019-05-15 12:11 ` Emil Velikov
2019-05-15 13:55 ` Daniel Vetter
2019-05-15 13:40 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
2 siblings, 1 reply; 5+ messages in thread
From: Emil Velikov @ 2019-05-15 12:11 UTC (permalink / raw)
To: Petri Latvala; +Cc: IGT development, Emil Velikov
On Wed, 15 May 2019 at 11:20, Petri Latvala <petri.latvala@intel.com> wrote:
>
> The kernel patch for relaxed DRM_AUTH handling caused a regression,
> highlighting bug in the RADV implementation, and was reverted. The
> patch will be reinstated, likely in different form, although until
> then disable the test.
>
> See the thread for details.
>
> https://lists.freedesktop.org/archives/dri-devel/2019-April/215018.html
>
> This reverts commit 90f78ac704718a4dc089ca99041f032191c6f8b1.
>
> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=110467
> Signed-off-by: Petri Latvala <petri.latvala@intel.com>
> Cc: Emil Velikov <emil.velikov@collabora.com>
> Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
> ---
>
> Rather than adding #if 0
> (https://patchwork.freedesktop.org/series/59945/) better to completely
> revert for now.
Acked-by: Emil Velikov <emil.velikov@collabora.com>
Struggling to see how a revert is better, but hey - I'm glad to see
some progress after 3 weeks of silence.
Speaking of progress, who do I need to bribe^Wpoke to get this [1]
trivial patch merged?
HTH
-Emil
[1] https://patchwork.freedesktop.org/patch/302049/
_______________________________________________
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] Revert "tests/core_unauth_vs_render: new test for the relaxed DRM_AUTH handling"
2019-05-15 12:11 ` [igt-dev] [PATCH i-g-t] " Emil Velikov
@ 2019-05-15 13:55 ` Daniel Vetter
0 siblings, 0 replies; 5+ messages in thread
From: Daniel Vetter @ 2019-05-15 13:55 UTC (permalink / raw)
To: Emil Velikov; +Cc: IGT development, Petri Latvala, Emil Velikov
On Wed, May 15, 2019 at 01:11:50PM +0100, Emil Velikov wrote:
> On Wed, 15 May 2019 at 11:20, Petri Latvala <petri.latvala@intel.com> wrote:
> >
> > The kernel patch for relaxed DRM_AUTH handling caused a regression,
> > highlighting bug in the RADV implementation, and was reverted. The
> > patch will be reinstated, likely in different form, although until
> > then disable the test.
> >
> > See the thread for details.
> >
> > https://lists.freedesktop.org/archives/dri-devel/2019-April/215018.html
> >
> > This reverts commit 90f78ac704718a4dc089ca99041f032191c6f8b1.
> >
> > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=110467
> > Signed-off-by: Petri Latvala <petri.latvala@intel.com>
> > Cc: Emil Velikov <emil.velikov@collabora.com>
> > Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
> > ---
> >
> > Rather than adding #if 0
> > (https://patchwork.freedesktop.org/series/59945/) better to completely
> > revert for now.
>
> Acked-by: Emil Velikov <emil.velikov@collabora.com>
>
> Struggling to see how a revert is better, but hey - I'm glad to see
> some progress after 3 weeks of silence.
> Speaking of progress, who do I need to bribe^Wpoke to get this [1]
> trivial patch merged?
>
> HTH
> -Emil
>
> [1] https://patchwork.freedesktop.org/patch/302049/
Simon has commit rights and r-b, just ping him.
-Daniel
--
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
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: success for Revert "tests/core_unauth_vs_render: new test for the relaxed DRM_AUTH handling"
2019-05-15 10:19 [igt-dev] [PATCH i-g-t] Revert "tests/core_unauth_vs_render: new test for the relaxed DRM_AUTH handling" Petri Latvala
2019-05-15 10:45 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2019-05-15 12:11 ` [igt-dev] [PATCH i-g-t] " Emil Velikov
@ 2019-05-15 13:40 ` Patchwork
2 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2019-05-15 13:40 UTC (permalink / raw)
To: Petri Latvala; +Cc: igt-dev
== Series Details ==
Series: Revert "tests/core_unauth_vs_render: new test for the relaxed DRM_AUTH handling"
URL : https://patchwork.freedesktop.org/series/60667/
State : success
== Summary ==
CI Bug Log - changes from IGT_4989_full -> IGTPW_2984_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://patchwork.freedesktop.org/api/1.0/series/60667/revisions/1/mbox/
Known issues
------------
Here are the changes found in IGTPW_2984_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_mmap_gtt@forked-medium-copy-odd:
- shard-iclb: [PASS][1] -> [INCOMPLETE][2] ([fdo#107713])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/shard-iclb5/igt@gem_mmap_gtt@forked-medium-copy-odd.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/shard-iclb1/igt@gem_mmap_gtt@forked-medium-copy-odd.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-snb: [PASS][3] -> [SKIP][4] ([fdo#109271])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/shard-snb1/igt@i915_pm_rc6_residency@rc6-accuracy.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/shard-snb2/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_suspend@debugfs-reader:
- shard-apl: [PASS][5] -> [DMESG-WARN][6] ([fdo#108566]) +4 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/shard-apl2/igt@i915_suspend@debugfs-reader.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/shard-apl4/igt@i915_suspend@debugfs-reader.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-iclb: [PASS][7] -> [FAIL][8] ([fdo#103167]) +5 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/shard-iclb1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/shard-iclb5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-pwrite:
- shard-glk: [PASS][9] -> [FAIL][10] ([fdo#103167])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/shard-glk6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-pwrite.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/shard-glk1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-pwrite.html
* igt@kms_plane_lowres@pipe-a-tiling-y:
- shard-iclb: [PASS][11] -> [FAIL][12] ([fdo#103166])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/shard-iclb5/igt@kms_plane_lowres@pipe-a-tiling-y.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/shard-iclb4/igt@kms_plane_lowres@pipe-a-tiling-y.html
* igt@kms_psr@psr2_cursor_blt:
- shard-iclb: [PASS][13] -> [SKIP][14] ([fdo#109441]) +1 similar issue
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/shard-iclb7/igt@kms_psr@psr2_cursor_blt.html
* igt@kms_rotation_crc@sprite-rotation-180:
- shard-snb: [PASS][15] -> [INCOMPLETE][16] ([fdo#105411])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/shard-snb7/igt@kms_rotation_crc@sprite-rotation-180.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/shard-snb2/igt@kms_rotation_crc@sprite-rotation-180.html
#### Possible fixes ####
* igt@gem_workarounds@suspend-resume:
- shard-apl: [DMESG-WARN][17] ([fdo#108566]) -> [PASS][18] +3 similar issues
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/shard-apl8/igt@gem_workarounds@suspend-resume.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/shard-apl2/igt@gem_workarounds@suspend-resume.html
* igt@i915_pm_rpm@i2c:
- shard-iclb: [FAIL][19] ([fdo#104097]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/shard-iclb6/igt@i915_pm_rpm@i2c.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/shard-iclb8/igt@i915_pm_rpm@i2c.html
* igt@kms_frontbuffer_tracking@fbc-1p-rte:
- shard-kbl: [FAIL][21] ([fdo#103167] / [fdo#110378]) -> [PASS][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/shard-kbl2/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
- shard-apl: [FAIL][23] ([fdo#103167] / [fdo#110378]) -> [PASS][24]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/shard-apl1/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/shard-apl7/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt:
- shard-iclb: [FAIL][25] ([fdo#103167]) -> [PASS][26] +3 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_psr@psr2_sprite_render:
- shard-iclb: [SKIP][27] ([fdo#109441]) -> [PASS][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/shard-iclb1/igt@kms_psr@psr2_sprite_render.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/shard-iclb2/igt@kms_psr@psr2_sprite_render.html
* igt@kms_setmode@basic:
- shard-iclb: [FAIL][29] ([fdo#99912]) -> [PASS][30]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/shard-iclb2/igt@kms_setmode@basic.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/shard-iclb6/igt@kms_setmode@basic.html
* igt@perf_pmu@busy-bcs0:
- shard-iclb: [SKIP][31] ([fdo#110682]) -> [PASS][32] +8 similar issues
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/shard-iclb8/igt@perf_pmu@busy-bcs0.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/shard-iclb8/igt@perf_pmu@busy-bcs0.html
* igt@tools_test@tools_test:
- shard-snb: [SKIP][33] ([fdo#109271]) -> [PASS][34]
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/shard-snb6/igt@tools_test@tools_test.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/shard-snb1/igt@tools_test@tools_test.html
#### Warnings ####
* igt@gem_mmap_gtt@forked-big-copy-odd:
- shard-iclb: [TIMEOUT][35] ([fdo#109673]) -> [INCOMPLETE][36] ([fdo#107713] / [fdo#109100])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/shard-iclb6/igt@gem_mmap_gtt@forked-big-copy-odd.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/shard-iclb1/igt@gem_mmap_gtt@forked-big-copy-odd.html
* igt@gem_mmap_gtt@forked-big-copy-xy:
- shard-iclb: [INCOMPLETE][37] ([fdo#107713] / [fdo#109100]) -> [TIMEOUT][38] ([fdo#109673])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/shard-iclb8/igt@gem_mmap_gtt@forked-big-copy-xy.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/shard-iclb4/igt@gem_mmap_gtt@forked-big-copy-xy.html
* igt@kms_atomic_transition@2x-modeset-transitions-nonblocking:
- shard-iclb: [SKIP][39] ([fdo#110682]) -> [SKIP][40] ([fdo#109280]) +3 similar issues
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/shard-iclb8/igt@kms_atomic_transition@2x-modeset-transitions-nonblocking.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/shard-iclb8/igt@kms_atomic_transition@2x-modeset-transitions-nonblocking.html
* igt@kms_chamelium@dp-hpd-after-suspend:
- shard-iclb: [SKIP][41] ([fdo#110682]) -> [SKIP][42] ([fdo#109284])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/shard-iclb8/igt@kms_chamelium@dp-hpd-after-suspend.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/shard-iclb6/igt@kms_chamelium@dp-hpd-after-suspend.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-iclb: [SKIP][43] ([fdo#110682]) -> [SKIP][44] ([fdo#109274]) +1 similar issue
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_4989/shard-iclb8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/shard-iclb7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166
[fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
[fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
[fdo#104097]: https://bugs.freedesktop.org/show_bug.cgi?id=104097
[fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411
[fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
[fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
[fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109673]: https://bugs.freedesktop.org/show_bug.cgi?id=109673
[fdo#110378]: https://bugs.freedesktop.org/show_bug.cgi?id=110378
[fdo#110682]: https://bugs.freedesktop.org/show_bug.cgi?id=110682
[fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912
Participating hosts (7 -> 6)
------------------------------
Missing (1): shard-skl
Build changes
-------------
* IGT: IGT_4989 -> IGTPW_2984
CI_DRM_6085: 48d8cf5cc0aadd21924d05ad3e86b08d8e0e1c50 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_2984: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/
IGT_4989: 5b941737519c170c4710d1ec7823866ee080a67e @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2984/
_______________________________________________
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:[~2019-05-15 13:56 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-05-15 10:19 [igt-dev] [PATCH i-g-t] Revert "tests/core_unauth_vs_render: new test for the relaxed DRM_AUTH handling" Petri Latvala
2019-05-15 10:45 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2019-05-15 12:11 ` [igt-dev] [PATCH i-g-t] " Emil Velikov
2019-05-15 13:55 ` Daniel Vetter
2019-05-15 13:40 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox