* [igt-dev] [PATCH i-g-t] i915: Handle the case where legacy mmap is not available, v2.
@ 2021-06-24 9:14 Maarten Lankhorst
2021-06-24 18:34 ` Dixit, Ashutosh
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Maarten Lankhorst @ 2021-06-24 9:14 UTC (permalink / raw)
To: igt-dev
We will remove support for the legacy mmap ioctl, so handle that
case without rewriting all tests.
When the gem_mmap ioctl is not available, transparently fallback to mmap_offset.
Changes since v1:
- Skip gem_tiled_wc too, as it requires on legacy mmap behavior. (Ashutosh)
- Remove fallback for __gem_mmap__gtt, it's already mmap_offset. (Ashutosh)
Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
---
lib/i915/gem_mman.c | 22 +++++++++++++++++++++-
lib/i915/gem_mman.h | 1 +
tests/i915/gem_mmap.c | 4 +++-
tests/i915/gem_mmap_wc.c | 1 +
tests/i915/gem_tiled_wc.c | 1 +
5 files changed, 27 insertions(+), 2 deletions(-)
diff --git a/lib/i915/gem_mman.c b/lib/i915/gem_mman.c
index 300ca13d3b30..9a422a6a329f 100644
--- a/lib/i915/gem_mman.c
+++ b/lib/i915/gem_mman.c
@@ -63,6 +63,15 @@ bool gem_has_mmap_offset(int fd)
return gtt_version >= 4;
}
+bool gem_has_legacy_mmap(int fd)
+{
+ struct drm_i915_gem_mmap arg = { .handle = ~0U };
+
+ igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_I915_GEM_MMAP, &arg), -1);
+
+ return errno != EOPNOTSUPP;
+}
+
bool gem_has_mmap_offset_type(int fd, const struct mmap_offset *t)
{
return gem_has_mmap_offset(fd) || t->type == I915_MMAP_OFFSET_GTT;
@@ -84,6 +93,7 @@ void *__gem_mmap__gtt(int fd, uint32_t handle, uint64_t size, unsigned prot)
{
struct drm_i915_gem_mmap_gtt mmap_arg;
void *ptr;
+ int ret;
memset(&mmap_arg, 0, sizeof(mmap_arg));
mmap_arg.handle = handle;
@@ -136,6 +146,9 @@ bool gem_mmap__has_wc(int fd)
struct drm_i915_getparam gp;
int mmap_version = -1;
+ if (gem_mmap_offset__has_wc(fd))
+ return true;
+
memset(&gp, 0, sizeof(gp));
gp.param = I915_PARAM_MMAP_VERSION;
gp.value = &mmap_version;
@@ -204,6 +217,7 @@ static void *__gem_mmap(int fd, uint32_t handle, uint64_t offset, uint64_t size,
unsigned int prot, uint64_t flags)
{
struct drm_i915_gem_mmap arg;
+ int ret;
memset(&arg, 0, sizeof(arg));
arg.handle = handle;
@@ -211,7 +225,13 @@ static void *__gem_mmap(int fd, uint32_t handle, uint64_t offset, uint64_t size,
arg.size = size;
arg.flags = flags;
- if (igt_ioctl(fd, DRM_IOCTL_I915_GEM_MMAP, &arg))
+ ret = igt_ioctl(fd, DRM_IOCTL_I915_GEM_MMAP, &arg);
+ if (ret == -1 && errno == EOPNOTSUPP)
+ return __gem_mmap_offset(fd, handle, offset, size, prot,
+ flags == I915_MMAP_WC ?
+ I915_MMAP_OFFSET_WC :
+ I915_MMAP_OFFSET_WB);
+ else if (ret)
return NULL;
VG(VALGRIND_MAKE_MEM_DEFINED(from_user_pointer(arg.addr_ptr), arg.size));
diff --git a/lib/i915/gem_mman.h b/lib/i915/gem_mman.h
index 4a69b25954a7..5695d2ad8736 100644
--- a/lib/i915/gem_mman.h
+++ b/lib/i915/gem_mman.h
@@ -45,6 +45,7 @@ void *gem_mmap__cpu_coherent(int fd, uint32_t handle, uint64_t offset,
bool gem_has_mappable_ggtt(int i915);
void gem_require_mappable_ggtt(int i915);
bool gem_has_mmap_offset(int fd);
+bool gem_has_legacy_mmap(int fd);
void *__gem_mmap__gtt(int fd, uint32_t handle, uint64_t size, unsigned prot);
void *__gem_mmap__cpu(int fd, uint32_t handle, uint64_t offset, uint64_t size, unsigned prot);
diff --git a/tests/i915/gem_mmap.c b/tests/i915/gem_mmap.c
index d12a4c0bac6b..a77c0ad60bf3 100644
--- a/tests/i915/gem_mmap.c
+++ b/tests/i915/gem_mmap.c
@@ -154,8 +154,10 @@ igt_main
uint8_t buf[OBJECT_SIZE];
uint8_t *addr;
- igt_fixture
+ igt_fixture {
fd = drm_open_driver(DRIVER_INTEL);
+ igt_require(gem_has_legacy_mmap(fd));
+ }
igt_subtest("bad-object") {
uint32_t real_handle = gem_create(fd, 4096);
diff --git a/tests/i915/gem_mmap_wc.c b/tests/i915/gem_mmap_wc.c
index 7130a51044a0..4fcf547859b1 100644
--- a/tests/i915/gem_mmap_wc.c
+++ b/tests/i915/gem_mmap_wc.c
@@ -504,6 +504,7 @@ igt_main
igt_fixture {
fd = drm_open_driver(DRIVER_INTEL);
+ igt_require(gem_has_legacy_mmap(fd));
gem_require_mmap_wc(fd);
}
diff --git a/tests/i915/gem_tiled_wc.c b/tests/i915/gem_tiled_wc.c
index 29ea700e34a3..1f245eb7d605 100644
--- a/tests/i915/gem_tiled_wc.c
+++ b/tests/i915/gem_tiled_wc.c
@@ -147,6 +147,7 @@ igt_simple_main
fd = drm_open_driver(DRIVER_INTEL);
gem_require_mmap_wc(fd);
gem_require_mappable_ggtt(fd);
+ igt_require(gem_has_legacy_mmap(fd));
igt_require(gem_available_fences(fd) > 0);
handle = create_bo(fd);
--
2.31.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] i915: Handle the case where legacy mmap is not available, v2.
2021-06-24 9:14 [igt-dev] [PATCH i-g-t] i915: Handle the case where legacy mmap is not available, v2 Maarten Lankhorst
@ 2021-06-24 18:34 ` Dixit, Ashutosh
2021-06-28 10:31 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2021-06-28 12:31 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Dixit, Ashutosh @ 2021-06-24 18:34 UTC (permalink / raw)
To: Maarten Lankhorst; +Cc: igt-dev
On Thu, 24 Jun 2021 02:14:14 -0700, Maarten Lankhorst wrote:
> @@ -84,6 +93,7 @@ void *__gem_mmap__gtt(int fd, uint32_t handle, uint64_t size, unsigned prot)
> {
> struct drm_i915_gem_mmap_gtt mmap_arg;
> void *ptr;
> + int ret;
Deleted this unnecessary extra ret and merged.
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for i915: Handle the case where legacy mmap is not available, v2.
2021-06-24 9:14 [igt-dev] [PATCH i-g-t] i915: Handle the case where legacy mmap is not available, v2 Maarten Lankhorst
2021-06-24 18:34 ` Dixit, Ashutosh
@ 2021-06-28 10:31 ` Patchwork
2021-06-28 12:31 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2021-06-28 10:31 UTC (permalink / raw)
To: Maarten Lankhorst; +Cc: igt-dev
[-- Attachment #1.1: Type: text/plain, Size: 2977 bytes --]
== Series Details ==
Series: i915: Handle the case where legacy mmap is not available, v2.
URL : https://patchwork.freedesktop.org/series/91858/
State : success
== Summary ==
CI Bug Log - changes from IGT_6120 -> IGTPW_5956
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/index.html
Known issues
------------
Here are the changes found in IGTPW_5956 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@execlists:
- fi-bsw-nick: [PASS][1] -> [INCOMPLETE][2] ([i915#2782] / [i915#2940])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/fi-bsw-nick/igt@i915_selftest@live@execlists.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/fi-bsw-nick/igt@i915_selftest@live@execlists.html
* igt@runner@aborted:
- fi-bsw-nick: NOTRUN -> [FAIL][3] ([fdo#109271] / [i915#1436])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/fi-bsw-nick/igt@runner@aborted.html
- fi-bdw-5557u: NOTRUN -> [FAIL][4] ([i915#1602] / [i915#2029])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/fi-bdw-5557u/igt@runner@aborted.html
#### Possible fixes ####
* igt@kms_chamelium@common-hpd-after-suspend:
- fi-kbl-7500u: [DMESG-WARN][5] ([i915#2868]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/fi-kbl-7500u/igt@kms_chamelium@common-hpd-after-suspend.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/fi-kbl-7500u/igt@kms_chamelium@common-hpd-after-suspend.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#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
[i915#1602]: https://gitlab.freedesktop.org/drm/intel/issues/1602
[i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
[i915#2029]: https://gitlab.freedesktop.org/drm/intel/issues/2029
[i915#2782]: https://gitlab.freedesktop.org/drm/intel/issues/2782
[i915#2868]: https://gitlab.freedesktop.org/drm/intel/issues/2868
[i915#2940]: https://gitlab.freedesktop.org/drm/intel/issues/2940
Participating hosts (41 -> 38)
------------------------------
Missing (3): fi-bsw-cyan fi-bdw-samus fi-hsw-4200u
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_6120 -> IGTPW_5956
CI-20190529: 20190529
CI_DRM_10282: 67f5a18128770817e4218a9e496d2bf5047c51e8 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_5956: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/index.html
IGT_6120: c45c6b727c1efaced0b53620bd41c8e4facfb31f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/index.html
[-- Attachment #1.2: Type: text/html, Size: 3578 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] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for i915: Handle the case where legacy mmap is not available, v2.
2021-06-24 9:14 [igt-dev] [PATCH i-g-t] i915: Handle the case where legacy mmap is not available, v2 Maarten Lankhorst
2021-06-24 18:34 ` Dixit, Ashutosh
2021-06-28 10:31 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2021-06-28 12:31 ` Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2021-06-28 12:31 UTC (permalink / raw)
To: Maarten Lankhorst; +Cc: igt-dev
[-- Attachment #1.1: Type: text/plain, Size: 30279 bytes --]
== Series Details ==
Series: i915: Handle the case where legacy mmap is not available, v2.
URL : https://patchwork.freedesktop.org/series/91858/
State : success
== Summary ==
CI Bug Log - changes from IGT_6120_full -> IGTPW_5956_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/index.html
Known issues
------------
Here are the changes found in IGTPW_5956_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@feature_discovery@display-3x:
- shard-glk: NOTRUN -> [SKIP][1] ([fdo#109271]) +69 similar issues
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-glk6/igt@feature_discovery@display-3x.html
- shard-iclb: NOTRUN -> [SKIP][2] ([i915#1839])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb4/igt@feature_discovery@display-3x.html
- shard-tglb: NOTRUN -> [SKIP][3] ([i915#1839])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-tglb3/igt@feature_discovery@display-3x.html
* igt@gem_ctx_isolation@preservation-s3@bcs0:
- shard-kbl: [PASS][4] -> [DMESG-WARN][5] ([i915#180]) +3 similar issues
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-kbl3/igt@gem_ctx_isolation@preservation-s3@bcs0.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-kbl6/igt@gem_ctx_isolation@preservation-s3@bcs0.html
* igt@gem_ctx_persistence@clone:
- shard-snb: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#1099]) +7 similar issues
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-snb2/igt@gem_ctx_persistence@clone.html
* igt@gem_exec_fair@basic-deadline:
- shard-apl: NOTRUN -> [FAIL][7] ([i915#2846])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-apl8/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-flow@rcs0:
- shard-tglb: [PASS][8] -> [FAIL][9] ([i915#2842]) +4 similar issues
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-tglb8/igt@gem_exec_fair@basic-flow@rcs0.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-tglb1/igt@gem_exec_fair@basic-flow@rcs0.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-kbl: NOTRUN -> [FAIL][10] ([i915#2842])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-kbl7/igt@gem_exec_fair@basic-none-solo@rcs0.html
- shard-glk: NOTRUN -> [FAIL][11] ([i915#2842])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-glk3/igt@gem_exec_fair@basic-none-solo@rcs0.html
- shard-iclb: NOTRUN -> [FAIL][12] ([i915#2842])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb2/igt@gem_exec_fair@basic-none-solo@rcs0.html
- shard-tglb: NOTRUN -> [FAIL][13] ([i915#2842])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-tglb2/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-glk: [PASS][14] -> [FAIL][15] ([i915#2842])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-glk7/igt@gem_exec_fair@basic-none-vip@rcs0.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-glk4/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-kbl: [PASS][16] -> [FAIL][17] ([i915#2842]) +4 similar issues
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-kbl2/igt@gem_exec_fair@basic-none@vcs0.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-kbl7/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_fair@basic-pace@vcs0:
- shard-iclb: [PASS][18] -> [FAIL][19] ([i915#2842])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-iclb7/igt@gem_exec_fair@basic-pace@vcs0.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb8/igt@gem_exec_fair@basic-pace@vcs0.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-iclb: [PASS][20] -> [FAIL][21] ([i915#2849])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-iclb6/igt@gem_exec_fair@basic-throttle@rcs0.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb1/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_params@secure-non-root:
- shard-tglb: NOTRUN -> [SKIP][22] ([fdo#112283])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-tglb2/igt@gem_exec_params@secure-non-root.html
- shard-iclb: NOTRUN -> [SKIP][23] ([fdo#112283])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb5/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-wide-active@bcs0:
- shard-apl: NOTRUN -> [FAIL][24] ([i915#3633]) +3 similar issues
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-apl7/igt@gem_exec_reloc@basic-wide-active@bcs0.html
* igt@gem_exec_reloc@basic-wide-active@rcs0:
- shard-kbl: NOTRUN -> [FAIL][25] ([i915#3633]) +4 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-kbl3/igt@gem_exec_reloc@basic-wide-active@rcs0.html
* igt@gem_exec_whisper@basic-contexts-priority-all:
- shard-iclb: [PASS][26] -> [INCOMPLETE][27] ([i915#1895])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-iclb3/igt@gem_exec_whisper@basic-contexts-priority-all.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb6/igt@gem_exec_whisper@basic-contexts-priority-all.html
* igt@gem_huc_copy@huc-copy:
- shard-tglb: NOTRUN -> [SKIP][28] ([i915#2190])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-tglb6/igt@gem_huc_copy@huc-copy.html
- shard-apl: NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#2190])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-apl6/igt@gem_huc_copy@huc-copy.html
- shard-glk: NOTRUN -> [SKIP][30] ([fdo#109271] / [i915#2190])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-glk4/igt@gem_huc_copy@huc-copy.html
- shard-iclb: NOTRUN -> [SKIP][31] ([i915#2190])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb1/igt@gem_huc_copy@huc-copy.html
- shard-kbl: NOTRUN -> [SKIP][32] ([fdo#109271] / [i915#2190])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-kbl6/igt@gem_huc_copy@huc-copy.html
* igt@gem_mmap_gtt@cpuset-big-copy:
- shard-iclb: [PASS][33] -> [FAIL][34] ([i915#307])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-iclb1/igt@gem_mmap_gtt@cpuset-big-copy.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb7/igt@gem_mmap_gtt@cpuset-big-copy.html
* igt@gem_pwrite@basic-exhaustion:
- shard-kbl: NOTRUN -> [WARN][35] ([i915#2658])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-kbl1/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_render_copy@linear-to-vebox-yf-tiled:
- shard-iclb: NOTRUN -> [SKIP][36] ([i915#768]) +1 similar issue
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb3/igt@gem_render_copy@linear-to-vebox-yf-tiled.html
* igt@gem_userptr_blits@input-checking:
- shard-iclb: NOTRUN -> [DMESG-WARN][37] ([i915#3002])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb8/igt@gem_userptr_blits@input-checking.html
* igt@gem_userptr_blits@vma-merge:
- shard-snb: NOTRUN -> [FAIL][38] ([i915#2724])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-snb5/igt@gem_userptr_blits@vma-merge.html
- shard-apl: NOTRUN -> [FAIL][39] ([i915#3318])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-apl6/igt@gem_userptr_blits@vma-merge.html
* igt@gem_workarounds@suspend-resume:
- shard-kbl: NOTRUN -> [DMESG-WARN][40] ([i915#180]) +1 similar issue
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-kbl6/igt@gem_workarounds@suspend-resume.html
* igt@gen3_render_tiledx_blits:
- shard-iclb: NOTRUN -> [SKIP][41] ([fdo#109289]) +4 similar issues
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb6/igt@gen3_render_tiledx_blits.html
* igt@gen7_exec_parse@oacontrol-tracking:
- shard-tglb: NOTRUN -> [SKIP][42] ([fdo#109289]) +1 similar issue
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-tglb1/igt@gen7_exec_parse@oacontrol-tracking.html
* igt@gen9_exec_parse@allowed-all:
- shard-iclb: NOTRUN -> [SKIP][43] ([fdo#112306]) +1 similar issue
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb2/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglb: NOTRUN -> [SKIP][44] ([fdo#112306])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-tglb3/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-snb: NOTRUN -> [SKIP][45] ([fdo#109271]) +404 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-snb7/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@shadow-peek:
- shard-iclb: NOTRUN -> [SKIP][46] ([i915#2856])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb2/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_pm_dc@dc9-dpms:
- shard-apl: [PASS][47] -> [SKIP][48] ([fdo#109271])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-apl7/igt@i915_pm_dc@dc9-dpms.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-apl3/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rpm@modeset-non-lpsp:
- shard-tglb: NOTRUN -> [SKIP][49] ([fdo#111644] / [i915#1397] / [i915#2411])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-tglb3/igt@i915_pm_rpm@modeset-non-lpsp.html
* igt@i915_pm_sseu@full-enable:
- shard-iclb: NOTRUN -> [SKIP][50] ([fdo#109288])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb3/igt@i915_pm_sseu@full-enable.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-iclb: NOTRUN -> [SKIP][51] ([i915#404])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-180:
- shard-glk: [PASS][52] -> [DMESG-WARN][53] ([i915#118] / [i915#95]) +1 similar issue
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-glk4/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-glk2/igt@kms_big_fb@x-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-iclb: NOTRUN -> [SKIP][54] ([fdo#110725] / [fdo#111614]) +1 similar issue
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb3/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-tglb: NOTRUN -> [SKIP][55] ([fdo#111614]) +1 similar issue
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-tglb2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-tglb: NOTRUN -> [SKIP][56] ([fdo#111615]) +2 similar issues
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-tglb2/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_chamelium@hdmi-hpd-enable-disable-mode:
- shard-iclb: NOTRUN -> [SKIP][57] ([fdo#109284] / [fdo#111827]) +7 similar issues
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb1/igt@kms_chamelium@hdmi-hpd-enable-disable-mode.html
* igt@kms_chamelium@hdmi-mode-timings:
- shard-snb: NOTRUN -> [SKIP][58] ([fdo#109271] / [fdo#111827]) +24 similar issues
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-snb5/igt@kms_chamelium@hdmi-mode-timings.html
* igt@kms_color@pipe-d-ctm-negative:
- shard-iclb: NOTRUN -> [SKIP][59] ([fdo#109278] / [i915#1149]) +1 similar issue
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb3/igt@kms_color@pipe-d-ctm-negative.html
* igt@kms_color_chamelium@pipe-a-ctm-blue-to-red:
- shard-kbl: NOTRUN -> [SKIP][60] ([fdo#109271] / [fdo#111827]) +8 similar issues
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-kbl3/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html
* igt@kms_color_chamelium@pipe-b-ctm-0-5:
- shard-glk: NOTRUN -> [SKIP][61] ([fdo#109271] / [fdo#111827]) +6 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-glk3/igt@kms_color_chamelium@pipe-b-ctm-0-5.html
- shard-tglb: NOTRUN -> [SKIP][62] ([fdo#109284] / [fdo#111827]) +1 similar issue
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-tglb2/igt@kms_color_chamelium@pipe-b-ctm-0-5.html
* igt@kms_color_chamelium@pipe-c-ctm-0-25:
- shard-apl: NOTRUN -> [SKIP][63] ([fdo#109271] / [fdo#111827]) +20 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-apl1/igt@kms_color_chamelium@pipe-c-ctm-0-25.html
* igt@kms_color_chamelium@pipe-d-ctm-green-to-red:
- shard-iclb: NOTRUN -> [SKIP][64] ([fdo#109278] / [fdo#109284] / [fdo#111827])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb7/igt@kms_color_chamelium@pipe-d-ctm-green-to-red.html
* igt@kms_content_protection@atomic:
- shard-tglb: NOTRUN -> [SKIP][65] ([fdo#111828])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-tglb3/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@srm:
- shard-iclb: NOTRUN -> [SKIP][66] ([fdo#109300] / [fdo#111066])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb4/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-apl: NOTRUN -> [FAIL][67] ([i915#2105])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-apl3/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@pipe-b-cursor-512x512-rapid-movement:
- shard-iclb: NOTRUN -> [SKIP][68] ([fdo#109278] / [fdo#109279])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb3/igt@kms_cursor_crc@pipe-b-cursor-512x512-rapid-movement.html
- shard-tglb: NOTRUN -> [SKIP][69] ([fdo#109279] / [i915#3359]) +1 similar issue
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-tglb1/igt@kms_cursor_crc@pipe-b-cursor-512x512-rapid-movement.html
* igt@kms_cursor_crc@pipe-b-cursor-dpms:
- shard-glk: [PASS][70] -> [FAIL][71] ([i915#3444])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-glk7/igt@kms_cursor_crc@pipe-b-cursor-dpms.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-glk7/igt@kms_cursor_crc@pipe-b-cursor-dpms.html
* igt@kms_cursor_crc@pipe-c-cursor-512x170-rapid-movement:
- shard-iclb: NOTRUN -> [SKIP][72] ([fdo#109278]) +18 similar issues
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb2/igt@kms_cursor_crc@pipe-c-cursor-512x170-rapid-movement.html
* igt@kms_cursor_crc@pipe-d-cursor-32x10-offscreen:
- shard-tglb: NOTRUN -> [SKIP][73] ([i915#3359])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-tglb3/igt@kms_cursor_crc@pipe-d-cursor-32x10-offscreen.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-iclb: NOTRUN -> [SKIP][74] ([fdo#109274] / [fdo#109278]) +3 similar issues
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb6/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@pipe-d-single-bo:
- shard-kbl: NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#533]) +1 similar issue
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-kbl3/igt@kms_cursor_legacy@pipe-d-single-bo.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-kbl: [PASS][76] -> [INCOMPLETE][77] ([i915#155] / [i915#180] / [i915#636])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-kbl2/igt@kms_fbcon_fbt@fbc-suspend.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-kbl1/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-tglb: NOTRUN -> [SKIP][78] ([fdo#111825]) +20 similar issues
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-tglb6/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-iclb: NOTRUN -> [SKIP][79] ([fdo#109274]) +3 similar issues
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
- shard-apl: [PASS][80] -> [DMESG-WARN][81] ([i915#180]) +1 similar issue
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-apl2/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-apl: NOTRUN -> [SKIP][82] ([fdo#109271]) +222 similar issues
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-apl3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-iclb: NOTRUN -> [SKIP][83] ([fdo#109280]) +23 similar issues
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_hdr@static-toggle-suspend:
- shard-tglb: NOTRUN -> [SKIP][84] ([i915#1187])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-tglb1/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
- shard-apl: NOTRUN -> [SKIP][85] ([fdo#109271] / [i915#533]) +2 similar issues
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-apl1/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html
* igt@kms_plane_alpha_blend@pipe-a-alpha-basic:
- shard-apl: NOTRUN -> [FAIL][86] ([fdo#108145] / [i915#265]) +4 similar issues
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-apl8/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html
* igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
- shard-kbl: NOTRUN -> [FAIL][87] ([fdo#108145] / [i915#265]) +2 similar issues
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-kbl2/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
- shard-glk: NOTRUN -> [FAIL][88] ([fdo#108145] / [i915#265])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-glk5/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
* igt@kms_plane_lowres@pipe-a-tiling-none:
- shard-iclb: NOTRUN -> [SKIP][89] ([i915#3536]) +1 similar issue
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb6/igt@kms_plane_lowres@pipe-a-tiling-none.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-5:
- shard-apl: NOTRUN -> [SKIP][90] ([fdo#109271] / [i915#658]) +8 similar issues
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-apl6/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-5.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area-2:
- shard-glk: NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#658]) +1 similar issue
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-glk7/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html
- shard-tglb: NOTRUN -> [SKIP][92] ([i915#2920]) +1 similar issue
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-tglb1/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html
- shard-iclb: NOTRUN -> [SKIP][93] ([i915#658])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb8/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area-3:
- shard-kbl: NOTRUN -> [SKIP][94] ([fdo#109271] / [i915#658]) +2 similar issues
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-kbl4/igt@kms_psr2_sf@plane-move-sf-dmg-area-3.html
* igt@kms_psr2_su@page_flip:
- shard-tglb: NOTRUN -> [SKIP][95] ([i915#1911])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-tglb1/igt@kms_psr2_su@page_flip.html
- shard-iclb: NOTRUN -> [SKIP][96] ([fdo#109642] / [fdo#111068] / [i915#658])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb5/igt@kms_psr2_su@page_flip.html
* igt@kms_psr@psr2_sprite_mmap_gtt:
- shard-iclb: [PASS][97] -> [SKIP][98] ([fdo#109441]) +1 similar issue
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb3/igt@kms_psr@psr2_sprite_mmap_gtt.html
* igt@kms_psr@psr2_suspend:
- shard-iclb: NOTRUN -> [SKIP][99] ([fdo#109441])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb1/igt@kms_psr@psr2_suspend.html
- shard-tglb: NOTRUN -> [FAIL][100] ([i915#132] / [i915#3467])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-tglb6/igt@kms_psr@psr2_suspend.html
* igt@kms_sysfs_edid_timing:
- shard-kbl: NOTRUN -> [FAIL][101] ([IGT#2])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-kbl6/igt@kms_sysfs_edid_timing.html
* igt@kms_vrr@flip-basic:
- shard-tglb: NOTRUN -> [SKIP][102] ([fdo#109502])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-tglb2/igt@kms_vrr@flip-basic.html
- shard-iclb: NOTRUN -> [SKIP][103] ([fdo#109502])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb5/igt@kms_vrr@flip-basic.html
* igt@kms_writeback@writeback-fb-id:
- shard-iclb: NOTRUN -> [SKIP][104] ([i915#2437])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb7/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-apl: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#2437])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-apl6/igt@kms_writeback@writeback-pixel-formats.html
* igt@nouveau_crc@pipe-c-source-outp-complete:
- shard-tglb: NOTRUN -> [SKIP][106] ([i915#2530]) +1 similar issue
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-tglb6/igt@nouveau_crc@pipe-c-source-outp-complete.html
- shard-iclb: NOTRUN -> [SKIP][107] ([i915#2530])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb2/igt@nouveau_crc@pipe-c-source-outp-complete.html
* igt@nouveau_crc@pipe-d-source-outp-inactive:
- shard-iclb: NOTRUN -> [SKIP][108] ([fdo#109278] / [i915#2530])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb3/igt@nouveau_crc@pipe-d-source-outp-inactive.html
* igt@prime_nv_api@i915_nv_import_twice_check_flink_name:
- shard-tglb: NOTRUN -> [SKIP][109] ([fdo#109291]) +1 similar issue
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-tglb3/igt@prime_nv_api@i915_nv_import_twice_check_flink_name.html
* igt@prime_nv_api@nv_i915_import_twice_check_flink_name:
- shard-iclb: NOTRUN -> [SKIP][110] ([fdo#109291]) +4 similar issues
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb1/igt@prime_nv_api@nv_i915_import_twice_check_flink_name.html
* igt@prime_nv_pcopy@test2:
- shard-kbl: NOTRUN -> [SKIP][111] ([fdo#109271]) +119 similar issues
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-kbl2/igt@prime_nv_pcopy@test2.html
* igt@prime_vgem@fence-read-hang:
- shard-tglb: NOTRUN -> [SKIP][112] ([fdo#109295])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-tglb2/igt@prime_vgem@fence-read-hang.html
* igt@sysfs_clients@recycle-many:
- shard-kbl: NOTRUN -> [SKIP][113] ([fdo#109271] / [i915#2994]) +1 similar issue
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-kbl4/igt@sysfs_clients@recycle-many.html
* igt@sysfs_clients@sema-50:
- shard-apl: NOTRUN -> [SKIP][114] ([fdo#109271] / [i915#2994]) +5 similar issues
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-apl3/igt@sysfs_clients@sema-50.html
#### Possible fixes ####
* igt@gem_exec_whisper@basic-contexts-priority-all:
- shard-tglb: [INCOMPLETE][115] -> [PASS][116]
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-tglb8/igt@gem_exec_whisper@basic-contexts-priority-all.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-tglb3/igt@gem_exec_whisper@basic-contexts-priority-all.html
* igt@gem_mmap_gtt@cpuset-big-copy-xy:
- shard-iclb: [FAIL][117] ([i915#2428]) -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-iclb5/igt@gem_mmap_gtt@cpuset-big-copy-xy.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb2/igt@gem_mmap_gtt@cpuset-big-copy-xy.html
* igt@kms_big_fb@linear-32bpp-rotate-180:
- shard-glk: [DMESG-WARN][119] ([i915#118] / [i915#95]) -> [PASS][120] +2 similar issues
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-glk8/igt@kms_big_fb@linear-32bpp-rotate-180.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-glk8/igt@kms_big_fb@linear-32bpp-rotate-180.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
- shard-apl: [DMESG-WARN][121] ([i915#180]) -> [PASS][122]
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-apl2/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite:
- shard-glk: [FAIL][123] ([i915#2546] / [i915#49]) -> [PASS][124]
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-glk2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-glk1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
- shard-kbl: [DMESG-WARN][125] ([i915#180]) -> [PASS][126] +4 similar issues
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-kbl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-kbl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
* igt@kms_psr@psr2_cursor_mmap_cpu:
- shard-iclb: [SKIP][127] ([fdo#109441]) -> [PASS][128] +1 similar issue
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-iclb8/igt@kms_psr@psr2_cursor_mmap_cpu.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_cpu.html
#### Warnings ####
* igt@i915_pm_dc@dc3co-vpb-simulation:
- shard-iclb: [SKIP][129] ([i915#658]) -> [SKIP][130] ([i915#588])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-iclb8/igt@i915_pm_dc@dc3co-vpb-simulation.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html
* igt@i915_pm_dc@dc9-dpms:
- shard-iclb: [INCOMPLETE][131] -> [FAIL][132] ([i915#3343])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-iclb1/igt@i915_pm_dc@dc9-dpms.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb7/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-iclb: [WARN][133] ([i915#2684]) -> [WARN][134] ([i915#1804] / [i915#2684])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-iclb5/igt@i915_pm_rc6_residency@rc6-idle.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb7/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@kms_psr2_sf@cursor-plane-update-sf:
- shard-iclb: [SKIP][135] ([i915#2920]) -> [SKIP][136] ([i915#658])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-iclb2/igt@kms_psr2_sf@cursor-plane-update-sf.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/shard-iclb7/igt@kms_psr2_sf@cursor-plane-update-sf.html
* igt@runner@aborted:
- shard-kbl: ([FAIL][137], [FAIL][138], [FAIL][139], [FAIL][140], [FAIL][141], [FAIL][142], [FAIL][143], [FAIL][144]) ([i915#1436] / [i915#180] / [i915#1814] / [i915#3002] / [i915#3363] / [i915#602]) -> ([FAIL][145], [FAIL][146], [FAIL][147], [FAIL][148], [FAIL][149], [FAIL][150], [FAIL][151]) ([i915#1436] / [i915#180] / [i915#1814] / [i915#2505] / [i915#3002] / [i915#3363] / [i915#92])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-kbl3/igt@runner@aborted.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-kbl2/igt@runner@aborted.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-kbl3/igt@runner@aborted.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-kbl1/igt@runner@aborted.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-kbl3/igt@runner@aborted.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-kbl4/igt@runner@aborted.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_6120/shard-kbl4/igt@runner@aborted.html
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5956/index.html
[-- Attachment #1.2: Type: text/html, Size: 34481 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] 4+ messages in thread
end of thread, other threads:[~2021-06-28 12:31 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-24 9:14 [igt-dev] [PATCH i-g-t] i915: Handle the case where legacy mmap is not available, v2 Maarten Lankhorst
2021-06-24 18:34 ` Dixit, Ashutosh
2021-06-28 10:31 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2021-06-28 12:31 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox