* [igt-dev] [PATCH i-g-t] tests/intel/xe_waitfence: add positive subtest with eci engine provided
@ 2023-11-15 15:56 Daniel Mrzyglod
2023-11-15 17:09 ` Kamil Konieczny
` (10 more replies)
0 siblings, 11 replies; 15+ messages in thread
From: Daniel Mrzyglod @ 2023-11-15 15:56 UTC (permalink / raw)
To: igt-dev
Postive tests to check XE_WAIT_USER_FENCE ioctl where
engine class instance is provided
Signed-off-by: Daniel Mrzyglod <daniel.t.mrzyglod@intel.com>
---
tests/intel/xe_waitfence.c | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/tests/intel/xe_waitfence.c b/tests/intel/xe_waitfence.c
index ac7e99dde..dcf2908d6 100644
--- a/tests/intel/xe_waitfence.c
+++ b/tests/intel/xe_waitfence.c
@@ -37,9 +37,30 @@ static void do_bind(int fd, uint32_t vm, uint32_t bo, uint64_t offset,
xe_vm_bind_async(fd, vm, 0, bo, offset, addr, size, sync, 1);
}
+static int xe_wait_ufence_hasengine(int fd, uint64_t *addr, uint64_t value,
+ struct drm_xe_engine_class_instance *eci,
+ int64_t timeout)
+{
+ struct drm_xe_wait_user_fence wait = {
+ .addr = to_user_pointer(addr),
+ .op = DRM_XE_UFENCE_WAIT_EQ,
+ .flags = !eci ? 0 : DRM_XE_UFENCE_WAIT_ABSTIME,
+ .value = value,
+ .mask = DRM_XE_UFENCE_WAIT_U64,
+ .timeout = timeout,
+ .num_engines = eci ? 1 :0,
+ .instances = eci ? to_user_pointer(eci) : 0,
+ };
+
+ igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_WAIT_USER_FENCE, &wait), 0);
+
+ return wait.timeout;
+}
+
enum waittype {
RELTIME,
ABSTIME,
+ HASENGINE,
};
/**
@@ -50,10 +71,16 @@ enum waittype {
* SUBTEST: abstime
* Description: Check basic waitfences functionality with timeout
* passed as absolute time in nanoseconds
+ *
+ * SUBTEST: hasengine
+ * Description: Check basic waitfences functionality with timeout
+ * passed as relative time in nanoseconds and provide engine class
+ * instance
*/
static void
waitfence(int fd, enum waittype wt)
{
+ struct drm_xe_engine_class_instance *eci;
uint32_t bo_1;
uint32_t bo_2;
uint32_t bo_3;
@@ -83,6 +110,11 @@ waitfence(int fd, enum waittype wt)
timeout = xe_wait_ufence(fd, &wait_fence, 7, NULL, MS_TO_NS(10));
igt_debug("wait type: RELTIME - timeout: %ld, timeout left: %ld\n",
MS_TO_NS(10), timeout);
+ } else if (wt == HASENGINE) {
+ eci = xe_hw_engine(fd, 1);
+ timeout = xe_wait_ufence_hasengine(fd, &wait_fence, 7, eci, MS_TO_NS(10));
+ igt_debug("wait type: RELTIME - timeout: %ld, timeout left: %ld\n",
+ MS_TO_NS(10), timeout);
} else {
struct timespec ts;
int64_t current, signalled;
@@ -192,6 +224,8 @@ invalid_engine(int fd)
}
+
+
igt_main
{
int fd;
@@ -205,6 +239,9 @@ igt_main
igt_subtest("abstime")
waitfence(fd, ABSTIME);
+ igt_subtest("hasengine")
+ waitfence(fd, HASENGINE);
+
igt_subtest("invalid-flag")
invalid_flag(fd);
--
2.41.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/intel/xe_waitfence: add positive subtest with eci engine provided
2023-11-15 15:56 [igt-dev] [PATCH i-g-t] tests/intel/xe_waitfence: add positive subtest with eci engine provided Daniel Mrzyglod
@ 2023-11-15 17:09 ` Kamil Konieczny
2023-11-15 20:10 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork
` (9 subsequent siblings)
10 siblings, 0 replies; 15+ messages in thread
From: Kamil Konieczny @ 2023-11-15 17:09 UTC (permalink / raw)
To: igt-dev
Hi Daniel,
On 2023-11-15 at 16:56:26 +0100, Daniel Mrzyglod wrote:
[PATCH i-g-t] tests/intel/xe_waitfence: add positive subtest with eci engine provided
imho better:
tests/intel/xe_waitfence: add subtest with provided engine class instance
> Postive tests to check XE_WAIT_USER_FENCE ioctl where
---- ^ ------ ^
s/Postive tests/Positive test/ (as you added only one new subtest).
> engine class instance is provided
---------------------------------- ^
Add dot at end of sentence.
>
> Signed-off-by: Daniel Mrzyglod <daniel.t.mrzyglod@intel.com>
> ---
> tests/intel/xe_waitfence.c | 37 +++++++++++++++++++++++++++++++++++++
> 1 file changed, 37 insertions(+)
>
> diff --git a/tests/intel/xe_waitfence.c b/tests/intel/xe_waitfence.c
> index ac7e99dde..dcf2908d6 100644
> --- a/tests/intel/xe_waitfence.c
> +++ b/tests/intel/xe_waitfence.c
> @@ -37,9 +37,30 @@ static void do_bind(int fd, uint32_t vm, uint32_t bo, uint64_t offset,
> xe_vm_bind_async(fd, vm, 0, bo, offset, addr, size, sync, 1);
> }
>
> +static int xe_wait_ufence_hasengine(int fd, uint64_t *addr, uint64_t value,
------------- ^ ---------------------- ^
Could you change this name? It is not library function so something like:
wait_with_engine_class or wait_with_eci would be better.
> + struct drm_xe_engine_class_instance *eci,
-------------- ^
> + int64_t timeout)
-------------- ^
Align this after opening '(' (see other function here).
> +{
> + struct drm_xe_wait_user_fence wait = {
> + .addr = to_user_pointer(addr),
> + .op = DRM_XE_UFENCE_WAIT_EQ,
> + .flags = !eci ? 0 : DRM_XE_UFENCE_WAIT_ABSTIME,
> + .value = value,
> + .mask = DRM_XE_UFENCE_WAIT_U64,
> + .timeout = timeout,
> + .num_engines = eci ? 1 :0,
------------------------------- ^
Add space after ':'.
> + .instances = eci ? to_user_pointer(eci) : 0,
> + };
> +
> + igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_WAIT_USER_FENCE, &wait), 0);
> +
> + return wait.timeout;
> +}
> +
> enum waittype {
> RELTIME,
> ABSTIME,
> + HASENGINE,
> };
>
> /**
> @@ -50,10 +71,16 @@ enum waittype {
> * SUBTEST: abstime
> * Description: Check basic waitfences functionality with timeout
> * passed as absolute time in nanoseconds
> + *
> + * SUBTEST: hasengine
> + * Description: Check basic waitfences functionality with timeout
> + * passed as relative time in nanoseconds and provide engine class
> + * instance
> */
> static void
> waitfence(int fd, enum waittype wt)
> {
> + struct drm_xe_engine_class_instance *eci;
> uint32_t bo_1;
> uint32_t bo_2;
> uint32_t bo_3;
> @@ -83,6 +110,11 @@ waitfence(int fd, enum waittype wt)
> timeout = xe_wait_ufence(fd, &wait_fence, 7, NULL, MS_TO_NS(10));
> igt_debug("wait type: RELTIME - timeout: %ld, timeout left: %ld\n",
> MS_TO_NS(10), timeout);
> + } else if (wt == HASENGINE) {
> + eci = xe_hw_engine(fd, 1);
> + timeout = xe_wait_ufence_hasengine(fd, &wait_fence, 7, eci, MS_TO_NS(10));
> + igt_debug("wait type: RELTIME - timeout: %ld, timeout left: %ld\n",
> + MS_TO_NS(10), timeout);
> } else {
> struct timespec ts;
> int64_t current, signalled;
> @@ -192,6 +224,8 @@ invalid_engine(int fd)
> }
>
>
> +
> +
Remove this two empyt lines.
Regards,
Kamil
> igt_main
> {
> int fd;
> @@ -205,6 +239,9 @@ igt_main
> igt_subtest("abstime")
> waitfence(fd, ABSTIME);
>
> + igt_subtest("hasengine")
> + waitfence(fd, HASENGINE);
> +
> igt_subtest("invalid-flag")
> invalid_flag(fd);
>
> --
> 2.41.0
>
^ permalink raw reply [flat|nested] 15+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for tests/intel/xe_waitfence: add positive subtest with eci engine provided
2023-11-15 15:56 [igt-dev] [PATCH i-g-t] tests/intel/xe_waitfence: add positive subtest with eci engine provided Daniel Mrzyglod
2023-11-15 17:09 ` Kamil Konieczny
@ 2023-11-15 20:10 ` Patchwork
2023-11-17 9:28 ` [igt-dev] [PATCH i-g-t v2] tests/intel/xe_waitfence: add subtest with provided engine class instance Daniel Mrzyglod
` (8 subsequent siblings)
10 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2023-11-15 20:10 UTC (permalink / raw)
To: Daniel Mrzyglod; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4954 bytes --]
== Series Details ==
Series: tests/intel/xe_waitfence: add positive subtest with eci engine provided
URL : https://patchwork.freedesktop.org/series/126483/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7590_BAT -> XEIGTPW_10196_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_10196_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_exec_fault_mode@many-basic:
- bat-dg2-oem2: NOTRUN -> [SKIP][1] ([Intel XE#288]) +17 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10196/bat-dg2-oem2/igt@xe_exec_fault_mode@many-basic.html
#### Possible fixes ####
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-adlp-7: [FAIL][2] ([i915#2346]) -> [PASS][3]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7590/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10196/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_flip@basic-flip-vs-wf_vblank@d-dp3:
- bat-dg2-oem2: [FAIL][4] ([Intel XE#480]) -> [PASS][5] +1 other test pass
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7590/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank@d-dp3.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10196/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank@d-dp3.html
* igt@kms_pipe_crc_basic@hang-read-crc:
- bat-dg2-oem2: [INCOMPLETE][6] ([Intel XE#282] / [Intel XE#749]) -> [PASS][7]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7590/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10196/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc.html
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-3:
- bat-dg2-oem2: [INCOMPLETE][8] ([Intel XE#282] / [Intel XE#545]) -> [PASS][9]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7590/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-3.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10196/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-3.html
#### Warnings ####
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12:
- bat-dg2-oem2: [TIMEOUT][10] ([Intel XE#430] / [Intel XE#530]) -> [FAIL][11] ([Intel XE#400] / [Intel XE#616])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7590/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10196/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-3:
- bat-dg2-oem2: [TIMEOUT][12] ([Intel XE#530]) -> [FAIL][13] ([Intel XE#400] / [Intel XE#616])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7590/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-3.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10196/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-d-dp-3.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/400
[Intel XE#430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/430
[Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
[Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524
[Intel XE#530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/530
[Intel XE#545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/545
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#749]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/749
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
Build changes
-------------
* IGT: IGT_7590 -> IGTPW_10196
* Linux: xe-492-14d1d786caacdb3438d07ab86fabf2e36c8151cc -> xe-493-eba8bfb1dc87535362e28de282addc8752204df4
IGTPW_10196: 10196
IGT_7590: c484e1422184a3183d11f1595e53a6715574520f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-492-14d1d786caacdb3438d07ab86fabf2e36c8151cc: 14d1d786caacdb3438d07ab86fabf2e36c8151cc
xe-493-eba8bfb1dc87535362e28de282addc8752204df4: eba8bfb1dc87535362e28de282addc8752204df4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10196/index.html
[-- Attachment #2: Type: text/html, Size: 5809 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* [igt-dev] [PATCH i-g-t v2] tests/intel/xe_waitfence: add subtest with provided engine class instance
2023-11-15 15:56 [igt-dev] [PATCH i-g-t] tests/intel/xe_waitfence: add positive subtest with eci engine provided Daniel Mrzyglod
2023-11-15 17:09 ` Kamil Konieczny
2023-11-15 20:10 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork
@ 2023-11-17 9:28 ` Daniel Mrzyglod
2023-11-20 16:15 ` Kamil Konieczny
2023-11-17 10:17 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/intel/xe_waitfence: add positive subtest with eci engine provided (rev2) Patchwork
` (7 subsequent siblings)
10 siblings, 1 reply; 15+ messages in thread
From: Daniel Mrzyglod @ 2023-11-17 9:28 UTC (permalink / raw)
To: igt-dev
Postive test to check XE_WAIT_USER_FENCE ioctl where
engine class instance is provided.
v2: Fix review comments (Kamil)
provide ABSTIME as proper time format
Signed-off-by: Daniel Mrzyglod <daniel.t.mrzyglod@intel.com>
---
tests/intel/xe_waitfence.c | 48 +++++++++++++++++++++++++++++++++++---
1 file changed, 45 insertions(+), 3 deletions(-)
diff --git a/tests/intel/xe_waitfence.c b/tests/intel/xe_waitfence.c
index ac7e99dde..a88d3b9af 100644
--- a/tests/intel/xe_waitfence.c
+++ b/tests/intel/xe_waitfence.c
@@ -37,9 +37,32 @@ static void do_bind(int fd, uint32_t vm, uint32_t bo, uint64_t offset,
xe_vm_bind_async(fd, vm, 0, bo, offset, addr, size, sync, 1);
}
+static int64_t wait_with_eci_abstime(int fd, uint64_t *addr, uint64_t value,
+ struct drm_xe_engine_class_instance *eci,
+ int64_t timeout)
+{
+ struct drm_xe_wait_user_fence wait = {
+ .addr = to_user_pointer(addr),
+ .op = DRM_XE_UFENCE_WAIT_EQ,
+ .flags = !eci ? 0 : DRM_XE_UFENCE_WAIT_ABSTIME,
+ .value = value,
+ .mask = DRM_XE_UFENCE_WAIT_U64,
+ .timeout = timeout,
+ .num_engines = eci ? 1 : 0,
+ .instances = eci ? to_user_pointer(eci) : 0,
+ };
+ struct timespec ts;
+
+ igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_WAIT_USER_FENCE, &wait), 0);
+ igt_assert_eq(clock_gettime(CLOCK_MONOTONIC, &ts), 0);
+
+ return ts.tv_sec * 1e9 + ts.tv_nsec;
+}
+
enum waittype {
RELTIME,
ABSTIME,
+ ENGINE,
};
/**
@@ -50,10 +73,18 @@ enum waittype {
* SUBTEST: abstime
* Description: Check basic waitfences functionality with timeout
* passed as absolute time in nanoseconds
+ *
+ * SUBTEST: engine
+ * Description: Check basic waitfences functionality with timeout
+ * passed as relative time in nanoseconds and provide engine class
+ * instance
*/
static void
waitfence(int fd, enum waittype wt)
{
+ struct drm_xe_engine_class_instance *eci = NULL;
+ struct timespec ts;
+ int64_t current, signalled;
uint32_t bo_1;
uint32_t bo_2;
uint32_t bo_3;
@@ -83,10 +114,18 @@ waitfence(int fd, enum waittype wt)
timeout = xe_wait_ufence(fd, &wait_fence, 7, NULL, MS_TO_NS(10));
igt_debug("wait type: RELTIME - timeout: %ld, timeout left: %ld\n",
MS_TO_NS(10), timeout);
+ } else if (wt == ENGINE) {
+ eci = xe_hw_engine(fd, 1);
+ igt_assert(eci);
+ clock_gettime(CLOCK_MONOTONIC, &ts);
+ current = ts.tv_sec * 1e9 + ts.tv_nsec;
+ timeout = current + MS_TO_NS(10);
+ signalled = wait_with_eci_abstime(fd, &wait_fence, 7, eci, timeout);
+ igt_debug("wait type: ENGINE ABSTIME - timeout: %" PRId64
+ ", signalled: %" PRId64
+ ", elapsed: %" PRId64 "\n",
+ timeout, signalled, signalled - current);
} else {
- struct timespec ts;
- int64_t current, signalled;
-
clock_gettime(CLOCK_MONOTONIC, &ts);
current = ts.tv_sec * 1e9 + ts.tv_nsec;
timeout = current + MS_TO_NS(10);
@@ -205,6 +244,9 @@ igt_main
igt_subtest("abstime")
waitfence(fd, ABSTIME);
+ igt_subtest("engine")
+ waitfence(fd, ENGINE);
+
igt_subtest("invalid-flag")
invalid_flag(fd);
--
2.41.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for tests/intel/xe_waitfence: add positive subtest with eci engine provided (rev2)
2023-11-15 15:56 [igt-dev] [PATCH i-g-t] tests/intel/xe_waitfence: add positive subtest with eci engine provided Daniel Mrzyglod
` (2 preceding siblings ...)
2023-11-17 9:28 ` [igt-dev] [PATCH i-g-t v2] tests/intel/xe_waitfence: add subtest with provided engine class instance Daniel Mrzyglod
@ 2023-11-17 10:17 ` Patchwork
2023-11-21 10:14 ` [igt-dev] [PATCH i-g-t v3] tests/intel/xe_waitfence: add subtest with provided engine class instance Daniel Mrzyglod
` (6 subsequent siblings)
10 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2023-11-17 10:17 UTC (permalink / raw)
To: Daniel Mrzyglod; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 9988 bytes --]
== Series Details ==
Series: tests/intel/xe_waitfence: add positive subtest with eci engine provided (rev2)
URL : https://patchwork.freedesktop.org/series/126483/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7592 -> IGTPW_10208
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10208 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10208, please notify your bug team (lgci.bug.filing@intel.com) 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_10208/index.html
Participating hosts (38 -> 36)
------------------------------
Additional (1): bat-dg2-8
Missing (3): bat-kbl-2 bat-dg2-9 fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10208:
### IGT changes ###
#### Possible regressions ####
* igt@i915_pm_rpm@module-reload:
- fi-hsw-4770: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10208/fi-hsw-4770/igt@i915_pm_rpm@module-reload.html
Known issues
------------
Here are the changes found in IGTPW_10208 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_lmem_swapping@verify-random:
- fi-hsw-4770: NOTRUN -> [SKIP][2] ([fdo#109271]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10208/fi-hsw-4770/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- bat-dg2-8: NOTRUN -> [SKIP][3] ([i915#4083])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10208/bat-dg2-8/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-dg2-8: NOTRUN -> [SKIP][4] ([i915#4077]) +2 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10208/bat-dg2-8/igt@gem_mmap_gtt@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg2-8: NOTRUN -> [SKIP][5] ([i915#4079]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10208/bat-dg2-8/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-8: NOTRUN -> [SKIP][6] ([i915#6621])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10208/bat-dg2-8/igt@i915_pm_rps@basic-api.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-dg2-8: NOTRUN -> [SKIP][7] ([i915#6645])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10208/bat-dg2-8/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-8: NOTRUN -> [SKIP][8] ([i915#5190])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10208/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-8: NOTRUN -> [SKIP][9] ([i915#4215] / [i915#5190])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10208/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- bat-dg2-8: NOTRUN -> [SKIP][10] ([i915#4212]) +6 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10208/bat-dg2-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- bat-dg2-8: NOTRUN -> [SKIP][11] ([i915#4212] / [i915#5608])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10208/bat-dg2-8/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg2-8: NOTRUN -> [SKIP][12] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10208/bat-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-8: NOTRUN -> [SKIP][13] ([fdo#109285])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10208/bat-dg2-8/igt@kms_force_connector_basic@force-load-detect.html
- bat-adlp-6: NOTRUN -> [SKIP][14] ([fdo#109285])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10208/bat-adlp-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-8: NOTRUN -> [SKIP][15] ([i915#5274])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10208/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-2:
- bat-dg1-5: [PASS][16] -> [FAIL][17] ([fdo#103375]) +4 other tests fail
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7592/bat-dg1-5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-2.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10208/bat-dg1-5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-d-hdmi-a-2.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-8: NOTRUN -> [SKIP][18] ([i915#3555] / [i915#4098])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10208/bat-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-8: NOTRUN -> [SKIP][19] ([i915#3708])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10208/bat-dg2-8/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-8: NOTRUN -> [SKIP][20] ([i915#3708] / [i915#4077]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10208/bat-dg2-8/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- bat-dg2-8: NOTRUN -> [SKIP][21] ([i915#3291] / [i915#3708]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10208/bat-dg2-8/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_suspend@basic-s3-without-i915:
- bat-adlp-9: [INCOMPLETE][22] ([i915#7443]) -> [PASS][23]
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7592/bat-adlp-9/igt@i915_suspend@basic-s3-without-i915.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10208/bat-adlp-9/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_flip@basic-flip-vs-modeset@a-edp1:
- bat-adlp-6: [INCOMPLETE][24] -> [PASS][25]
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7592/bat-adlp-6/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10208/bat-adlp-6/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html
* igt@vgem_basic@unload:
- fi-hsw-4770: [INCOMPLETE][26] -> [PASS][27]
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7592/fi-hsw-4770/igt@vgem_basic@unload.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10208/fi-hsw-4770/igt@vgem_basic@unload.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@basic:
- bat-mtlp-6: [SKIP][28] ([i915#4342]) -> [SKIP][29] ([i915#4342] / [i915#5354])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7592/bat-mtlp-6/igt@kms_frontbuffer_tracking@basic.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10208/bat-mtlp-6/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#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4342]: https://gitlab.freedesktop.org/drm/intel/issues/4342
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#7359]: https://gitlab.freedesktop.org/drm/intel/issues/7359
[i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8981]: https://gitlab.freedesktop.org/drm/intel/issues/8981
[i915#9648]: https://gitlab.freedesktop.org/drm/intel/issues/9648
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7592 -> IGTPW_10208
CI-20190529: 20190529
CI_DRM_13885: 346f47e69d27a4b3177c2939b1f6f26d093ad8c4 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10208: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10208/index.html
IGT_7592: 7a525cfbc2a9a1dac2ae4e1d180a31d95b374c3d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@xe_waitfence@engine
-igt@kms_pipe_crc_basic@darkscreen-read-crc
-igt@kms_pipe_crc_basic@negative-darkscreen-read-crc
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10208/index.html
[-- Attachment #2: Type: text/html, Size: 11404 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v2] tests/intel/xe_waitfence: add subtest with provided engine class instance
2023-11-17 9:28 ` [igt-dev] [PATCH i-g-t v2] tests/intel/xe_waitfence: add subtest with provided engine class instance Daniel Mrzyglod
@ 2023-11-20 16:15 ` Kamil Konieczny
0 siblings, 0 replies; 15+ messages in thread
From: Kamil Konieczny @ 2023-11-20 16:15 UTC (permalink / raw)
To: igt-dev
Hi Daniel,
On 2023-11-17 at 10:28:29 +0100, Daniel Mrzyglod wrote:
> Postive test to check XE_WAIT_USER_FENCE ioctl where
> engine class instance is provided.
There were xe drm-uapi changes merged recently so you need to correct
op/flags in few places.
>
> v2: Fix review comments (Kamil)
> provide ABSTIME as proper time format
>
> Signed-off-by: Daniel Mrzyglod <daniel.t.mrzyglod@intel.com>
> ---
> tests/intel/xe_waitfence.c | 48 +++++++++++++++++++++++++++++++++++---
> 1 file changed, 45 insertions(+), 3 deletions(-)
>
> diff --git a/tests/intel/xe_waitfence.c b/tests/intel/xe_waitfence.c
> index ac7e99dde..a88d3b9af 100644
> --- a/tests/intel/xe_waitfence.c
> +++ b/tests/intel/xe_waitfence.c
> @@ -37,9 +37,32 @@ static void do_bind(int fd, uint32_t vm, uint32_t bo, uint64_t offset,
> xe_vm_bind_async(fd, vm, 0, bo, offset, addr, size, sync, 1);
> }
>
> +static int64_t wait_with_eci_abstime(int fd, uint64_t *addr, uint64_t value,
> + struct drm_xe_engine_class_instance *eci,
> + int64_t timeout)
> +{
> + struct drm_xe_wait_user_fence wait = {
> + .addr = to_user_pointer(addr),
> + .op = DRM_XE_UFENCE_WAIT_EQ,
.op = DRM_XE_UFENCE_WAIT_OP_EQ,
> + .flags = !eci ? 0 : DRM_XE_UFENCE_WAIT_ABSTIME,
DRM_XE_UFENCE_WAIT_FLAG_ABSTIME
> + .value = value,
> + .mask = DRM_XE_UFENCE_WAIT_U64,
DRM_XE_UFENCE_WAIT_FLAG_ABSTIME
Regards,
Kamil
> + .timeout = timeout,
> + .num_engines = eci ? 1 : 0,
> + .instances = eci ? to_user_pointer(eci) : 0,
> + };
> + struct timespec ts;
> +
> + igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_WAIT_USER_FENCE, &wait), 0);
> + igt_assert_eq(clock_gettime(CLOCK_MONOTONIC, &ts), 0);
> +
> + return ts.tv_sec * 1e9 + ts.tv_nsec;
> +}
> +
> enum waittype {
> RELTIME,
> ABSTIME,
> + ENGINE,
> };
>
> /**
> @@ -50,10 +73,18 @@ enum waittype {
> * SUBTEST: abstime
> * Description: Check basic waitfences functionality with timeout
> * passed as absolute time in nanoseconds
> + *
> + * SUBTEST: engine
> + * Description: Check basic waitfences functionality with timeout
> + * passed as relative time in nanoseconds and provide engine class
> + * instance
> */
> static void
> waitfence(int fd, enum waittype wt)
> {
> + struct drm_xe_engine_class_instance *eci = NULL;
> + struct timespec ts;
> + int64_t current, signalled;
> uint32_t bo_1;
> uint32_t bo_2;
> uint32_t bo_3;
> @@ -83,10 +114,18 @@ waitfence(int fd, enum waittype wt)
> timeout = xe_wait_ufence(fd, &wait_fence, 7, NULL, MS_TO_NS(10));
> igt_debug("wait type: RELTIME - timeout: %ld, timeout left: %ld\n",
> MS_TO_NS(10), timeout);
> + } else if (wt == ENGINE) {
> + eci = xe_hw_engine(fd, 1);
> + igt_assert(eci);
> + clock_gettime(CLOCK_MONOTONIC, &ts);
> + current = ts.tv_sec * 1e9 + ts.tv_nsec;
> + timeout = current + MS_TO_NS(10);
> + signalled = wait_with_eci_abstime(fd, &wait_fence, 7, eci, timeout);
> + igt_debug("wait type: ENGINE ABSTIME - timeout: %" PRId64
> + ", signalled: %" PRId64
> + ", elapsed: %" PRId64 "\n",
> + timeout, signalled, signalled - current);
> } else {
> - struct timespec ts;
> - int64_t current, signalled;
> -
> clock_gettime(CLOCK_MONOTONIC, &ts);
> current = ts.tv_sec * 1e9 + ts.tv_nsec;
> timeout = current + MS_TO_NS(10);
> @@ -205,6 +244,9 @@ igt_main
> igt_subtest("abstime")
> waitfence(fd, ABSTIME);
>
> + igt_subtest("engine")
> + waitfence(fd, ENGINE);
> +
> igt_subtest("invalid-flag")
> invalid_flag(fd);
>
> --
> 2.41.0
>
^ permalink raw reply [flat|nested] 15+ messages in thread
* [igt-dev] [PATCH i-g-t v3] tests/intel/xe_waitfence: add subtest with provided engine class instance
2023-11-15 15:56 [igt-dev] [PATCH i-g-t] tests/intel/xe_waitfence: add positive subtest with eci engine provided Daniel Mrzyglod
` (3 preceding siblings ...)
2023-11-17 10:17 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/intel/xe_waitfence: add positive subtest with eci engine provided (rev2) Patchwork
@ 2023-11-21 10:14 ` Daniel Mrzyglod
2023-11-22 15:48 ` Kamil Konieczny
2023-11-21 14:01 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/intel/xe_waitfence: add positive subtest with eci engine provided (rev3) Patchwork
` (5 subsequent siblings)
10 siblings, 1 reply; 15+ messages in thread
From: Daniel Mrzyglod @ 2023-11-21 10:14 UTC (permalink / raw)
To: igt-dev
Postive test to check XE_WAIT_USER_FENCE ioctl where
engine class instance is provided.
v2: Fix review comments (Kamil)
provide ABSTIME as proper time format.
v3: Fix review comments (Kamil)
recent uapi defines changes
Signed-off-by: Daniel Mrzyglod <daniel.t.mrzyglod@intel.com>
---
tests/intel/xe_waitfence.c | 48 +++++++++++++++++++++++++++++++++++---
1 file changed, 45 insertions(+), 3 deletions(-)
diff --git a/tests/intel/xe_waitfence.c b/tests/intel/xe_waitfence.c
index b1cae0d9b..ed672de0c 100644
--- a/tests/intel/xe_waitfence.c
+++ b/tests/intel/xe_waitfence.c
@@ -37,9 +37,32 @@ static void do_bind(int fd, uint32_t vm, uint32_t bo, uint64_t offset,
xe_vm_bind_async(fd, vm, 0, bo, offset, addr, size, sync, 1);
}
+static int64_t wait_with_eci_abstime(int fd, uint64_t *addr, uint64_t value,
+ struct drm_xe_engine_class_instance *eci,
+ int64_t timeout)
+{
+ struct drm_xe_wait_user_fence wait = {
+ .addr = to_user_pointer(addr),
+ .op = DRM_XE_UFENCE_WAIT_OP_EQ,
+ .flags = !eci ? 0 : DRM_XE_UFENCE_WAIT_FLAG_ABSTIME,
+ .value = value,
+ .mask = DRM_XE_UFENCE_WAIT_MASK_U64,
+ .timeout = timeout,
+ .num_engines = eci ? 1 : 0,
+ .instances = eci ? to_user_pointer(eci) : 0,
+ };
+ struct timespec ts;
+
+ igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_WAIT_USER_FENCE, &wait), 0);
+ igt_assert_eq(clock_gettime(CLOCK_MONOTONIC, &ts), 0);
+
+ return ts.tv_sec * 1e9 + ts.tv_nsec;
+}
+
enum waittype {
RELTIME,
ABSTIME,
+ ENGINE,
};
/**
@@ -50,10 +73,18 @@ enum waittype {
* SUBTEST: abstime
* Description: Check basic waitfences functionality with timeout
* passed as absolute time in nanoseconds
+ *
+ * SUBTEST: engine
+ * Description: Check basic waitfences functionality with timeout
+ * passed as relative time in nanoseconds and provide engine class
+ * instance
*/
static void
waitfence(int fd, enum waittype wt)
{
+ struct drm_xe_engine_class_instance *eci = NULL;
+ struct timespec ts;
+ int64_t current, signalled;
uint32_t bo_1;
uint32_t bo_2;
uint32_t bo_3;
@@ -83,10 +114,18 @@ waitfence(int fd, enum waittype wt)
timeout = xe_wait_ufence(fd, &wait_fence, 7, NULL, MS_TO_NS(10));
igt_debug("wait type: RELTIME - timeout: %ld, timeout left: %ld\n",
MS_TO_NS(10), timeout);
+ } else if (wt == ENGINE) {
+ eci = xe_hw_engine(fd, 1);
+ igt_assert(eci);
+ clock_gettime(CLOCK_MONOTONIC, &ts);
+ current = ts.tv_sec * 1e9 + ts.tv_nsec;
+ timeout = current + MS_TO_NS(10);
+ signalled = wait_with_eci_abstime(fd, &wait_fence, 7, eci, timeout);
+ igt_debug("wait type: ENGINE ABSTIME - timeout: %" PRId64
+ ", signalled: %" PRId64
+ ", elapsed: %" PRId64 "\n",
+ timeout, signalled, signalled - current);
} else {
- struct timespec ts;
- int64_t current, signalled;
-
clock_gettime(CLOCK_MONOTONIC, &ts);
current = ts.tv_sec * 1e9 + ts.tv_nsec;
timeout = current + MS_TO_NS(10);
@@ -205,6 +244,9 @@ igt_main
igt_subtest("abstime")
waitfence(fd, ABSTIME);
+ igt_subtest("engine")
+ waitfence(fd, ENGINE);
+
igt_subtest("invalid-flag")
invalid_flag(fd);
--
2.42.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [igt-dev] ✗ Fi.CI.BAT: failure for tests/intel/xe_waitfence: add positive subtest with eci engine provided (rev3)
2023-11-15 15:56 [igt-dev] [PATCH i-g-t] tests/intel/xe_waitfence: add positive subtest with eci engine provided Daniel Mrzyglod
` (4 preceding siblings ...)
2023-11-21 10:14 ` [igt-dev] [PATCH i-g-t v3] tests/intel/xe_waitfence: add subtest with provided engine class instance Daniel Mrzyglod
@ 2023-11-21 14:01 ` Patchwork
2023-11-21 15:24 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork
` (4 subsequent siblings)
10 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2023-11-21 14:01 UTC (permalink / raw)
To: Daniel Mrzyglod; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 12910 bytes --]
== Series Details ==
Series: tests/intel/xe_waitfence: add positive subtest with eci engine provided (rev3)
URL : https://patchwork.freedesktop.org/series/126483/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13905 -> IGTPW_10230
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10230 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10230, please notify your bug team (lgci.bug.filing@intel.com) 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_10230/index.html
Participating hosts (27 -> 32)
------------------------------
Additional (6): bat-kbl-2 bat-dg2-9 fi-pnv-d510 bat-dg2-14 bat-dg2-13 bat-dg2-11
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10230:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_suspend@basic-s3@smem:
- fi-kbl-7567u: NOTRUN -> [ABORT][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/fi-kbl-7567u/igt@gem_exec_suspend@basic-s3@smem.html
Known issues
------------
Here are the changes found in IGTPW_10230 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@info:
- bat-kbl-2: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#1849])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-kbl-2/igt@fbdev@info.html
* igt@gem_exec_suspend@basic-s0@lmem0:
- bat-dg2-9: NOTRUN -> [INCOMPLETE][3] ([i915#9275])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html
* igt@gem_lmem_swapping@basic:
- fi-pnv-d510: NOTRUN -> [SKIP][4] ([fdo#109271]) +25 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/fi-pnv-d510/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-kbl-2: NOTRUN -> [SKIP][5] ([fdo#109271]) +20 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_mmap@basic:
- bat-dg2-9: NOTRUN -> [SKIP][6] ([i915#4083])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-9/igt@gem_mmap@basic.html
- bat-dg2-11: NOTRUN -> [SKIP][7] ([i915#4083])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-11/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-dg2-9: NOTRUN -> [SKIP][8] ([i915#4077]) +2 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-9/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-9: NOTRUN -> [SKIP][9] ([i915#4079]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-9/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-dg2-11: NOTRUN -> [SKIP][10] ([i915#4077]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-11/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg2-11: NOTRUN -> [SKIP][11] ([i915#4079]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-11/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-9: NOTRUN -> [SKIP][12] ([i915#6621])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-9/igt@i915_pm_rps@basic-api.html
- bat-dg2-11: NOTRUN -> [SKIP][13] ([i915#6621])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-11/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@gt_heartbeat:
- fi-apl-guc: [PASS][14] -> [DMESG-FAIL][15] ([i915#5334])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13905/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- bat-dg2-11: NOTRUN -> [SKIP][16] ([i915#4212]) +6 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][17] ([i915#5190])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-dg2-11: NOTRUN -> [SKIP][18] ([i915#5190])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][19] ([i915#4215] / [i915#5190])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- bat-dg2-11: NOTRUN -> [SKIP][20] ([i915#4215] / [i915#5190])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- bat-dg2-9: NOTRUN -> [SKIP][21] ([i915#4212]) +6 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- bat-dg2-9: NOTRUN -> [SKIP][22] ([i915#4212] / [i915#5608])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-9/igt@kms_addfb_basic@tile-pitch-mismatch.html
- bat-dg2-11: NOTRUN -> [SKIP][23] ([i915#4212] / [i915#5608])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-11/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- bat-dg2-11: NOTRUN -> [SKIP][24] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][25] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-dg2-11: NOTRUN -> [SKIP][26] ([i915#3555] / [i915#3840])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-11/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-9: NOTRUN -> [SKIP][27] ([fdo#109285])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html
- bat-dg2-11: NOTRUN -> [SKIP][28] ([fdo#109285])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-11/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-9: NOTRUN -> [SKIP][29] ([i915#5274])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-dg2-11: NOTRUN -> [SKIP][30] ([i915#5274])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- bat-kbl-2: NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#1845]) +14 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-kbl-2/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-9: NOTRUN -> [SKIP][32] ([i915#3555] / [i915#4098])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html
- bat-dg2-11: NOTRUN -> [SKIP][33] ([i915#3555] / [i915#4098])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-9: NOTRUN -> [SKIP][34] ([i915#3708])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html
- bat-dg2-11: NOTRUN -> [SKIP][35] ([i915#3708])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-11/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-11: NOTRUN -> [SKIP][36] ([i915#3708] / [i915#4077]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-11/igt@prime_vgem@basic-fence-mmap.html
- bat-dg2-9: NOTRUN -> [SKIP][37] ([i915#3708] / [i915#4077]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-read:
- bat-dg2-11: NOTRUN -> [SKIP][38] ([i915#3291] / [i915#3708]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-11/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- bat-dg2-9: NOTRUN -> [SKIP][39] ([i915#3291] / [i915#3708]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/bat-dg2-9/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_suspend@basic-s3-without-i915:
- fi-kbl-7567u: [INCOMPLETE][40] ([i915#4817]) -> [PASS][41]
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13905/fi-kbl-7567u/igt@i915_suspend@basic-s3-without-i915.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/fi-kbl-7567u/igt@i915_suspend@basic-s3-without-i915.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#484]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/484
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4550]: https://gitlab.freedesktop.org/drm/intel/issues/4550
[i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#7359]: https://gitlab.freedesktop.org/drm/intel/issues/7359
[i915#8981]: https://gitlab.freedesktop.org/drm/intel/issues/8981
[i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275
[i915#9648]: https://gitlab.freedesktop.org/drm/intel/issues/9648
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7595 -> IGTPW_10230
CI-20190529: 20190529
CI_DRM_13905: dbdb47c227dc21b7bf98ada039bf42aac4b58b8b @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10230: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/index.html
IGT_7595: cfa00d99b1dfa0621ea552d1ed54907798da1a1a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@xe_waitfence@engine
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/index.html
[-- Attachment #2: Type: text/html, Size: 16105 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for tests/intel/xe_waitfence: add positive subtest with eci engine provided (rev3)
2023-11-15 15:56 [igt-dev] [PATCH i-g-t] tests/intel/xe_waitfence: add positive subtest with eci engine provided Daniel Mrzyglod
` (5 preceding siblings ...)
2023-11-21 14:01 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/intel/xe_waitfence: add positive subtest with eci engine provided (rev3) Patchwork
@ 2023-11-21 15:24 ` Patchwork
2023-11-22 16:43 ` [igt-dev] [PATCH i-g-t v4] tests/intel/xe_waitfence: add subtest with provided engine class instance Daniel Mrzyglod
` (3 subsequent siblings)
10 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2023-11-21 15:24 UTC (permalink / raw)
To: Daniel Mrzyglod; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6103 bytes --]
== Series Details ==
Series: tests/intel/xe_waitfence: add positive subtest with eci engine provided (rev3)
URL : https://patchwork.freedesktop.org/series/126483/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7595_BAT -> XEIGTPW_10230_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_10230_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#939])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10230/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html
* igt@xe_guc_pc@freq_basic_api:
- bat-adlp-7: [PASS][3] -> [FAIL][4] ([Intel XE#935])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-adlp-7/igt@xe_guc_pc@freq_basic_api.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10230/bat-adlp-7/igt@xe_guc_pc@freq_basic_api.html
- bat-pvc-2: [PASS][5] -> [FAIL][6] ([Intel XE#935])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-pvc-2/igt@xe_guc_pc@freq_basic_api.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10230/bat-pvc-2/igt@xe_guc_pc@freq_basic_api.html
- bat-dg2-oem2: [PASS][7] -> [FAIL][8] ([Intel XE#935])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-dg2-oem2/igt@xe_guc_pc@freq_basic_api.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10230/bat-dg2-oem2/igt@xe_guc_pc@freq_basic_api.html
- bat-atsm-2: [PASS][9] -> [FAIL][10] ([Intel XE#935])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-atsm-2/igt@xe_guc_pc@freq_basic_api.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10230/bat-atsm-2/igt@xe_guc_pc@freq_basic_api.html
* igt@xe_guc_pc@freq_fixed_idle:
- bat-atsm-2: [PASS][11] -> [FAIL][12] ([Intel XE#940]) +1 other test fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-atsm-2/igt@xe_guc_pc@freq_fixed_idle.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10230/bat-atsm-2/igt@xe_guc_pc@freq_fixed_idle.html
- bat-dg2-oem2: [PASS][13] -> [FAIL][14] ([Intel XE#940]) +1 other test fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-dg2-oem2/igt@xe_guc_pc@freq_fixed_idle.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10230/bat-dg2-oem2/igt@xe_guc_pc@freq_fixed_idle.html
* igt@xe_guc_pc@freq_range_idle:
- bat-adlp-7: [PASS][15] -> [FAIL][16] ([Intel XE#940]) +1 other test fail
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-adlp-7/igt@xe_guc_pc@freq_range_idle.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10230/bat-adlp-7/igt@xe_guc_pc@freq_range_idle.html
#### Possible fixes ####
* igt@kms_cursor_legacy@basic-flip-before-cursor-legacy:
- bat-adlp-7: [FAIL][17] ([i915#2346]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10230/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-before-cursor-legacy.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [FAIL][19] ([Intel XE#616] / [Intel XE#750]) -> [DMESG-FAIL][20] ([Intel XE#282] / [i915#2017])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10230/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pipe_crc_basic@hang-read-crc:
- bat-dg2-oem2: [INCOMPLETE][21] ([Intel XE#749]) -> [INCOMPLETE][22] ([Intel XE#282] / [Intel XE#749])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10230/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc.html
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-3:
- bat-dg2-oem2: [INCOMPLETE][23] ([Intel XE#545]) -> [INCOMPLETE][24] ([Intel XE#282] / [Intel XE#545])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7595/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-3.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10230/bat-dg2-oem2/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-3.html
[Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
[Intel XE#545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/545
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#749]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/749
[Intel XE#750]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/750
[Intel XE#935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/935
[Intel XE#939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/939
[Intel XE#940]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/940
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
Build changes
-------------
* IGT: IGT_7595 -> IGTPW_10230
* Linux: xe-505-b25aa17bffa88c86fec716e40bdb3848eea17b23 -> xe-513-c9574aef8b5eb68398936c2c14fe4a54fa4e5849
IGTPW_10230: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10230/index.html
IGT_7595: cfa00d99b1dfa0621ea552d1ed54907798da1a1a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-505-b25aa17bffa88c86fec716e40bdb3848eea17b23: b25aa17bffa88c86fec716e40bdb3848eea17b23
xe-513-c9574aef8b5eb68398936c2c14fe4a54fa4e5849: c9574aef8b5eb68398936c2c14fe4a54fa4e5849
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10230/index.html
[-- Attachment #2: Type: text/html, Size: 7536 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v3] tests/intel/xe_waitfence: add subtest with provided engine class instance
2023-11-21 10:14 ` [igt-dev] [PATCH i-g-t v3] tests/intel/xe_waitfence: add subtest with provided engine class instance Daniel Mrzyglod
@ 2023-11-22 15:48 ` Kamil Konieczny
0 siblings, 0 replies; 15+ messages in thread
From: Kamil Konieczny @ 2023-11-22 15:48 UTC (permalink / raw)
To: igt-dev
Hi Daniel,
On 2023-11-21 at 11:14:20 +0100, Daniel Mrzyglod wrote:
> Postive test to check XE_WAIT_USER_FENCE ioctl where
> engine class instance is provided.
>
> v2: Fix review comments (Kamil)
> provide ABSTIME as proper time format.
>
> v3: Fix review comments (Kamil)
> recent uapi defines changes
----- ^
imho: rebase after recent uapi changes
>
> Signed-off-by: Daniel Mrzyglod <daniel.t.mrzyglod@intel.com>
> ---
> tests/intel/xe_waitfence.c | 48 +++++++++++++++++++++++++++++++++++---
> 1 file changed, 45 insertions(+), 3 deletions(-)
>
> diff --git a/tests/intel/xe_waitfence.c b/tests/intel/xe_waitfence.c
> index b1cae0d9b..ed672de0c 100644
> --- a/tests/intel/xe_waitfence.c
> +++ b/tests/intel/xe_waitfence.c
> @@ -37,9 +37,32 @@ static void do_bind(int fd, uint32_t vm, uint32_t bo, uint64_t offset,
> xe_vm_bind_async(fd, vm, 0, bo, offset, addr, size, sync, 1);
> }
>
> +static int64_t wait_with_eci_abstime(int fd, uint64_t *addr, uint64_t value,
> + struct drm_xe_engine_class_instance *eci,
> + int64_t timeout)
> +{
> + struct drm_xe_wait_user_fence wait = {
> + .addr = to_user_pointer(addr),
> + .op = DRM_XE_UFENCE_WAIT_OP_EQ,
> + .flags = !eci ? 0 : DRM_XE_UFENCE_WAIT_FLAG_ABSTIME,
> + .value = value,
> + .mask = DRM_XE_UFENCE_WAIT_MASK_U64,
> + .timeout = timeout,
> + .num_engines = eci ? 1 : 0,
> + .instances = eci ? to_user_pointer(eci) : 0,
> + };
> + struct timespec ts;
> +
Add here igt_assert(eci) and simplify above code (no need for checks eci != NULL).
> + igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_WAIT_USER_FENCE, &wait), 0);
> + igt_assert_eq(clock_gettime(CLOCK_MONOTONIC, &ts), 0);
> +
> + return ts.tv_sec * 1e9 + ts.tv_nsec;
> +}
> +
> enum waittype {
> RELTIME,
> ABSTIME,
> + ENGINE,
> };
>
> /**
> @@ -50,10 +73,18 @@ enum waittype {
> * SUBTEST: abstime
> * Description: Check basic waitfences functionality with timeout
> * passed as absolute time in nanoseconds
> + *
> + * SUBTEST: engine
> + * Description: Check basic waitfences functionality with timeout
> + * passed as relative time in nanoseconds and provide engine class
---------------------------- ^
absolute
> + * instance
> */
> static void
> waitfence(int fd, enum waittype wt)
> {
> + struct drm_xe_engine_class_instance *eci = NULL;
> + struct timespec ts;
> + int64_t current, signalled;
> uint32_t bo_1;
> uint32_t bo_2;
> uint32_t bo_3;
> @@ -83,10 +114,18 @@ waitfence(int fd, enum waittype wt)
> timeout = xe_wait_ufence(fd, &wait_fence, 7, NULL, MS_TO_NS(10));
> igt_debug("wait type: RELTIME - timeout: %ld, timeout left: %ld\n",
> MS_TO_NS(10), timeout);
> + } else if (wt == ENGINE) {
> + eci = xe_hw_engine(fd, 1);
> + igt_assert(eci);
Copy this assert to wait_with_eci_abstime.
Regards,
Kamil
> + clock_gettime(CLOCK_MONOTONIC, &ts);
> + current = ts.tv_sec * 1e9 + ts.tv_nsec;
> + timeout = current + MS_TO_NS(10);
> + signalled = wait_with_eci_abstime(fd, &wait_fence, 7, eci, timeout);
> + igt_debug("wait type: ENGINE ABSTIME - timeout: %" PRId64
> + ", signalled: %" PRId64
> + ", elapsed: %" PRId64 "\n",
> + timeout, signalled, signalled - current);
> } else {
> - struct timespec ts;
> - int64_t current, signalled;
> -
> clock_gettime(CLOCK_MONOTONIC, &ts);
> current = ts.tv_sec * 1e9 + ts.tv_nsec;
> timeout = current + MS_TO_NS(10);
> @@ -205,6 +244,9 @@ igt_main
> igt_subtest("abstime")
> waitfence(fd, ABSTIME);
>
> + igt_subtest("engine")
> + waitfence(fd, ENGINE);
> +
> igt_subtest("invalid-flag")
> invalid_flag(fd);
>
> --
> 2.42.0
>
^ permalink raw reply [flat|nested] 15+ messages in thread
* [igt-dev] [PATCH i-g-t v4] tests/intel/xe_waitfence: add subtest with provided engine class instance
2023-11-15 15:56 [igt-dev] [PATCH i-g-t] tests/intel/xe_waitfence: add positive subtest with eci engine provided Daniel Mrzyglod
` (6 preceding siblings ...)
2023-11-21 15:24 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork
@ 2023-11-22 16:43 ` Daniel Mrzyglod
2023-11-23 8:51 ` Kamil Konieczny
2023-11-22 20:38 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/intel/xe_waitfence: add positive subtest with eci engine provided (rev4) Patchwork
` (2 subsequent siblings)
10 siblings, 1 reply; 15+ messages in thread
From: Daniel Mrzyglod @ 2023-11-22 16:43 UTC (permalink / raw)
To: igt-dev
Postive test to check XE_WAIT_USER_FENCE ioctl where
engine class instance is provided.
v2: Fix review comments (Kamil)
provide ABSTIME as proper time format.
v3: Fix review comments (Kamil)
rebase after recent uapi changes.
v4: Fix review comments (Kamil)
move assert to the function, fix subtest description
Signed-off-by: Daniel Mrzyglod <daniel.t.mrzyglod@intel.com>
---
tests/intel/xe_waitfence.c | 48 +++++++++++++++++++++++++++++++++++---
1 file changed, 45 insertions(+), 3 deletions(-)
diff --git a/tests/intel/xe_waitfence.c b/tests/intel/xe_waitfence.c
index b1cae0d9b..08d588add 100644
--- a/tests/intel/xe_waitfence.c
+++ b/tests/intel/xe_waitfence.c
@@ -37,9 +37,33 @@ static void do_bind(int fd, uint32_t vm, uint32_t bo, uint64_t offset,
xe_vm_bind_async(fd, vm, 0, bo, offset, addr, size, sync, 1);
}
+static int64_t wait_with_eci_abstime(int fd, uint64_t *addr, uint64_t value,
+ struct drm_xe_engine_class_instance *eci,
+ int64_t timeout)
+{
+ struct drm_xe_wait_user_fence wait = {
+ .addr = to_user_pointer(addr),
+ .op = DRM_XE_UFENCE_WAIT_OP_EQ,
+ .flags = !eci ? 0 : DRM_XE_UFENCE_WAIT_FLAG_ABSTIME,
+ .value = value,
+ .mask = DRM_XE_UFENCE_WAIT_MASK_U64,
+ .timeout = timeout,
+ .num_engines = eci ? 1 : 0,
+ .instances = eci ? to_user_pointer(eci) : 0,
+ };
+ struct timespec ts;
+
+ igt_assert(eci);
+ igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_WAIT_USER_FENCE, &wait), 0);
+ igt_assert_eq(clock_gettime(CLOCK_MONOTONIC, &ts), 0);
+
+ return ts.tv_sec * 1e9 + ts.tv_nsec;
+}
+
enum waittype {
RELTIME,
ABSTIME,
+ ENGINE,
};
/**
@@ -50,10 +74,18 @@ enum waittype {
* SUBTEST: abstime
* Description: Check basic waitfences functionality with timeout
* passed as absolute time in nanoseconds
+ *
+ * SUBTEST: engine
+ * Description: Check basic waitfences functionality with timeout
+ * passed as absolute time in nanoseconds and provide engine class
+ * instance
*/
static void
waitfence(int fd, enum waittype wt)
{
+ struct drm_xe_engine_class_instance *eci = NULL;
+ struct timespec ts;
+ int64_t current, signalled;
uint32_t bo_1;
uint32_t bo_2;
uint32_t bo_3;
@@ -83,10 +115,17 @@ waitfence(int fd, enum waittype wt)
timeout = xe_wait_ufence(fd, &wait_fence, 7, NULL, MS_TO_NS(10));
igt_debug("wait type: RELTIME - timeout: %ld, timeout left: %ld\n",
MS_TO_NS(10), timeout);
+ } else if (wt == ENGINE) {
+ eci = xe_hw_engine(fd, 1);
+ clock_gettime(CLOCK_MONOTONIC, &ts);
+ current = ts.tv_sec * 1e9 + ts.tv_nsec;
+ timeout = current + MS_TO_NS(10);
+ signalled = wait_with_eci_abstime(fd, &wait_fence, 7, eci, timeout);
+ igt_debug("wait type: ENGINE ABSTIME - timeout: %" PRId64
+ ", signalled: %" PRId64
+ ", elapsed: %" PRId64 "\n",
+ timeout, signalled, signalled - current);
} else {
- struct timespec ts;
- int64_t current, signalled;
-
clock_gettime(CLOCK_MONOTONIC, &ts);
current = ts.tv_sec * 1e9 + ts.tv_nsec;
timeout = current + MS_TO_NS(10);
@@ -205,6 +244,9 @@ igt_main
igt_subtest("abstime")
waitfence(fd, ABSTIME);
+ igt_subtest("engine")
+ waitfence(fd, ENGINE);
+
igt_subtest("invalid-flag")
invalid_flag(fd);
--
2.42.0
^ permalink raw reply related [flat|nested] 15+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/intel/xe_waitfence: add positive subtest with eci engine provided (rev4)
2023-11-15 15:56 [igt-dev] [PATCH i-g-t] tests/intel/xe_waitfence: add positive subtest with eci engine provided Daniel Mrzyglod
` (7 preceding siblings ...)
2023-11-22 16:43 ` [igt-dev] [PATCH i-g-t v4] tests/intel/xe_waitfence: add subtest with provided engine class instance Daniel Mrzyglod
@ 2023-11-22 20:38 ` Patchwork
2023-11-22 21:20 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
2023-11-23 23:16 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
10 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2023-11-22 20:38 UTC (permalink / raw)
To: Daniel Mrzyglod; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 10888 bytes --]
== Series Details ==
Series: tests/intel/xe_waitfence: add positive subtest with eci engine provided (rev4)
URL : https://patchwork.freedesktop.org/series/126483/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13911 -> IGTPW_10246
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/index.html
Participating hosts (38 -> 38)
------------------------------
Additional (2): bat-dg2-8 bat-dg2-9
Missing (2): bat-jsl-1 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_10246 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_mmap@basic:
- bat-dg2-9: NOTRUN -> [SKIP][1] ([i915#4083])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-9/igt@gem_mmap@basic.html
- bat-dg2-8: NOTRUN -> [SKIP][2] ([i915#4083])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-8/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-dg2-9: NOTRUN -> [SKIP][3] ([i915#4077]) +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-9/igt@gem_mmap_gtt@basic.html
- bat-dg2-8: NOTRUN -> [SKIP][4] ([i915#4077]) +2 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-8/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-9: NOTRUN -> [SKIP][5] ([i915#4079]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-9/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg2-8: NOTRUN -> [SKIP][6] ([i915#4079]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-8/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-9: NOTRUN -> [SKIP][7] ([i915#6621])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-9/igt@i915_pm_rps@basic-api.html
- bat-dg2-8: NOTRUN -> [SKIP][8] ([i915#6621])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-8/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@active:
- bat-rpls-1: [PASS][9] -> [INCOMPLETE][10] ([i915#9667])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/bat-rpls-1/igt@i915_selftest@live@active.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-rpls-1/igt@i915_selftest@live@active.html
* igt@i915_selftest@live@gem_contexts:
- bat-mtlp-8: [PASS][11] -> [DMESG-FAIL][12] ([i915#9579])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/bat-mtlp-8/igt@i915_selftest@live@gem_contexts.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-mtlp-8/igt@i915_selftest@live@gem_contexts.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-jsl-3: [PASS][13] -> [DMESG-WARN][14] ([i915#1982])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html
- bat-dg2-8: NOTRUN -> [SKIP][15] ([i915#6645])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-8/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][16] ([i915#5190])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- bat-dg2-8: NOTRUN -> [SKIP][17] ([i915#5190])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][18] ([i915#4215] / [i915#5190])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html
- bat-dg2-8: NOTRUN -> [SKIP][19] ([i915#4215] / [i915#5190])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- bat-dg2-9: NOTRUN -> [SKIP][20] ([i915#4212]) +6 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
- bat-dg2-8: NOTRUN -> [SKIP][21] ([i915#4212]) +6 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- bat-dg2-9: NOTRUN -> [SKIP][22] ([i915#4212] / [i915#5608])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-9/igt@kms_addfb_basic@tile-pitch-mismatch.html
- bat-dg2-8: NOTRUN -> [SKIP][23] ([i915#4212] / [i915#5608])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-8/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][24] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-dg2-8: NOTRUN -> [SKIP][25] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-9: NOTRUN -> [SKIP][26] ([fdo#109285])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html
- bat-dg2-8: NOTRUN -> [SKIP][27] ([fdo#109285])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-8/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-9: NOTRUN -> [SKIP][28] ([i915#5274])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html
- bat-dg2-8: NOTRUN -> [SKIP][29] ([i915#5274])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- bat-dg2-11: NOTRUN -> [SKIP][30] ([i915#1845] / [i915#9197])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-9: NOTRUN -> [SKIP][31] ([i915#3555] / [i915#4098])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html
- bat-dg2-8: NOTRUN -> [SKIP][32] ([i915#3555] / [i915#4098])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-9: NOTRUN -> [SKIP][33] ([i915#3708])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html
- bat-dg2-8: NOTRUN -> [SKIP][34] ([i915#3708])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-8/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-8: NOTRUN -> [SKIP][35] ([i915#3708] / [i915#4077]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-8/igt@prime_vgem@basic-fence-mmap.html
- bat-dg2-9: NOTRUN -> [SKIP][36] ([i915#3708] / [i915#4077]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- bat-dg2-9: NOTRUN -> [SKIP][37] ([i915#3291] / [i915#3708]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-9/igt@prime_vgem@basic-write.html
- bat-dg2-8: NOTRUN -> [SKIP][38] ([i915#3291] / [i915#3708]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/bat-dg2-8/igt@prime_vgem@basic-write.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#9197]: https://gitlab.freedesktop.org/drm/intel/issues/9197
[i915#9579]: https://gitlab.freedesktop.org/drm/intel/issues/9579
[i915#9667]: https://gitlab.freedesktop.org/drm/intel/issues/9667
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7597 -> IGTPW_10246
CI-20190529: 20190529
CI_DRM_13911: 5429d55de723544dfc0630cf39d96392052b27a1 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10246: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/index.html
IGT_7597: 380983dbd9bb2f7eea5e917e8fed0569bfe8cf9c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@xe_waitfence@engine
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/index.html
[-- Attachment #2: Type: text/html, Size: 14023 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for tests/intel/xe_waitfence: add positive subtest with eci engine provided (rev4)
2023-11-15 15:56 [igt-dev] [PATCH i-g-t] tests/intel/xe_waitfence: add positive subtest with eci engine provided Daniel Mrzyglod
` (8 preceding siblings ...)
2023-11-22 20:38 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/intel/xe_waitfence: add positive subtest with eci engine provided (rev4) Patchwork
@ 2023-11-22 21:20 ` Patchwork
2023-11-23 23:16 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
10 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2023-11-22 21:20 UTC (permalink / raw)
To: Daniel Mrzyglod; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1742 bytes --]
== Series Details ==
Series: tests/intel/xe_waitfence: add positive subtest with eci engine provided (rev4)
URL : https://patchwork.freedesktop.org/series/126483/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7597_BAT -> XEIGTPW_10246_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_10246_BAT that come from known issues:
### IGT changes ###
#### Warnings ####
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [DMESG-FAIL][1] ([Intel XE#282] / [i915#2017]) -> [FAIL][2] ([Intel XE#616] / [Intel XE#750])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7597/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10246/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#750]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/750
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
Build changes
-------------
* IGT: IGT_7597 -> IGTPW_10246
IGTPW_10246: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/index.html
IGT_7597: 380983dbd9bb2f7eea5e917e8fed0569bfe8cf9c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-516-59f2e73469cace9c78aab7506284ae446d57b8bc: 59f2e73469cace9c78aab7506284ae446d57b8bc
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10246/index.html
[-- Attachment #2: Type: text/html, Size: 2290 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v4] tests/intel/xe_waitfence: add subtest with provided engine class instance
2023-11-22 16:43 ` [igt-dev] [PATCH i-g-t v4] tests/intel/xe_waitfence: add subtest with provided engine class instance Daniel Mrzyglod
@ 2023-11-23 8:51 ` Kamil Konieczny
0 siblings, 0 replies; 15+ messages in thread
From: Kamil Konieczny @ 2023-11-23 8:51 UTC (permalink / raw)
To: igt-dev
Hi Daniel,
On 2023-11-22 at 17:43:17 +0100, Daniel Mrzyglod wrote:
> Postive test to check XE_WAIT_USER_FENCE ioctl where
> engine class instance is provided.
>
> v2: Fix review comments (Kamil)
> provide ABSTIME as proper time format.
>
> v3: Fix review comments (Kamil)
> rebase after recent uapi changes.
>
> v4: Fix review comments (Kamil)
> move assert to the function, fix subtest description
>
> Signed-off-by: Daniel Mrzyglod <daniel.t.mrzyglod@intel.com>
> ---
> tests/intel/xe_waitfence.c | 48 +++++++++++++++++++++++++++++++++++---
> 1 file changed, 45 insertions(+), 3 deletions(-)
>
> diff --git a/tests/intel/xe_waitfence.c b/tests/intel/xe_waitfence.c
> index b1cae0d9b..08d588add 100644
> --- a/tests/intel/xe_waitfence.c
> +++ b/tests/intel/xe_waitfence.c
> @@ -37,9 +37,33 @@ static void do_bind(int fd, uint32_t vm, uint32_t bo, uint64_t offset,
> xe_vm_bind_async(fd, vm, 0, bo, offset, addr, size, sync, 1);
> }
>
> +static int64_t wait_with_eci_abstime(int fd, uint64_t *addr, uint64_t value,
> + struct drm_xe_engine_class_instance *eci,
> + int64_t timeout)
> +{
> + struct drm_xe_wait_user_fence wait = {
> + .addr = to_user_pointer(addr),
> + .op = DRM_XE_UFENCE_WAIT_OP_EQ,
> + .flags = !eci ? 0 : DRM_XE_UFENCE_WAIT_FLAG_ABSTIME,
> + .value = value,
> + .mask = DRM_XE_UFENCE_WAIT_MASK_U64,
> + .timeout = timeout,
> + .num_engines = eci ? 1 : 0,
> + .instances = eci ? to_user_pointer(eci) : 0,
> + };
> + struct timespec ts;
> +
> + igt_assert(eci);
I wanted this assert here to simplify assignemnts above to:
.flags = DRM_XE_UFENCE_WAIT_FLAG_ABSTIME,
.num_engines = 1,
.instances = to_user_pointer(eci),
With or without this,
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Regards,
Kamil
> + igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_WAIT_USER_FENCE, &wait), 0);
> + igt_assert_eq(clock_gettime(CLOCK_MONOTONIC, &ts), 0);
> +
> + return ts.tv_sec * 1e9 + ts.tv_nsec;
> +}
> +
> enum waittype {
> RELTIME,
> ABSTIME,
> + ENGINE,
> };
>
> /**
> @@ -50,10 +74,18 @@ enum waittype {
> * SUBTEST: abstime
> * Description: Check basic waitfences functionality with timeout
> * passed as absolute time in nanoseconds
> + *
> + * SUBTEST: engine
> + * Description: Check basic waitfences functionality with timeout
> + * passed as absolute time in nanoseconds and provide engine class
> + * instance
> */
> static void
> waitfence(int fd, enum waittype wt)
> {
> + struct drm_xe_engine_class_instance *eci = NULL;
> + struct timespec ts;
> + int64_t current, signalled;
> uint32_t bo_1;
> uint32_t bo_2;
> uint32_t bo_3;
> @@ -83,10 +115,17 @@ waitfence(int fd, enum waittype wt)
> timeout = xe_wait_ufence(fd, &wait_fence, 7, NULL, MS_TO_NS(10));
> igt_debug("wait type: RELTIME - timeout: %ld, timeout left: %ld\n",
> MS_TO_NS(10), timeout);
> + } else if (wt == ENGINE) {
> + eci = xe_hw_engine(fd, 1);
> + clock_gettime(CLOCK_MONOTONIC, &ts);
> + current = ts.tv_sec * 1e9 + ts.tv_nsec;
> + timeout = current + MS_TO_NS(10);
> + signalled = wait_with_eci_abstime(fd, &wait_fence, 7, eci, timeout);
> + igt_debug("wait type: ENGINE ABSTIME - timeout: %" PRId64
> + ", signalled: %" PRId64
> + ", elapsed: %" PRId64 "\n",
> + timeout, signalled, signalled - current);
> } else {
> - struct timespec ts;
> - int64_t current, signalled;
> -
> clock_gettime(CLOCK_MONOTONIC, &ts);
> current = ts.tv_sec * 1e9 + ts.tv_nsec;
> timeout = current + MS_TO_NS(10);
> @@ -205,6 +244,9 @@ igt_main
> igt_subtest("abstime")
> waitfence(fd, ABSTIME);
>
> + igt_subtest("engine")
> + waitfence(fd, ENGINE);
> +
> igt_subtest("invalid-flag")
> invalid_flag(fd);
>
> --
> 2.42.0
>
^ permalink raw reply [flat|nested] 15+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/intel/xe_waitfence: add positive subtest with eci engine provided (rev4)
2023-11-15 15:56 [igt-dev] [PATCH i-g-t] tests/intel/xe_waitfence: add positive subtest with eci engine provided Daniel Mrzyglod
` (9 preceding siblings ...)
2023-11-22 21:20 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
@ 2023-11-23 23:16 ` Patchwork
10 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2023-11-23 23:16 UTC (permalink / raw)
To: Daniel Mrzyglod; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 61706 bytes --]
== Series Details ==
Series: tests/intel/xe_waitfence: add positive subtest with eci engine provided (rev4)
URL : https://patchwork.freedesktop.org/series/126483/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13911_full -> IGTPW_10246_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in IGTPW_10246_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][1] ([i915#8411])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-5/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg1: NOTRUN -> [SKIP][2] ([i915#8411])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-19/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@drm_fdinfo@most-busy-check-all@bcs0:
- shard-dg2: NOTRUN -> [SKIP][3] ([i915#8414]) +40 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-5/igt@drm_fdinfo@most-busy-check-all@bcs0.html
* igt@drm_fdinfo@virtual-busy-hang:
- shard-dg1: NOTRUN -> [SKIP][4] ([i915#8414]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-16/igt@drm_fdinfo@virtual-busy-hang.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-mtlp: NOTRUN -> [SKIP][5] ([i915#3281]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-2/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][6] ([i915#3936])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-3/igt@gem_busy@semaphore.html
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#3936])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-16/igt@gem_busy@semaphore.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][8] ([i915#7297])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#7697])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-11/igt@gem_close_race@multigpu-basic-threads.html
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#7697])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-7/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#6335])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-7/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][12] ([i915#8555]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@legacy-engines-hang:
- shard-snb: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#1099])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-snb4/igt@gem_ctx_persistence@legacy-engines-hang.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#5882]) +9 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-5/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#5882]) +5 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-5/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#280])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-7/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-tglu: [PASS][17] -> [ABORT][18] ([i915#7975] / [i915#8213] / [i915#8398])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-tglu-6/igt@gem_eio@hibernate.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-10/igt@gem_eio@hibernate.html
- shard-dg2: NOTRUN -> [ABORT][19] ([i915#7975] / [i915#8213])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-5/igt@gem_eio@hibernate.html
* igt@gem_eio@in-flight-internal-immediate:
- shard-mtlp: [PASS][20] -> [ABORT][21] ([i915#9414])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-6/igt@gem_eio@in-flight-internal-immediate.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-7/igt@gem_eio@in-flight-internal-immediate.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-mtlp: NOTRUN -> [FAIL][22] ([i915#9606])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-4/igt@gem_exec_capture@many-4k-incremental.html
- shard-dg2: NOTRUN -> [FAIL][23] ([i915#9606])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-10/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: NOTRUN -> [FAIL][24] ([i915#2842])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#3539])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-16/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-tglu: [PASS][26] -> [FAIL][27] ([i915#2842])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-tglu-7/igt@gem_exec_fair@basic-throttle@rcs0.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-3/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_fence@submit:
- shard-dg1: NOTRUN -> [SKIP][28] ([i915#4812])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-12/igt@gem_exec_fence@submit.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#4812]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-3/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) +6 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-10/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-dg1: NOTRUN -> [SKIP][31] ([i915#7697])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-16/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_params@secure-non-root:
- shard-dg2: NOTRUN -> [SKIP][32] ([fdo#112283])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-11/igt@gem_exec_params@secure-non-root.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#3281]) +11 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-11/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#3281]) +4 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-19/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#4537] / [i915#4812])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-2/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_exec_suspend@basic-s0@lmem0:
- shard-dg2: [PASS][36] -> [INCOMPLETE][37] ([i915#9275])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-dg2-10/igt@gem_exec_suspend@basic-s0@lmem0.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-2/igt@gem_exec_suspend@basic-s0@lmem0.html
* igt@gem_exec_whisper@basic-fds-priority-all:
- shard-tglu: [PASS][38] -> [INCOMPLETE][39] ([i915#6755] / [i915#7392])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-tglu-10/igt@gem_exec_whisper@basic-fds-priority-all.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-9/igt@gem_exec_whisper@basic-fds-priority-all.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#4860])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-6/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4860])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-5/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#4613]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-2/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@random:
- shard-tglu: NOTRUN -> [SKIP][43] ([i915#4613])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-10/igt@gem_lmem_swapping@random.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: NOTRUN -> [DMESG-WARN][44] ([i915#1982] / [i915#4936] / [i915#5493])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_mmap_gtt@basic-short:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4077]) +6 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-8/igt@gem_mmap_gtt@basic-short.html
* igt@gem_mmap_gtt@cpuset-medium-copy-xy:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#4077]) +7 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-14/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html
* igt@gem_mmap_gtt@medium-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4077]) +11 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-7/igt@gem_mmap_gtt@medium-copy-xy.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4083]) +4 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-10/igt@gem_mmap_wc@copy.html
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4083]) +4 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-16/igt@gem_mmap_wc@copy.html
* igt@gem_partial_pwrite_pread@reads-display:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3282]) +4 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-8/igt@gem_partial_pwrite_pread@reads-display.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#3282]) +5 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-7/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_pwrite@basic-self:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#3282])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-17/igt@gem_pwrite@basic-self.html
* igt@gem_pxp@create-valid-protected-context:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4270]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-15/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4270]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-3/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4270]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-6/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#8428]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4079]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-17/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop:
- shard-tglu: NOTRUN -> [SKIP][58] ([fdo#109312])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-6/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4885])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-10/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_spin_batch@spin-all-new:
- shard-dg2: NOTRUN -> [FAIL][60] ([i915#5889])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-7/igt@gem_spin_batch@spin-all-new.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#3297]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-6/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#3297] / [i915#4880]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#3297]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-16/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-tglu: NOTRUN -> [SKIP][64] ([i915#3297])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-6/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen3_mixed_blits:
- shard-dg1: NOTRUN -> [SKIP][65] ([fdo#109289])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-16/igt@gen3_mixed_blits.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][66] ([fdo#109289]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-6/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: [PASS][67] -> [INCOMPLETE][68] ([i915#5566])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-glk8/igt@gen9_exec_parse@allowed-single.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-glk2/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@batch-without-end:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#2527])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-14/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-chained:
- shard-tglu: NOTRUN -> [SKIP][70] ([i915#2527] / [i915#2856])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-3/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-oversize:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#2856]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-4/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-start-param:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#2856]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-2/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_module_load@reload-no-display:
- shard-snb: [PASS][73] -> [INCOMPLETE][74] ([i915#4528])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-snb7/igt@i915_module_load@reload-no-display.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-snb2/igt@i915_module_load@reload-no-display.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#8925])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-6/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_power@sanity:
- shard-mtlp: [PASS][76] -> [SKIP][77] ([i915#7984])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-4/igt@i915_power@sanity.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-8/igt@i915_power@sanity.html
* igt@i915_query@query-topology-unsupported:
- shard-dg2: NOTRUN -> [SKIP][78] ([fdo#109302])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-3/igt@i915_query@query-topology-unsupported.html
- shard-dg1: NOTRUN -> [SKIP][79] ([fdo#109302])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-14/igt@i915_query@query-topology-unsupported.html
* igt@i915_selftest@mock@memory_region:
- shard-mtlp: NOTRUN -> [DMESG-WARN][80] ([i915#9311])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-5/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#4212]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-7/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#4215] / [i915#5190])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#4212])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-14/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#4212] / [i915#5608])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-10/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [FAIL][85] ([i915#8247]) +3 other tests fail
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-6/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html
* igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][86] ([i915#8247]) +3 other tests fail
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-17/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][87] ([fdo#111615] / [i915#5286])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-6/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-tglu: NOTRUN -> [SKIP][88] ([i915#5286])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-3/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#5286])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-18/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][90] ([i915#4538] / [i915#5286]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][91] -> [FAIL][92] ([i915#5138]) +1 other test fail
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][93] ([i915#3638]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-16/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][94] ([fdo#111614]) +2 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-8/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][95] ([fdo#111614]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-11/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#5190]) +13 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-6/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: [PASS][97] -> [FAIL][98] ([i915#3743])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#4538] / [i915#5190]) +4 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-10/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
- shard-tglu: NOTRUN -> [SKIP][100] ([fdo#111615]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg1: NOTRUN -> [SKIP][101] ([i915#4538])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-mtlp: NOTRUN -> [SKIP][102] ([fdo#111615]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-4/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_joiner@basic:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#2705])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-5/igt@kms_big_joiner@basic.html
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#4087]) +3 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-3/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
* igt@kms_chamelium_color@ctm-max:
- shard-mtlp: NOTRUN -> [SKIP][105] ([fdo#111827])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-5/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_color@ctm-negative:
- shard-dg2: NOTRUN -> [SKIP][106] ([fdo#111827])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-7/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color@gamma:
- shard-dg1: NOTRUN -> [SKIP][107] ([fdo#111827])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-17/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#7828]) +2 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-2/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#7828]) +4 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-14/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#7828]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-2/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#7828]) +11 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-2/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_content_protection@atomic:
- shard-mtlp: NOTRUN -> [SKIP][112] ([i915#6944])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-7/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][113] ([i915#7173])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#3299])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-5/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-mtlp: NOTRUN -> [SKIP][115] ([i915#3299])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-4/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#7118])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-3/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#3555]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-18/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#3359]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#3359]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#3555] / [i915#8814])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-2/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#3555]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-3/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][122] ([fdo#109274] / [fdo#111767] / [i915#5354])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-11/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-tglu: NOTRUN -> [SKIP][123] ([fdo#109274])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#3546]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-2/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: NOTRUN -> [SKIP][125] ([fdo#109274] / [i915#5354]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@single-move@all-pipes:
- shard-mtlp: NOTRUN -> [DMESG-WARN][126] ([i915#2017])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-4/igt@kms_cursor_legacy@single-move@all-pipes.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#3840])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-16/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-mtlp: NOTRUN -> [SKIP][128] ([i915#3555] / [i915#3840])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-7/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-mtlp: NOTRUN -> [SKIP][129] ([i915#3637]) +2 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-1/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][130] ([fdo#109274]) +5 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-11/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-snb: NOTRUN -> [SKIP][131] ([fdo#109271]) +30 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-snb4/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-dg1: NOTRUN -> [SKIP][132] ([fdo#111825]) +19 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-15/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][133] ([i915#2587] / [i915#2672])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#2672])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#2587] / [i915#2672]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#2672] / [i915#3555])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#2672]) +3 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#8708]) +5 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#8708]) +21 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite:
- shard-dg2: [PASS][140] -> [FAIL][141] ([i915#6880]) +1 other test fail
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#3458]) +18 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#5354]) +29 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#1825]) +11 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-glk: NOTRUN -> [SKIP][145] ([fdo#109271]) +63 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-glk5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#3458]) +11 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][147] ([fdo#109280]) +8 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][148] ([fdo#110189]) +4 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#8708]) +6 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch:
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#3555] / [i915#8228])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-15/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#3555] / [i915#8228]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-10/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#3555] / [i915#8228])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-8/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#1839])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-mtlp: NOTRUN -> [SKIP][154] ([fdo#109289])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-5/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][155] ([i915#7862]) +1 other test fail
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-glk3/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#8821])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-7/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_lowres@tiling-yf:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3555] / [i915#8821])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-4/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#6953])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#6953])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-16/igt@kms_plane_scaling@intel-max-src-size.html
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#6953])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-2/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#5176] / [i915#9423]) +3 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#5235]) +27 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#5235]) +2 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#3555] / [i915#5235])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#5235]) +15 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-19/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][166] ([fdo#111068] / [i915#9683])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-12/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#9683]) +3 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@psr2_dpms:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#9681]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-7/igt@kms_psr@psr2_dpms.html
* igt@kms_psr@psr2_sprite_render:
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#9673]) +2 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-12/igt@kms_psr@psr2_sprite_render.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg1: NOTRUN -> [SKIP][170] ([fdo#111615] / [i915#5289])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-15/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-tglu: NOTRUN -> [SKIP][171] ([fdo#111615] / [i915#5289])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][172] ([i915#3555])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-6/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#4098])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#8623])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- shard-tglu: [PASS][175] -> [FAIL][176] ([i915#9196])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-dg1: NOTRUN -> [FAIL][177] ([i915#4349]) +3 other tests fail
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-14/igt@perf_pmu@busy-double-start@vcs1.html
* igt@perf_pmu@busy-idle@vcs1:
- shard-dg1: [PASS][178] -> [FAIL][179] ([i915#4349]) +1 other test fail
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-dg1-19/igt@perf_pmu@busy-idle@vcs1.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-16/igt@perf_pmu@busy-idle@vcs1.html
* igt@prime_udl:
- shard-dg2: NOTRUN -> [SKIP][180] ([fdo#109291])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-10/igt@prime_udl.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#3708] / [i915#4077])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-10/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#3708])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-11/igt@prime_vgem@fence-flip-hang.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#4818])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-3/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_perfmon@get-values-valid-perfmon:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#2575]) +3 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-12/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html
* igt@v3d/v3d_submit_cl@bad-bo:
- shard-dg2: NOTRUN -> [SKIP][185] ([i915#2575]) +12 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-6/igt@v3d/v3d_submit_cl@bad-bo.html
* igt@v3d/v3d_submit_cl@single-out-sync:
- shard-tglu: NOTRUN -> [SKIP][186] ([fdo#109315] / [i915#2575]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-8/igt@v3d/v3d_submit_cl@single-out-sync.html
* igt@v3d/v3d_wait_bo@unused-bo-1ns:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#2575]) +2 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-5/igt@v3d/v3d_wait_bo@unused-bo-1ns.html
* igt@vc4/vc4_purgeable_bo@access-purged-bo-mem:
- shard-mtlp: NOTRUN -> [SKIP][188] ([i915#7711]) +2 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-2/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html
* igt@vc4/vc4_tiling@set-bad-flags:
- shard-tglu: NOTRUN -> [SKIP][189] ([i915#2575]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-10/igt@vc4/vc4_tiling@set-bad-flags.html
* igt@vc4/vc4_wait_seqno@bad-seqno-1ns:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#7711]) +8 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-10/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
- shard-dg1: NOTRUN -> [SKIP][191] ([i915#7711]) +3 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-16/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html
#### Possible fixes ####
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-mtlp: [ABORT][192] ([i915#9414]) -> [PASS][193] +1 other test pass
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-2/igt@gem_ctx_isolation@preservation-s3@rcs0.html
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-1/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][194] ([i915#5784]) -> [PASS][195]
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-dg1-17/igt@gem_eio@reset-stress.html
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-12/igt@gem_eio@reset-stress.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-tglu: [FAIL][196] ([i915#2842]) -> [PASS][197]
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-tglu-7/igt@gem_exec_fair@basic-pace@rcs0.html
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-2/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [TIMEOUT][198] ([i915#5493]) -> [PASS][199]
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html
* {igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0}:
- shard-dg1: [FAIL][200] ([i915#3591]) -> [PASS][201]
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [FAIL][202] ([i915#5138]) -> [PASS][203]
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: [FAIL][204] ([i915#3743]) -> [PASS][205] +1 other test pass
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-tglu-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [FAIL][206] ([i915#2346]) -> [PASS][207]
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@single-bo@all-pipes:
- shard-mtlp: [DMESG-WARN][208] ([i915#2017]) -> [PASS][209]
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-4/igt@kms_cursor_legacy@single-bo@all-pipes.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-7/igt@kms_cursor_legacy@single-bo@all-pipes.html
* {igt@kms_pm_rpm@modeset-lpsp-stress-no-wait}:
- shard-dg2: [SKIP][210] ([i915#9519]) -> [PASS][211]
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][212] ([i915#9196]) -> [PASS][213] +1 other test pass
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
- shard-mtlp: [FAIL][214] ([i915#9196]) -> [PASS][215] +1 other test pass
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
* igt@perf@enable-disable@0-rcs0:
- shard-dg2: [FAIL][216] ([i915#8724]) -> [PASS][217]
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-10/igt@perf@enable-disable@0-rcs0.html
* igt@perf_pmu@busy-double-start@ccs0:
- shard-mtlp: [FAIL][218] ([i915#4349]) -> [PASS][219]
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-2/igt@perf_pmu@busy-double-start@ccs0.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-7/igt@perf_pmu@busy-double-start@ccs0.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [FAIL][220] ([i915#4349]) -> [PASS][221] +3 other tests pass
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html
#### Warnings ####
* igt@kms_async_flips@crc@pipe-b-edp-1:
- shard-mtlp: [DMESG-FAIL][222] ([i915#8561]) -> [FAIL][223] ([i915#8247]) +2 other tests fail
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13911/shard-mtlp-6/igt@kms_async_flips@crc@pipe-b-edp-1.html
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/shard-mtlp-1/igt@kms_async_flips@crc@pipe-b-edp-1.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#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882
[i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297
[i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8398]: https://gitlab.freedesktop.org/drm/intel/issues/8398
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561
[i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275
[i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295
[i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311
[i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337
[i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412
[i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
[i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606
[i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673
[i915#9681]: https://gitlab.freedesktop.org/drm/intel/issues/9681
[i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7597 -> IGTPW_10246
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_13911: 5429d55de723544dfc0630cf39d96392052b27a1 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10246: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/index.html
IGT_7597: 380983dbd9bb2f7eea5e917e8fed0569bfe8cf9c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10246/index.html
[-- Attachment #2: Type: text/html, Size: 73601 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2023-11-23 23:16 UTC | newest]
Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-15 15:56 [igt-dev] [PATCH i-g-t] tests/intel/xe_waitfence: add positive subtest with eci engine provided Daniel Mrzyglod
2023-11-15 17:09 ` Kamil Konieczny
2023-11-15 20:10 ` [igt-dev] ✓ CI.xeBAT: success for " Patchwork
2023-11-17 9:28 ` [igt-dev] [PATCH i-g-t v2] tests/intel/xe_waitfence: add subtest with provided engine class instance Daniel Mrzyglod
2023-11-20 16:15 ` Kamil Konieczny
2023-11-17 10:17 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/intel/xe_waitfence: add positive subtest with eci engine provided (rev2) Patchwork
2023-11-21 10:14 ` [igt-dev] [PATCH i-g-t v3] tests/intel/xe_waitfence: add subtest with provided engine class instance Daniel Mrzyglod
2023-11-22 15:48 ` Kamil Konieczny
2023-11-21 14:01 ` [igt-dev] ✗ Fi.CI.BAT: failure for tests/intel/xe_waitfence: add positive subtest with eci engine provided (rev3) Patchwork
2023-11-21 15:24 ` [igt-dev] ✓ CI.xeBAT: success " Patchwork
2023-11-22 16:43 ` [igt-dev] [PATCH i-g-t v4] tests/intel/xe_waitfence: add subtest with provided engine class instance Daniel Mrzyglod
2023-11-23 8:51 ` Kamil Konieczny
2023-11-22 20:38 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/intel/xe_waitfence: add positive subtest with eci engine provided (rev4) Patchwork
2023-11-22 21:20 ` [igt-dev] ✓ CI.xeBAT: " Patchwork
2023-11-23 23:16 ` [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