* [PATCH v2 1/4] drm/xe/vf: Fix GuC FW check for VF migration support
2025-10-15 0:27 [PATCH v2 0/4] drm/xe/vf: Minor fixes to post-migration recovery Tomasz Lis
@ 2025-10-15 0:27 ` Tomasz Lis
2025-10-16 2:58 ` Matthew Brost
2025-10-15 0:27 ` [PATCH v2 2/4] drm/xe/vf: Skip fixups on VF migration before getting GGTT info Tomasz Lis
` (5 subsequent siblings)
6 siblings, 1 reply; 9+ messages in thread
From: Tomasz Lis @ 2025-10-15 0:27 UTC (permalink / raw)
To: intel-xe
Cc: Michał Winiarski, Michał Wajdeczko,
Piotr Piórkowski, Matthew Brost
The check was done before GuC ABI version could be acquired.
Comparing only to zeros provides very stable results, though
not the ones expected.
This change dislodged part of the VF migration support check
and moved it to after GuC handshake.
Signed-off-by: Tomasz Lis <tomasz.lis@intel.com>
---
drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 44 +++++++++++++++++++++++++++++
drivers/gpu/drm/xe/xe_gt_sriov_vf.h | 1 +
drivers/gpu/drm/xe/xe_guc.c | 2 ++
drivers/gpu/drm/xe/xe_sriov_vf.c | 10 -------
4 files changed, 47 insertions(+), 10 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
index 46518e629ba3..95c10de0732f 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
@@ -314,6 +314,50 @@ static int guc_action_vf_notify_resfix_done(struct xe_guc *guc)
return ret > 0 ? -EPROTO : ret;
}
+static void vf_disable_migration(struct xe_gt *gt, const char *fmt, ...)
+{
+ struct xe_device *xe = gt_to_xe(gt);
+ struct va_format vaf;
+ va_list va_args;
+
+ xe_gt_assert(gt, IS_SRIOV_VF(xe));
+
+ va_start(va_args, fmt);
+ vaf.fmt = fmt;
+ vaf.va = &va_args;
+ xe_gt_sriov_notice(gt, "migration disabled: %pV\n", &vaf);
+ va_end(va_args);
+
+ xe->sriov.vf.migration.enabled = false;
+}
+
+#define NEEDS_SW_CCS_MIGRATION_WA(xe) \
+ ((xe)->info.platform == XE_PANTHERLAKE)
+
+/**
+ * xe_gt_sriov_vf_guc_check_migration_support - Check for disable migration due to GuC.
+ * @gt: the &xe_gt struct instance linked to target GuC
+ *
+ * Performs late disable of VF migration feature in case GuC FW cannot support it.
+ */
+void xe_gt_sriov_vf_guc_check_migration_support(struct xe_gt *gt)
+{
+ struct xe_device *xe = gt_to_xe(gt);
+
+ if (!xe_sriov_vf_migration_supported(xe))
+ return;
+
+ if (NEEDS_SW_CCS_MIGRATION_WA(xe)) {
+ struct xe_uc_fw_version guc_version;
+
+ xe_gt_sriov_vf_guc_versions(gt, NULL, &guc_version);
+ if (MAKE_GUC_VER_STRUCT(guc_version) < MAKE_GUC_VER(1, 23, 0))
+ return vf_disable_migration(gt,
+ "CCS migration requires GuC ABI >= 1.23 but only %u.%u found",
+ guc_version.major, guc_version.minor);
+ }
+}
+
/**
* vf_notify_resfix_done - Notify GuC about resource fixups apply completed.
* @gt: the &xe_gt struct instance linked to target GuC
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.h b/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
index af40276790fa..60a3b9b05b20 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
@@ -26,6 +26,7 @@ void xe_gt_sriov_vf_migrated_event_handler(struct xe_gt *gt);
int xe_gt_sriov_vf_init_early(struct xe_gt *gt);
int xe_gt_sriov_vf_init(struct xe_gt *gt);
bool xe_gt_sriov_vf_recovery_pending(struct xe_gt *gt);
+void xe_gt_sriov_vf_guc_check_migration_support(struct xe_gt *gt);
u32 xe_gt_sriov_vf_gmdid(struct xe_gt *gt);
u16 xe_gt_sriov_vf_guc_ids(struct xe_gt *gt);
diff --git a/drivers/gpu/drm/xe/xe_guc.c b/drivers/gpu/drm/xe/xe_guc.c
index d94490979adc..3c4e64233b3a 100644
--- a/drivers/gpu/drm/xe/xe_guc.c
+++ b/drivers/gpu/drm/xe/xe_guc.c
@@ -713,6 +713,8 @@ static int vf_guc_init_noalloc(struct xe_guc *guc)
if (err)
return err;
+ xe_gt_sriov_vf_guc_check_migration_support(gt);
+
err = xe_gt_sriov_vf_query_config(gt);
if (err)
return err;
diff --git a/drivers/gpu/drm/xe/xe_sriov_vf.c b/drivers/gpu/drm/xe/xe_sriov_vf.c
index 911d5720917b..5fb042c05112 100644
--- a/drivers/gpu/drm/xe/xe_sriov_vf.c
+++ b/drivers/gpu/drm/xe/xe_sriov_vf.c
@@ -163,16 +163,6 @@ static void vf_migration_init_early(struct xe_device *xe)
return vf_disable_migration(xe, "requires gfx version >= 20, but only %u found",
GRAPHICS_VER(xe));
- if (!IS_DGFX(xe)) {
- struct xe_uc_fw_version guc_version;
-
- xe_gt_sriov_vf_guc_versions(xe_device_get_gt(xe, 0), NULL, &guc_version);
- if (MAKE_GUC_VER_STRUCT(guc_version) < MAKE_GUC_VER(1, 23, 0))
- return vf_disable_migration(xe,
- "CCS migration requires GuC ABI >= 1.23 but only %u.%u found",
- guc_version.major, guc_version.minor);
- }
-
xe->sriov.vf.migration.enabled = true;
xe_sriov_dbg(xe, "migration support enabled\n");
}
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread* Re: [PATCH v2 1/4] drm/xe/vf: Fix GuC FW check for VF migration support
2025-10-15 0:27 ` [PATCH v2 1/4] drm/xe/vf: Fix GuC FW check for VF migration support Tomasz Lis
@ 2025-10-16 2:58 ` Matthew Brost
0 siblings, 0 replies; 9+ messages in thread
From: Matthew Brost @ 2025-10-16 2:58 UTC (permalink / raw)
To: Tomasz Lis
Cc: intel-xe, Michał Winiarski, Michał Wajdeczko,
Piotr Piórkowski
On Wed, Oct 15, 2025 at 02:27:52AM +0200, Tomasz Lis wrote:
> The check was done before GuC ABI version could be acquired.
> Comparing only to zeros provides very stable results, though
> not the ones expected.
>
> This change dislodged part of the VF migration support check
> and moved it to after GuC handshake.
>
I thought the handshake has performed as part of read_gmdid earlier in
the driver probe. Still confused by how this got broke but anyways, I
can confirm this fixed the VF probe issue:
Tested-by: Matthew Brost <matthew.brost@intel.com>
As I'm confused, I'll leave the RB to someone else.
Matt
> Signed-off-by: Tomasz Lis <tomasz.lis@intel.com>
> ---
> drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 44 +++++++++++++++++++++++++++++
> drivers/gpu/drm/xe/xe_gt_sriov_vf.h | 1 +
> drivers/gpu/drm/xe/xe_guc.c | 2 ++
> drivers/gpu/drm/xe/xe_sriov_vf.c | 10 -------
> 4 files changed, 47 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> index 46518e629ba3..95c10de0732f 100644
> --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
> @@ -314,6 +314,50 @@ static int guc_action_vf_notify_resfix_done(struct xe_guc *guc)
> return ret > 0 ? -EPROTO : ret;
> }
>
> +static void vf_disable_migration(struct xe_gt *gt, const char *fmt, ...)
> +{
> + struct xe_device *xe = gt_to_xe(gt);
> + struct va_format vaf;
> + va_list va_args;
> +
> + xe_gt_assert(gt, IS_SRIOV_VF(xe));
> +
> + va_start(va_args, fmt);
> + vaf.fmt = fmt;
> + vaf.va = &va_args;
> + xe_gt_sriov_notice(gt, "migration disabled: %pV\n", &vaf);
> + va_end(va_args);
> +
> + xe->sriov.vf.migration.enabled = false;
> +}
> +
> +#define NEEDS_SW_CCS_MIGRATION_WA(xe) \
> + ((xe)->info.platform == XE_PANTHERLAKE)
> +
> +/**
> + * xe_gt_sriov_vf_guc_check_migration_support - Check for disable migration due to GuC.
> + * @gt: the &xe_gt struct instance linked to target GuC
> + *
> + * Performs late disable of VF migration feature in case GuC FW cannot support it.
> + */
> +void xe_gt_sriov_vf_guc_check_migration_support(struct xe_gt *gt)
> +{
> + struct xe_device *xe = gt_to_xe(gt);
> +
> + if (!xe_sriov_vf_migration_supported(xe))
> + return;
> +
> + if (NEEDS_SW_CCS_MIGRATION_WA(xe)) {
> + struct xe_uc_fw_version guc_version;
> +
> + xe_gt_sriov_vf_guc_versions(gt, NULL, &guc_version);
> + if (MAKE_GUC_VER_STRUCT(guc_version) < MAKE_GUC_VER(1, 23, 0))
> + return vf_disable_migration(gt,
> + "CCS migration requires GuC ABI >= 1.23 but only %u.%u found",
> + guc_version.major, guc_version.minor);
> + }
> +}
> +
> /**
> * vf_notify_resfix_done - Notify GuC about resource fixups apply completed.
> * @gt: the &xe_gt struct instance linked to target GuC
> diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.h b/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
> index af40276790fa..60a3b9b05b20 100644
> --- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
> +++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.h
> @@ -26,6 +26,7 @@ void xe_gt_sriov_vf_migrated_event_handler(struct xe_gt *gt);
> int xe_gt_sriov_vf_init_early(struct xe_gt *gt);
> int xe_gt_sriov_vf_init(struct xe_gt *gt);
> bool xe_gt_sriov_vf_recovery_pending(struct xe_gt *gt);
> +void xe_gt_sriov_vf_guc_check_migration_support(struct xe_gt *gt);
>
> u32 xe_gt_sriov_vf_gmdid(struct xe_gt *gt);
> u16 xe_gt_sriov_vf_guc_ids(struct xe_gt *gt);
> diff --git a/drivers/gpu/drm/xe/xe_guc.c b/drivers/gpu/drm/xe/xe_guc.c
> index d94490979adc..3c4e64233b3a 100644
> --- a/drivers/gpu/drm/xe/xe_guc.c
> +++ b/drivers/gpu/drm/xe/xe_guc.c
> @@ -713,6 +713,8 @@ static int vf_guc_init_noalloc(struct xe_guc *guc)
> if (err)
> return err;
>
> + xe_gt_sriov_vf_guc_check_migration_support(gt);
> +
> err = xe_gt_sriov_vf_query_config(gt);
> if (err)
> return err;
> diff --git a/drivers/gpu/drm/xe/xe_sriov_vf.c b/drivers/gpu/drm/xe/xe_sriov_vf.c
> index 911d5720917b..5fb042c05112 100644
> --- a/drivers/gpu/drm/xe/xe_sriov_vf.c
> +++ b/drivers/gpu/drm/xe/xe_sriov_vf.c
> @@ -163,16 +163,6 @@ static void vf_migration_init_early(struct xe_device *xe)
> return vf_disable_migration(xe, "requires gfx version >= 20, but only %u found",
> GRAPHICS_VER(xe));
>
> - if (!IS_DGFX(xe)) {
> - struct xe_uc_fw_version guc_version;
> -
> - xe_gt_sriov_vf_guc_versions(xe_device_get_gt(xe, 0), NULL, &guc_version);
> - if (MAKE_GUC_VER_STRUCT(guc_version) < MAKE_GUC_VER(1, 23, 0))
> - return vf_disable_migration(xe,
> - "CCS migration requires GuC ABI >= 1.23 but only %u.%u found",
> - guc_version.major, guc_version.minor);
> - }
> -
> xe->sriov.vf.migration.enabled = true;
> xe_sriov_dbg(xe, "migration support enabled\n");
> }
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v2 2/4] drm/xe/vf: Skip fixups on VF migration before getting GGTT info
2025-10-15 0:27 [PATCH v2 0/4] drm/xe/vf: Minor fixes to post-migration recovery Tomasz Lis
2025-10-15 0:27 ` [PATCH v2 1/4] drm/xe/vf: Fix GuC FW check for VF migration support Tomasz Lis
@ 2025-10-15 0:27 ` Tomasz Lis
2025-10-15 0:27 ` [PATCH v2 3/4] drm/xe: Assert that VF will never use fixed placement of BOs Tomasz Lis
` (4 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Tomasz Lis @ 2025-10-15 0:27 UTC (permalink / raw)
To: intel-xe
Cc: Michał Winiarski, Michał Wajdeczko,
Piotr Piórkowski, Matthew Brost
The GuC RESFIX state should be achievable only after a successful
handshake. If VF KMD has no GGTT configuration yet and we still got
into RESFIX state, then either we're dealing with unclean initial
state due to unusual actions before probe, or the migration
happened while xe init (started by probe) was running.
In 1st case (VF migration before probe), we should just skip migration.
Init procedure will ensure exit from RESFIX state as it starts GuC
handshake with a reset.
In 2nd case (VF migration during xe init), the migration procedure
should execute normally if GGTT configuration was already acquired
from GuC, and can be skipped if it was not acquired.
This solution will avoid crashes due to the VF migration running
on non-initialized xe sub-structures. But it is not enough to allow
fully reliable migration during driver probe. In particular, the
situation where the probe might not end successfully, is:
* The VF is paused and migrated after GuC reset (vf_bootstrap) but
before config is acquired (vf_query_config). In such case, GuC may
remain in RESFIX state, leading to timeouting requests.
Signed-off-by: Tomasz Lis <tomasz.lis@intel.com>
---
drivers/gpu/drm/xe/xe_gt_sriov_vf.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
index 95c10de0732f..73e855cefb57 100644
--- a/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
+++ b/drivers/gpu/drm/xe/xe_gt_sriov_vf.c
@@ -1152,6 +1152,12 @@ void xe_gt_sriov_vf_print_version(struct xe_gt *gt, struct drm_printer *p)
pf_version->major, pf_version->minor);
}
+static bool vf_ggtt_queried(struct xe_tile *tile)
+{
+ guard(mutex)(&tile->mem.ggtt->lock);
+ return xe_tile_sriov_vf_ggtt(tile) != 0;
+}
+
static bool vf_post_migration_shutdown(struct xe_gt *gt)
{
struct xe_device *xe = gt_to_xe(gt);
@@ -1263,6 +1269,11 @@ static void vf_post_migration_recovery(struct xe_gt *gt)
xe_gt_sriov_dbg(gt, "migration recovery in progress\n");
xe_pm_runtime_get(xe);
+
+ /* If during init and before GGTT configuration, skip the procedure. */
+ if (!vf_ggtt_queried(gt_to_tile(gt)))
+ goto skip;
+
retry = vf_post_migration_shutdown(gt);
if (retry)
goto queue;
@@ -1285,6 +1296,7 @@ static void vf_post_migration_recovery(struct xe_gt *gt)
vf_post_migration_kickstart(gt);
+skip:
xe_pm_runtime_put(xe);
xe_gt_sriov_notice(gt, "migration recovery ended\n");
return;
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread* [PATCH v2 3/4] drm/xe: Assert that VF will never use fixed placement of BOs
2025-10-15 0:27 [PATCH v2 0/4] drm/xe/vf: Minor fixes to post-migration recovery Tomasz Lis
2025-10-15 0:27 ` [PATCH v2 1/4] drm/xe/vf: Fix GuC FW check for VF migration support Tomasz Lis
2025-10-15 0:27 ` [PATCH v2 2/4] drm/xe/vf: Skip fixups on VF migration before getting GGTT info Tomasz Lis
@ 2025-10-15 0:27 ` Tomasz Lis
2025-10-15 0:27 ` [PATCH v2 4/4] drm/xe/vf: Do not disable VF migration on ATS-M Tomasz Lis
` (3 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Tomasz Lis @ 2025-10-15 0:27 UTC (permalink / raw)
To: intel-xe
Cc: Michał Winiarski, Michał Wajdeczko,
Piotr Piórkowski, Matthew Brost
Most BOs do not care at which offset they will be accessed within
GGTT or PPGTT. The few which do care, should be only created
on PF, and mapped within GGTT. On VFs, mapping at fixed offset
would be problematic, as each VF is granted access to a range of
GGTT address space.
So, since fixed addresses of GGTT mapping can only be used on PF,
we can add an assert which makes sure no attempt of fixed placement
will happen for a driver probed on a VF.
The assert will also ensure that VF migration can be properly
performed without a need for special handling of the fixed placement
addresses.
Signed-off-by: Tomasz Lis <tomasz.lis@intel.com>
---
drivers/gpu/drm/xe/xe_bo.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_bo.c b/drivers/gpu/drm/xe/xe_bo.c
index 7b6502081873..8e826a4aa574 100644
--- a/drivers/gpu/drm/xe/xe_bo.c
+++ b/drivers/gpu/drm/xe/xe_bo.c
@@ -2259,6 +2259,12 @@ static int __xe_bo_fixed_placement(struct xe_device *xe,
struct ttm_place *place = bo->placements;
u32 vram_flag, vram_stolen_flags;
+ /*
+ * to allow fixed placement in GGTT of a VF, post-migration fixups
+ * would have to include shifting the page ranges
+ */
+ xe_assert(xe, !IS_SRIOV_VF(xe) || !(bo->flags & XE_BO_FLAG_GGTT));
+
if (flags & (XE_BO_FLAG_USER | XE_BO_FLAG_SYSTEM))
return -EINVAL;
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread* [PATCH v2 4/4] drm/xe/vf: Do not disable VF migration on ATS-M
2025-10-15 0:27 [PATCH v2 0/4] drm/xe/vf: Minor fixes to post-migration recovery Tomasz Lis
` (2 preceding siblings ...)
2025-10-15 0:27 ` [PATCH v2 3/4] drm/xe: Assert that VF will never use fixed placement of BOs Tomasz Lis
@ 2025-10-15 0:27 ` Tomasz Lis
2025-10-15 0:33 ` ✓ CI.KUnit: success for drm/xe/vf: Minor fixes to post-migration recovery (rev2) Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 9+ messages in thread
From: Tomasz Lis @ 2025-10-15 0:27 UTC (permalink / raw)
To: intel-xe
Cc: Michał Winiarski, Michał Wajdeczko,
Piotr Piórkowski, Matthew Brost
The ATS-M does support VF migration, and it has graphics ver below
the currently allowed range. Experimental support of this platform
should therefore be available.
This change allows experimental VF migration support on ATS-M. It
is also explicitly not allowing ADL, by adding condition on MEMIRQ.
Supporting VF migration through MMIO interrupts would require
some special handling in order to achieve reliability.
v2: Add MEMIRQ condition
Signed-off-by: Tomasz Lis <tomasz.lis@intel.com>
---
drivers/gpu/drm/xe/xe_sriov_vf.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_sriov_vf.c b/drivers/gpu/drm/xe/xe_sriov_vf.c
index 5fb042c05112..fb2b3d41c610 100644
--- a/drivers/gpu/drm/xe/xe_sriov_vf.c
+++ b/drivers/gpu/drm/xe/xe_sriov_vf.c
@@ -159,10 +159,13 @@ static void vf_migration_init_early(struct xe_device *xe)
return vf_disable_migration(xe,
"experimental feature not available on production builds");
- if (GRAPHICS_VER(xe) < 20)
- return vf_disable_migration(xe, "requires gfx version >= 20, but only %u found",
+ if (GRAPHICS_VER(xe) < 12)
+ return vf_disable_migration(xe, "requires gfx version >= 12, but only %u found",
GRAPHICS_VER(xe));
+ if (!xe_device_has_memirq(xe))
+ return vf_disable_migration(xe, "requires memory-based IRQ support");
+
xe->sriov.vf.migration.enabled = true;
xe_sriov_dbg(xe, "migration support enabled\n");
}
--
2.25.1
^ permalink raw reply related [flat|nested] 9+ messages in thread* ✓ CI.KUnit: success for drm/xe/vf: Minor fixes to post-migration recovery (rev2)
2025-10-15 0:27 [PATCH v2 0/4] drm/xe/vf: Minor fixes to post-migration recovery Tomasz Lis
` (3 preceding siblings ...)
2025-10-15 0:27 ` [PATCH v2 4/4] drm/xe/vf: Do not disable VF migration on ATS-M Tomasz Lis
@ 2025-10-15 0:33 ` Patchwork
2025-10-15 1:13 ` ✓ Xe.CI.BAT: " Patchwork
2025-10-15 13:02 ` ✗ Xe.CI.Full: failure " Patchwork
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-10-15 0:33 UTC (permalink / raw)
To: Tomasz Lis; +Cc: intel-xe
== Series Details ==
Series: drm/xe/vf: Minor fixes to post-migration recovery (rev2)
URL : https://patchwork.freedesktop.org/series/155865/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[00:32:16] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[00:32:20] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[00:32:50] Starting KUnit Kernel (1/1)...
[00:32:50] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[00:32:50] ================== guc_buf (11 subtests) ===================
[00:32:50] [PASSED] test_smallest
[00:32:50] [PASSED] test_largest
[00:32:50] [PASSED] test_granular
[00:32:50] [PASSED] test_unique
[00:32:50] [PASSED] test_overlap
[00:32:50] [PASSED] test_reusable
[00:32:50] [PASSED] test_too_big
[00:32:50] [PASSED] test_flush
[00:32:50] [PASSED] test_lookup
[00:32:50] [PASSED] test_data
[00:32:50] [PASSED] test_class
[00:32:50] ===================== [PASSED] guc_buf =====================
[00:32:50] =================== guc_dbm (7 subtests) ===================
[00:32:50] [PASSED] test_empty
[00:32:50] [PASSED] test_default
[00:32:50] ======================== test_size ========================
[00:32:50] [PASSED] 4
[00:32:50] [PASSED] 8
[00:32:50] [PASSED] 32
[00:32:50] [PASSED] 256
[00:32:50] ==================== [PASSED] test_size ====================
[00:32:50] ======================= test_reuse ========================
[00:32:50] [PASSED] 4
[00:32:50] [PASSED] 8
[00:32:50] [PASSED] 32
[00:32:50] [PASSED] 256
[00:32:50] =================== [PASSED] test_reuse ====================
[00:32:50] =================== test_range_overlap ====================
[00:32:50] [PASSED] 4
[00:32:50] [PASSED] 8
[00:32:50] [PASSED] 32
[00:32:50] [PASSED] 256
[00:32:50] =============== [PASSED] test_range_overlap ================
[00:32:50] =================== test_range_compact ====================
[00:32:50] [PASSED] 4
[00:32:50] [PASSED] 8
[00:32:50] [PASSED] 32
[00:32:50] [PASSED] 256
[00:32:50] =============== [PASSED] test_range_compact ================
[00:32:50] ==================== test_range_spare =====================
[00:32:50] [PASSED] 4
[00:32:50] [PASSED] 8
[00:32:50] [PASSED] 32
[00:32:50] [PASSED] 256
[00:32:50] ================ [PASSED] test_range_spare =================
[00:32:50] ===================== [PASSED] guc_dbm =====================
[00:32:50] =================== guc_idm (6 subtests) ===================
[00:32:50] [PASSED] bad_init
[00:32:50] [PASSED] no_init
[00:32:50] [PASSED] init_fini
[00:32:50] [PASSED] check_used
[00:32:50] [PASSED] check_quota
[00:32:50] [PASSED] check_all
[00:32:50] ===================== [PASSED] guc_idm =====================
[00:32:50] ================== no_relay (3 subtests) ===================
[00:32:50] [PASSED] xe_drops_guc2pf_if_not_ready
[00:32:50] [PASSED] xe_drops_guc2vf_if_not_ready
[00:32:50] [PASSED] xe_rejects_send_if_not_ready
[00:32:50] ==================== [PASSED] no_relay =====================
[00:32:50] ================== pf_relay (14 subtests) ==================
[00:32:50] [PASSED] pf_rejects_guc2pf_too_short
[00:32:50] [PASSED] pf_rejects_guc2pf_too_long
[00:32:50] [PASSED] pf_rejects_guc2pf_no_payload
[00:32:50] [PASSED] pf_fails_no_payload
[00:32:50] [PASSED] pf_fails_bad_origin
[00:32:50] [PASSED] pf_fails_bad_type
[00:32:50] [PASSED] pf_txn_reports_error
[00:32:50] [PASSED] pf_txn_sends_pf2guc
[00:32:50] [PASSED] pf_sends_pf2guc
[00:32:50] [SKIPPED] pf_loopback_nop
[00:32:50] [SKIPPED] pf_loopback_echo
[00:32:50] [SKIPPED] pf_loopback_fail
[00:32:50] [SKIPPED] pf_loopback_busy
[00:32:50] [SKIPPED] pf_loopback_retry
[00:32:50] ==================== [PASSED] pf_relay =====================
[00:32:50] ================== vf_relay (3 subtests) ===================
[00:32:50] [PASSED] vf_rejects_guc2vf_too_short
[00:32:50] [PASSED] vf_rejects_guc2vf_too_long
[00:32:50] [PASSED] vf_rejects_guc2vf_no_payload
[00:32:50] ==================== [PASSED] vf_relay =====================
[00:32:50] ===================== lmtt (1 subtest) =====================
[00:32:50] ======================== test_ops =========================
[00:32:50] [PASSED] 2-level
[00:32:50] [PASSED] multi-level
[00:32:50] ==================== [PASSED] test_ops =====================
[00:32:50] ====================== [PASSED] lmtt =======================
[00:32:50] ================= pf_service (11 subtests) =================
[00:32:50] [PASSED] pf_negotiate_any
[00:32:50] [PASSED] pf_negotiate_base_match
[00:32:50] [PASSED] pf_negotiate_base_newer
[00:32:50] [PASSED] pf_negotiate_base_next
[00:32:50] [SKIPPED] pf_negotiate_base_older
[00:32:50] [PASSED] pf_negotiate_base_prev
[00:32:50] [PASSED] pf_negotiate_latest_match
[00:32:50] [PASSED] pf_negotiate_latest_newer
[00:32:50] [PASSED] pf_negotiate_latest_next
[00:32:50] [SKIPPED] pf_negotiate_latest_older
[00:32:50] [SKIPPED] pf_negotiate_latest_prev
[00:32:50] =================== [PASSED] pf_service ====================
[00:32:50] ================= xe_guc_g2g (2 subtests) ==================
[00:32:50] ============== xe_live_guc_g2g_kunit_default ==============
[00:32:50] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[00:32:50] ============== xe_live_guc_g2g_kunit_allmem ===============
[00:32:50] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[00:32:50] =================== [SKIPPED] xe_guc_g2g ===================
[00:32:50] =================== xe_mocs (2 subtests) ===================
[00:32:50] ================ xe_live_mocs_kernel_kunit ================
[00:32:50] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[00:32:50] ================ xe_live_mocs_reset_kunit =================
[00:32:50] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[00:32:50] ==================== [SKIPPED] xe_mocs =====================
[00:32:50] ================= xe_migrate (2 subtests) ==================
[00:32:50] ================= xe_migrate_sanity_kunit =================
[00:32:50] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[00:32:50] ================== xe_validate_ccs_kunit ==================
[00:32:50] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[00:32:50] =================== [SKIPPED] xe_migrate ===================
[00:32:50] ================== xe_dma_buf (1 subtest) ==================
[00:32:50] ==================== xe_dma_buf_kunit =====================
[00:32:50] ================ [SKIPPED] xe_dma_buf_kunit ================
[00:32:50] =================== [SKIPPED] xe_dma_buf ===================
[00:32:50] ================= xe_bo_shrink (1 subtest) =================
[00:32:50] =================== xe_bo_shrink_kunit ====================
[00:32:50] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[00:32:50] ================== [SKIPPED] xe_bo_shrink ==================
[00:32:50] ==================== xe_bo (2 subtests) ====================
[00:32:50] ================== xe_ccs_migrate_kunit ===================
[00:32:50] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[00:32:50] ==================== xe_bo_evict_kunit ====================
[00:32:50] =============== [SKIPPED] xe_bo_evict_kunit ================
[00:32:50] ===================== [SKIPPED] xe_bo ======================
[00:32:50] ==================== args (11 subtests) ====================
[00:32:50] [PASSED] count_args_test
[00:32:50] [PASSED] call_args_example
[00:32:50] [PASSED] call_args_test
[00:32:50] [PASSED] drop_first_arg_example
[00:32:50] [PASSED] drop_first_arg_test
[00:32:50] [PASSED] first_arg_example
[00:32:50] [PASSED] first_arg_test
[00:32:50] [PASSED] last_arg_example
[00:32:50] [PASSED] last_arg_test
[00:32:50] [PASSED] pick_arg_example
[00:32:50] [PASSED] sep_comma_example
[00:32:50] ====================== [PASSED] args =======================
[00:32:50] =================== xe_pci (3 subtests) ====================
[00:32:50] ==================== check_graphics_ip ====================
[00:32:50] [PASSED] 12.00 Xe_LP
[00:32:50] [PASSED] 12.10 Xe_LP+
[00:32:50] [PASSED] 12.55 Xe_HPG
[00:32:50] [PASSED] 12.60 Xe_HPC
[00:32:50] [PASSED] 12.70 Xe_LPG
[00:32:50] [PASSED] 12.71 Xe_LPG
[00:32:50] [PASSED] 12.74 Xe_LPG+
[00:32:50] [PASSED] 20.01 Xe2_HPG
[00:32:50] [PASSED] 20.02 Xe2_HPG
[00:32:50] [PASSED] 20.04 Xe2_LPG
[00:32:50] [PASSED] 30.00 Xe3_LPG
[00:32:50] [PASSED] 30.01 Xe3_LPG
[00:32:50] [PASSED] 30.03 Xe3_LPG
[00:32:50] ================ [PASSED] check_graphics_ip ================
[00:32:50] ===================== check_media_ip ======================
[00:32:50] [PASSED] 12.00 Xe_M
[00:32:50] [PASSED] 12.55 Xe_HPM
[00:32:50] [PASSED] 13.00 Xe_LPM+
[00:32:50] [PASSED] 13.01 Xe2_HPM
[00:32:50] [PASSED] 20.00 Xe2_LPM
[00:32:50] [PASSED] 30.00 Xe3_LPM
[00:32:50] [PASSED] 30.02 Xe3_LPM
[00:32:50] ================= [PASSED] check_media_ip ==================
[00:32:50] ================= check_platform_gt_count =================
[00:32:50] [PASSED] 0x9A60 (TIGERLAKE)
[00:32:50] [PASSED] 0x9A68 (TIGERLAKE)
[00:32:50] [PASSED] 0x9A70 (TIGERLAKE)
[00:32:50] [PASSED] 0x9A40 (TIGERLAKE)
[00:32:50] [PASSED] 0x9A49 (TIGERLAKE)
[00:32:50] [PASSED] 0x9A59 (TIGERLAKE)
[00:32:50] [PASSED] 0x9A78 (TIGERLAKE)
[00:32:50] [PASSED] 0x9AC0 (TIGERLAKE)
[00:32:50] [PASSED] 0x9AC9 (TIGERLAKE)
[00:32:50] [PASSED] 0x9AD9 (TIGERLAKE)
[00:32:50] [PASSED] 0x9AF8 (TIGERLAKE)
[00:32:50] [PASSED] 0x4C80 (ROCKETLAKE)
[00:32:50] [PASSED] 0x4C8A (ROCKETLAKE)
[00:32:50] [PASSED] 0x4C8B (ROCKETLAKE)
[00:32:50] [PASSED] 0x4C8C (ROCKETLAKE)
[00:32:50] [PASSED] 0x4C90 (ROCKETLAKE)
[00:32:50] [PASSED] 0x4C9A (ROCKETLAKE)
[00:32:50] [PASSED] 0x4680 (ALDERLAKE_S)
[00:32:50] [PASSED] 0x4682 (ALDERLAKE_S)
[00:32:50] [PASSED] 0x4688 (ALDERLAKE_S)
[00:32:50] [PASSED] 0x468A (ALDERLAKE_S)
[00:32:50] [PASSED] 0x468B (ALDERLAKE_S)
[00:32:50] [PASSED] 0x4690 (ALDERLAKE_S)
[00:32:50] [PASSED] 0x4692 (ALDERLAKE_S)
[00:32:50] [PASSED] 0x4693 (ALDERLAKE_S)
[00:32:50] [PASSED] 0x46A0 (ALDERLAKE_P)
[00:32:50] [PASSED] 0x46A1 (ALDERLAKE_P)
[00:32:50] [PASSED] 0x46A2 (ALDERLAKE_P)
[00:32:50] [PASSED] 0x46A3 (ALDERLAKE_P)
[00:32:50] [PASSED] 0x46A6 (ALDERLAKE_P)
[00:32:50] [PASSED] 0x46A8 (ALDERLAKE_P)
[00:32:50] [PASSED] 0x46AA (ALDERLAKE_P)
[00:32:50] [PASSED] 0x462A (ALDERLAKE_P)
[00:32:50] [PASSED] 0x4626 (ALDERLAKE_P)
[00:32:50] [PASSED] 0x4628 (ALDERLAKE_P)
[00:32:50] [PASSED] 0x46B0 (ALDERLAKE_P)
[00:32:50] [PASSED] 0x46B1 (ALDERLAKE_P)
[00:32:50] [PASSED] 0x46B2 (ALDERLAKE_P)
[00:32:50] [PASSED] 0x46B3 (ALDERLAKE_P)
[00:32:50] [PASSED] 0x46C0 (ALDERLAKE_P)
[00:32:50] [PASSED] 0x46C1 (ALDERLAKE_P)
[00:32:50] [PASSED] 0x46C2 (ALDERLAKE_P)
[00:32:50] [PASSED] 0x46C3 (ALDERLAKE_P)
[00:32:50] [PASSED] 0x46D0 (ALDERLAKE_N)
[00:32:50] [PASSED] 0x46D1 (ALDERLAKE_N)
[00:32:50] [PASSED] 0x46D2 (ALDERLAKE_N)
[00:32:50] [PASSED] 0x46D3 (ALDERLAKE_N)
[00:32:50] [PASSED] 0x46D4 (ALDERLAKE_N)
[00:32:50] [PASSED] 0xA721 (ALDERLAKE_P)
[00:32:50] [PASSED] 0xA7A1 (ALDERLAKE_P)
[00:32:50] [PASSED] 0xA7A9 (ALDERLAKE_P)
[00:32:50] [PASSED] 0xA7AC (ALDERLAKE_P)
[00:32:50] [PASSED] 0xA7AD (ALDERLAKE_P)
[00:32:50] [PASSED] 0xA720 (ALDERLAKE_P)
[00:32:50] [PASSED] 0xA7A0 (ALDERLAKE_P)
[00:32:50] [PASSED] 0xA7A8 (ALDERLAKE_P)
[00:32:50] [PASSED] 0xA7AA (ALDERLAKE_P)
[00:32:50] [PASSED] 0xA7AB (ALDERLAKE_P)
[00:32:50] [PASSED] 0xA780 (ALDERLAKE_S)
[00:32:50] [PASSED] 0xA781 (ALDERLAKE_S)
[00:32:50] [PASSED] 0xA782 (ALDERLAKE_S)
[00:32:50] [PASSED] 0xA783 (ALDERLAKE_S)
[00:32:50] [PASSED] 0xA788 (ALDERLAKE_S)
[00:32:50] [PASSED] 0xA789 (ALDERLAKE_S)
[00:32:50] [PASSED] 0xA78A (ALDERLAKE_S)
[00:32:50] [PASSED] 0xA78B (ALDERLAKE_S)
[00:32:50] [PASSED] 0x4905 (DG1)
[00:32:50] [PASSED] 0x4906 (DG1)
[00:32:50] [PASSED] 0x4907 (DG1)
[00:32:50] [PASSED] 0x4908 (DG1)
[00:32:50] [PASSED] 0x4909 (DG1)
[00:32:50] [PASSED] 0x56C0 (DG2)
[00:32:50] [PASSED] 0x56C2 (DG2)
[00:32:50] [PASSED] 0x56C1 (DG2)
[00:32:50] [PASSED] 0x7D51 (METEORLAKE)
[00:32:50] [PASSED] 0x7DD1 (METEORLAKE)
[00:32:50] [PASSED] 0x7D41 (METEORLAKE)
[00:32:50] [PASSED] 0x7D67 (METEORLAKE)
[00:32:50] [PASSED] 0xB640 (METEORLAKE)
[00:32:50] [PASSED] 0x56A0 (DG2)
[00:32:50] [PASSED] 0x56A1 (DG2)
[00:32:50] [PASSED] 0x56A2 (DG2)
[00:32:50] [PASSED] 0x56BE (DG2)
[00:32:50] [PASSED] 0x56BF (DG2)
[00:32:50] [PASSED] 0x5690 (DG2)
[00:32:50] [PASSED] 0x5691 (DG2)
[00:32:50] [PASSED] 0x5692 (DG2)
[00:32:50] [PASSED] 0x56A5 (DG2)
[00:32:50] [PASSED] 0x56A6 (DG2)
[00:32:50] [PASSED] 0x56B0 (DG2)
[00:32:50] [PASSED] 0x56B1 (DG2)
[00:32:50] [PASSED] 0x56BA (DG2)
[00:32:50] [PASSED] 0x56BB (DG2)
[00:32:50] [PASSED] 0x56BC (DG2)
[00:32:50] [PASSED] 0x56BD (DG2)
[00:32:50] [PASSED] 0x5693 (DG2)
[00:32:50] [PASSED] 0x5694 (DG2)
[00:32:50] [PASSED] 0x5695 (DG2)
[00:32:50] [PASSED] 0x56A3 (DG2)
[00:32:50] [PASSED] 0x56A4 (DG2)
[00:32:50] [PASSED] 0x56B2 (DG2)
[00:32:50] [PASSED] 0x56B3 (DG2)
[00:32:50] [PASSED] 0x5696 (DG2)
[00:32:50] [PASSED] 0x5697 (DG2)
[00:32:50] [PASSED] 0xB69 (PVC)
[00:32:50] [PASSED] 0xB6E (PVC)
[00:32:50] [PASSED] 0xBD4 (PVC)
[00:32:50] [PASSED] 0xBD5 (PVC)
[00:32:50] [PASSED] 0xBD6 (PVC)
[00:32:50] [PASSED] 0xBD7 (PVC)
[00:32:50] [PASSED] 0xBD8 (PVC)
[00:32:50] [PASSED] 0xBD9 (PVC)
[00:32:50] [PASSED] 0xBDA (PVC)
[00:32:50] [PASSED] 0xBDB (PVC)
[00:32:50] [PASSED] 0xBE0 (PVC)
[00:32:50] [PASSED] 0xBE1 (PVC)
[00:32:50] [PASSED] 0xBE5 (PVC)
[00:32:50] [PASSED] 0x7D40 (METEORLAKE)
[00:32:50] [PASSED] 0x7D45 (METEORLAKE)
[00:32:50] [PASSED] 0x7D55 (METEORLAKE)
[00:32:50] [PASSED] 0x7D60 (METEORLAKE)
[00:32:50] [PASSED] 0x7DD5 (METEORLAKE)
[00:32:50] [PASSED] 0x6420 (LUNARLAKE)
[00:32:50] [PASSED] 0x64A0 (LUNARLAKE)
[00:32:50] [PASSED] 0x64B0 (LUNARLAKE)
[00:32:50] [PASSED] 0xE202 (BATTLEMAGE)
[00:32:50] [PASSED] 0xE209 (BATTLEMAGE)
[00:32:50] [PASSED] 0xE20B (BATTLEMAGE)
[00:32:50] [PASSED] 0xE20C (BATTLEMAGE)
[00:32:50] [PASSED] 0xE20D (BATTLEMAGE)
[00:32:50] [PASSED] 0xE210 (BATTLEMAGE)
[00:32:50] [PASSED] 0xE211 (BATTLEMAGE)
[00:32:50] [PASSED] 0xE212 (BATTLEMAGE)
[00:32:50] [PASSED] 0xE216 (BATTLEMAGE)
[00:32:50] [PASSED] 0xE220 (BATTLEMAGE)
[00:32:50] [PASSED] 0xE221 (BATTLEMAGE)
[00:32:50] [PASSED] 0xE222 (BATTLEMAGE)
[00:32:50] [PASSED] 0xE223 (BATTLEMAGE)
[00:32:50] [PASSED] 0xB080 (PANTHERLAKE)
[00:32:50] [PASSED] 0xB081 (PANTHERLAKE)
[00:32:50] [PASSED] 0xB082 (PANTHERLAKE)
[00:32:50] [PASSED] 0xB083 (PANTHERLAKE)
[00:32:50] [PASSED] 0xB084 (PANTHERLAKE)
[00:32:50] [PASSED] 0xB085 (PANTHERLAKE)
[00:32:50] [PASSED] 0xB086 (PANTHERLAKE)
[00:32:50] [PASSED] 0xB087 (PANTHERLAKE)
[00:32:50] [PASSED] 0xB08F (PANTHERLAKE)
[00:32:50] [PASSED] 0xB090 (PANTHERLAKE)
[00:32:50] [PASSED] 0xB0A0 (PANTHERLAKE)
[00:32:50] [PASSED] 0xB0B0 (PANTHERLAKE)
[00:32:50] [PASSED] 0xFD80 (PANTHERLAKE)
[00:32:50] [PASSED] 0xFD81 (PANTHERLAKE)
[00:32:50] ============= [PASSED] check_platform_gt_count =============
[00:32:50] ===================== [PASSED] xe_pci ======================
[00:32:50] =================== xe_rtp (2 subtests) ====================
[00:32:50] =============== xe_rtp_process_to_sr_tests ================
[00:32:50] [PASSED] coalesce-same-reg
[00:32:50] [PASSED] no-match-no-add
[00:32:50] [PASSED] match-or
[00:32:50] [PASSED] match-or-xfail
[00:32:50] [PASSED] no-match-no-add-multiple-rules
[00:32:50] [PASSED] two-regs-two-entries
[00:32:50] [PASSED] clr-one-set-other
[00:32:50] [PASSED] set-field
[00:32:50] [PASSED] conflict-duplicate
[00:32:50] [PASSED] conflict-not-disjoint
[00:32:50] [PASSED] conflict-reg-type
[00:32:50] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[00:32:50] ================== xe_rtp_process_tests ===================
[00:32:50] [PASSED] active1
[00:32:50] [PASSED] active2
[00:32:50] [PASSED] active-inactive
[00:32:50] [PASSED] inactive-active
[00:32:50] [PASSED] inactive-1st_or_active-inactive
[00:32:50] [PASSED] inactive-2nd_or_active-inactive
[00:32:50] [PASSED] inactive-last_or_active-inactive
[00:32:50] [PASSED] inactive-no_or_active-inactive
[00:32:50] ============== [PASSED] xe_rtp_process_tests ===============
[00:32:50] ===================== [PASSED] xe_rtp ======================
[00:32:50] ==================== xe_wa (1 subtest) =====================
[00:32:50] ======================== xe_wa_gt =========================
[00:32:50] [PASSED] TIGERLAKE B0
[00:32:50] [PASSED] DG1 A0
[00:32:50] [PASSED] DG1 B0
[00:32:50] [PASSED] ALDERLAKE_S A0
[00:32:50] [PASSED] ALDERLAKE_S B0
stty: 'standard input': Inappropriate ioctl for device
[00:32:50] [PASSED] ALDERLAKE_S C0
[00:32:50] [PASSED] ALDERLAKE_S D0
[00:32:50] [PASSED] ALDERLAKE_P A0
[00:32:50] [PASSED] ALDERLAKE_P B0
[00:32:50] [PASSED] ALDERLAKE_P C0
[00:32:50] [PASSED] ALDERLAKE_S RPLS D0
[00:32:50] [PASSED] ALDERLAKE_P RPLU E0
[00:32:50] [PASSED] DG2 G10 C0
[00:32:50] [PASSED] DG2 G11 B1
[00:32:50] [PASSED] DG2 G12 A1
[00:32:50] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[00:32:50] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[00:32:50] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[00:32:50] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[00:32:50] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[00:32:50] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[00:32:50] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[00:32:50] ==================== [PASSED] xe_wa_gt =====================
[00:32:50] ====================== [PASSED] xe_wa ======================
[00:32:50] ============================================================
[00:32:50] Testing complete. Ran 306 tests: passed: 288, skipped: 18
[00:32:50] Elapsed time: 34.882s total, 4.165s configuring, 30.351s building, 0.329s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[00:32:51] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[00:32:52] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[00:33:17] Starting KUnit Kernel (1/1)...
[00:33:17] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[00:33:17] ============ drm_test_pick_cmdline (2 subtests) ============
[00:33:17] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[00:33:17] =============== drm_test_pick_cmdline_named ===============
[00:33:17] [PASSED] NTSC
[00:33:17] [PASSED] NTSC-J
[00:33:17] [PASSED] PAL
[00:33:17] [PASSED] PAL-M
[00:33:17] =========== [PASSED] drm_test_pick_cmdline_named ===========
[00:33:17] ============== [PASSED] drm_test_pick_cmdline ==============
[00:33:17] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[00:33:17] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[00:33:17] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[00:33:17] =========== drm_validate_clone_mode (2 subtests) ===========
[00:33:17] ============== drm_test_check_in_clone_mode ===============
[00:33:17] [PASSED] in_clone_mode
[00:33:17] [PASSED] not_in_clone_mode
[00:33:17] ========== [PASSED] drm_test_check_in_clone_mode ===========
[00:33:17] =============== drm_test_check_valid_clones ===============
[00:33:17] [PASSED] not_in_clone_mode
[00:33:17] [PASSED] valid_clone
[00:33:17] [PASSED] invalid_clone
[00:33:17] =========== [PASSED] drm_test_check_valid_clones ===========
[00:33:17] ============= [PASSED] drm_validate_clone_mode =============
[00:33:17] ============= drm_validate_modeset (1 subtest) =============
[00:33:17] [PASSED] drm_test_check_connector_changed_modeset
[00:33:17] ============== [PASSED] drm_validate_modeset ===============
[00:33:17] ====== drm_test_bridge_get_current_state (2 subtests) ======
[00:33:17] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[00:33:17] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[00:33:17] ======== [PASSED] drm_test_bridge_get_current_state ========
[00:33:17] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[00:33:17] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[00:33:17] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[00:33:17] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[00:33:17] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[00:33:17] ============== drm_bridge_alloc (2 subtests) ===============
[00:33:17] [PASSED] drm_test_drm_bridge_alloc_basic
[00:33:17] [PASSED] drm_test_drm_bridge_alloc_get_put
[00:33:17] ================ [PASSED] drm_bridge_alloc =================
[00:33:17] ================== drm_buddy (8 subtests) ==================
[00:33:17] [PASSED] drm_test_buddy_alloc_limit
[00:33:17] [PASSED] drm_test_buddy_alloc_optimistic
[00:33:17] [PASSED] drm_test_buddy_alloc_pessimistic
[00:33:17] [PASSED] drm_test_buddy_alloc_pathological
[00:33:17] [PASSED] drm_test_buddy_alloc_contiguous
[00:33:17] [PASSED] drm_test_buddy_alloc_clear
[00:33:17] [PASSED] drm_test_buddy_alloc_range_bias
[00:33:17] [PASSED] drm_test_buddy_fragmentation_performance
[00:33:17] ==================== [PASSED] drm_buddy ====================
[00:33:17] ============= drm_cmdline_parser (40 subtests) =============
[00:33:17] [PASSED] drm_test_cmdline_force_d_only
[00:33:17] [PASSED] drm_test_cmdline_force_D_only_dvi
[00:33:17] [PASSED] drm_test_cmdline_force_D_only_hdmi
[00:33:17] [PASSED] drm_test_cmdline_force_D_only_not_digital
[00:33:17] [PASSED] drm_test_cmdline_force_e_only
[00:33:17] [PASSED] drm_test_cmdline_res
[00:33:17] [PASSED] drm_test_cmdline_res_vesa
[00:33:17] [PASSED] drm_test_cmdline_res_vesa_rblank
[00:33:17] [PASSED] drm_test_cmdline_res_rblank
[00:33:17] [PASSED] drm_test_cmdline_res_bpp
[00:33:17] [PASSED] drm_test_cmdline_res_refresh
[00:33:17] [PASSED] drm_test_cmdline_res_bpp_refresh
[00:33:17] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[00:33:17] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[00:33:17] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[00:33:17] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[00:33:17] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[00:33:17] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[00:33:17] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[00:33:17] [PASSED] drm_test_cmdline_res_margins_force_on
[00:33:17] [PASSED] drm_test_cmdline_res_vesa_margins
[00:33:17] [PASSED] drm_test_cmdline_name
[00:33:17] [PASSED] drm_test_cmdline_name_bpp
[00:33:17] [PASSED] drm_test_cmdline_name_option
[00:33:17] [PASSED] drm_test_cmdline_name_bpp_option
[00:33:17] [PASSED] drm_test_cmdline_rotate_0
[00:33:17] [PASSED] drm_test_cmdline_rotate_90
[00:33:17] [PASSED] drm_test_cmdline_rotate_180
[00:33:17] [PASSED] drm_test_cmdline_rotate_270
[00:33:17] [PASSED] drm_test_cmdline_hmirror
[00:33:17] [PASSED] drm_test_cmdline_vmirror
[00:33:17] [PASSED] drm_test_cmdline_margin_options
[00:33:17] [PASSED] drm_test_cmdline_multiple_options
[00:33:17] [PASSED] drm_test_cmdline_bpp_extra_and_option
[00:33:17] [PASSED] drm_test_cmdline_extra_and_option
[00:33:17] [PASSED] drm_test_cmdline_freestanding_options
[00:33:17] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[00:33:17] [PASSED] drm_test_cmdline_panel_orientation
[00:33:17] ================ drm_test_cmdline_invalid =================
[00:33:17] [PASSED] margin_only
[00:33:17] [PASSED] interlace_only
[00:33:17] [PASSED] res_missing_x
[00:33:17] [PASSED] res_missing_y
[00:33:17] [PASSED] res_bad_y
[00:33:17] [PASSED] res_missing_y_bpp
[00:33:17] [PASSED] res_bad_bpp
[00:33:17] [PASSED] res_bad_refresh
[00:33:17] [PASSED] res_bpp_refresh_force_on_off
[00:33:17] [PASSED] res_invalid_mode
[00:33:17] [PASSED] res_bpp_wrong_place_mode
[00:33:17] [PASSED] name_bpp_refresh
[00:33:17] [PASSED] name_refresh
[00:33:17] [PASSED] name_refresh_wrong_mode
[00:33:17] [PASSED] name_refresh_invalid_mode
[00:33:17] [PASSED] rotate_multiple
[00:33:17] [PASSED] rotate_invalid_val
[00:33:17] [PASSED] rotate_truncated
[00:33:17] [PASSED] invalid_option
[00:33:17] [PASSED] invalid_tv_option
[00:33:17] [PASSED] truncated_tv_option
[00:33:17] ============ [PASSED] drm_test_cmdline_invalid =============
[00:33:17] =============== drm_test_cmdline_tv_options ===============
[00:33:17] [PASSED] NTSC
[00:33:17] [PASSED] NTSC_443
[00:33:17] [PASSED] NTSC_J
[00:33:17] [PASSED] PAL
[00:33:17] [PASSED] PAL_M
[00:33:17] [PASSED] PAL_N
[00:33:17] [PASSED] SECAM
[00:33:17] [PASSED] MONO_525
[00:33:17] [PASSED] MONO_625
[00:33:17] =========== [PASSED] drm_test_cmdline_tv_options ===========
[00:33:17] =============== [PASSED] drm_cmdline_parser ================
[00:33:17] ========== drmm_connector_hdmi_init (20 subtests) ==========
[00:33:17] [PASSED] drm_test_connector_hdmi_init_valid
[00:33:17] [PASSED] drm_test_connector_hdmi_init_bpc_8
[00:33:17] [PASSED] drm_test_connector_hdmi_init_bpc_10
[00:33:17] [PASSED] drm_test_connector_hdmi_init_bpc_12
[00:33:17] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[00:33:17] [PASSED] drm_test_connector_hdmi_init_bpc_null
[00:33:17] [PASSED] drm_test_connector_hdmi_init_formats_empty
[00:33:17] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[00:33:17] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[00:33:17] [PASSED] supported_formats=0x9 yuv420_allowed=1
[00:33:17] [PASSED] supported_formats=0x9 yuv420_allowed=0
[00:33:17] [PASSED] supported_formats=0x3 yuv420_allowed=1
[00:33:17] [PASSED] supported_formats=0x3 yuv420_allowed=0
[00:33:17] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[00:33:17] [PASSED] drm_test_connector_hdmi_init_null_ddc
[00:33:17] [PASSED] drm_test_connector_hdmi_init_null_product
[00:33:17] [PASSED] drm_test_connector_hdmi_init_null_vendor
[00:33:17] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[00:33:17] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[00:33:17] [PASSED] drm_test_connector_hdmi_init_product_valid
[00:33:17] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[00:33:17] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[00:33:17] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[00:33:17] ========= drm_test_connector_hdmi_init_type_valid =========
[00:33:17] [PASSED] HDMI-A
[00:33:17] [PASSED] HDMI-B
[00:33:17] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[00:33:17] ======== drm_test_connector_hdmi_init_type_invalid ========
[00:33:17] [PASSED] Unknown
[00:33:17] [PASSED] VGA
[00:33:17] [PASSED] DVI-I
[00:33:17] [PASSED] DVI-D
[00:33:17] [PASSED] DVI-A
[00:33:17] [PASSED] Composite
[00:33:17] [PASSED] SVIDEO
[00:33:17] [PASSED] LVDS
[00:33:17] [PASSED] Component
[00:33:17] [PASSED] DIN
[00:33:17] [PASSED] DP
[00:33:17] [PASSED] TV
[00:33:17] [PASSED] eDP
[00:33:17] [PASSED] Virtual
[00:33:17] [PASSED] DSI
[00:33:17] [PASSED] DPI
[00:33:17] [PASSED] Writeback
[00:33:17] [PASSED] SPI
[00:33:17] [PASSED] USB
[00:33:17] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[00:33:17] ============ [PASSED] drmm_connector_hdmi_init =============
[00:33:17] ============= drmm_connector_init (3 subtests) =============
[00:33:17] [PASSED] drm_test_drmm_connector_init
[00:33:17] [PASSED] drm_test_drmm_connector_init_null_ddc
[00:33:17] ========= drm_test_drmm_connector_init_type_valid =========
[00:33:17] [PASSED] Unknown
[00:33:17] [PASSED] VGA
[00:33:17] [PASSED] DVI-I
[00:33:17] [PASSED] DVI-D
[00:33:17] [PASSED] DVI-A
[00:33:17] [PASSED] Composite
[00:33:17] [PASSED] SVIDEO
[00:33:17] [PASSED] LVDS
[00:33:17] [PASSED] Component
[00:33:17] [PASSED] DIN
[00:33:17] [PASSED] DP
[00:33:17] [PASSED] HDMI-A
[00:33:17] [PASSED] HDMI-B
[00:33:17] [PASSED] TV
[00:33:17] [PASSED] eDP
[00:33:17] [PASSED] Virtual
[00:33:17] [PASSED] DSI
[00:33:17] [PASSED] DPI
[00:33:17] [PASSED] Writeback
[00:33:17] [PASSED] SPI
[00:33:17] [PASSED] USB
[00:33:17] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[00:33:17] =============== [PASSED] drmm_connector_init ===============
[00:33:17] ========= drm_connector_dynamic_init (6 subtests) ==========
[00:33:17] [PASSED] drm_test_drm_connector_dynamic_init
[00:33:17] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[00:33:17] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[00:33:17] [PASSED] drm_test_drm_connector_dynamic_init_properties
[00:33:17] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[00:33:17] [PASSED] Unknown
[00:33:17] [PASSED] VGA
[00:33:17] [PASSED] DVI-I
[00:33:17] [PASSED] DVI-D
[00:33:17] [PASSED] DVI-A
[00:33:17] [PASSED] Composite
[00:33:17] [PASSED] SVIDEO
[00:33:17] [PASSED] LVDS
[00:33:17] [PASSED] Component
[00:33:17] [PASSED] DIN
[00:33:17] [PASSED] DP
[00:33:17] [PASSED] HDMI-A
[00:33:17] [PASSED] HDMI-B
[00:33:17] [PASSED] TV
[00:33:17] [PASSED] eDP
[00:33:17] [PASSED] Virtual
[00:33:17] [PASSED] DSI
[00:33:17] [PASSED] DPI
[00:33:17] [PASSED] Writeback
[00:33:17] [PASSED] SPI
[00:33:17] [PASSED] USB
[00:33:17] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[00:33:17] ======== drm_test_drm_connector_dynamic_init_name =========
[00:33:17] [PASSED] Unknown
[00:33:17] [PASSED] VGA
[00:33:17] [PASSED] DVI-I
[00:33:17] [PASSED] DVI-D
[00:33:17] [PASSED] DVI-A
[00:33:17] [PASSED] Composite
[00:33:17] [PASSED] SVIDEO
[00:33:17] [PASSED] LVDS
[00:33:17] [PASSED] Component
[00:33:17] [PASSED] DIN
[00:33:17] [PASSED] DP
[00:33:17] [PASSED] HDMI-A
[00:33:17] [PASSED] HDMI-B
[00:33:17] [PASSED] TV
[00:33:17] [PASSED] eDP
[00:33:17] [PASSED] Virtual
[00:33:17] [PASSED] DSI
[00:33:17] [PASSED] DPI
[00:33:17] [PASSED] Writeback
[00:33:17] [PASSED] SPI
[00:33:17] [PASSED] USB
[00:33:17] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[00:33:17] =========== [PASSED] drm_connector_dynamic_init ============
[00:33:17] ==== drm_connector_dynamic_register_early (4 subtests) =====
[00:33:17] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[00:33:17] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[00:33:17] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[00:33:17] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[00:33:17] ====== [PASSED] drm_connector_dynamic_register_early =======
[00:33:17] ======= drm_connector_dynamic_register (7 subtests) ========
[00:33:17] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[00:33:17] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[00:33:17] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[00:33:17] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[00:33:17] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[00:33:17] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[00:33:17] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[00:33:17] ========= [PASSED] drm_connector_dynamic_register ==========
[00:33:17] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[00:33:17] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[00:33:17] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[00:33:17] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[00:33:17] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[00:33:17] ========== drm_test_get_tv_mode_from_name_valid ===========
[00:33:17] [PASSED] NTSC
[00:33:17] [PASSED] NTSC-443
[00:33:17] [PASSED] NTSC-J
[00:33:17] [PASSED] PAL
[00:33:17] [PASSED] PAL-M
[00:33:17] [PASSED] PAL-N
[00:33:17] [PASSED] SECAM
[00:33:17] [PASSED] Mono
[00:33:17] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[00:33:17] [PASSED] drm_test_get_tv_mode_from_name_truncated
[00:33:17] ============ [PASSED] drm_get_tv_mode_from_name ============
[00:33:17] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[00:33:17] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[00:33:17] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[00:33:17] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[00:33:17] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[00:33:17] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[00:33:17] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[00:33:17] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[00:33:17] [PASSED] VIC 96
[00:33:17] [PASSED] VIC 97
[00:33:17] [PASSED] VIC 101
[00:33:17] [PASSED] VIC 102
[00:33:17] [PASSED] VIC 106
[00:33:17] [PASSED] VIC 107
[00:33:17] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[00:33:17] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[00:33:17] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[00:33:17] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[00:33:17] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[00:33:17] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[00:33:17] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[00:33:17] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[00:33:17] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[00:33:17] [PASSED] Automatic
[00:33:17] [PASSED] Full
[00:33:17] [PASSED] Limited 16:235
[00:33:17] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[00:33:17] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[00:33:17] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[00:33:17] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[00:33:17] === drm_test_drm_hdmi_connector_get_output_format_name ====
[00:33:17] [PASSED] RGB
[00:33:17] [PASSED] YUV 4:2:0
[00:33:17] [PASSED] YUV 4:2:2
[00:33:17] [PASSED] YUV 4:4:4
[00:33:17] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[00:33:17] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[00:33:17] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[00:33:17] ============= drm_damage_helper (21 subtests) ==============
[00:33:17] [PASSED] drm_test_damage_iter_no_damage
[00:33:17] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[00:33:17] [PASSED] drm_test_damage_iter_no_damage_src_moved
[00:33:17] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[00:33:17] [PASSED] drm_test_damage_iter_no_damage_not_visible
[00:33:17] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[00:33:17] [PASSED] drm_test_damage_iter_no_damage_no_fb
[00:33:17] [PASSED] drm_test_damage_iter_simple_damage
[00:33:17] [PASSED] drm_test_damage_iter_single_damage
[00:33:17] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[00:33:17] [PASSED] drm_test_damage_iter_single_damage_outside_src
[00:33:17] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[00:33:17] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[00:33:17] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[00:33:17] [PASSED] drm_test_damage_iter_single_damage_src_moved
[00:33:17] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[00:33:17] [PASSED] drm_test_damage_iter_damage
[00:33:17] [PASSED] drm_test_damage_iter_damage_one_intersect
[00:33:17] [PASSED] drm_test_damage_iter_damage_one_outside
[00:33:17] [PASSED] drm_test_damage_iter_damage_src_moved
[00:33:17] [PASSED] drm_test_damage_iter_damage_not_visible
[00:33:17] ================ [PASSED] drm_damage_helper ================
[00:33:17] ============== drm_dp_mst_helper (3 subtests) ==============
[00:33:17] ============== drm_test_dp_mst_calc_pbn_mode ==============
[00:33:17] [PASSED] Clock 154000 BPP 30 DSC disabled
[00:33:17] [PASSED] Clock 234000 BPP 30 DSC disabled
[00:33:17] [PASSED] Clock 297000 BPP 24 DSC disabled
[00:33:17] [PASSED] Clock 332880 BPP 24 DSC enabled
[00:33:17] [PASSED] Clock 324540 BPP 24 DSC enabled
[00:33:17] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[00:33:17] ============== drm_test_dp_mst_calc_pbn_div ===============
[00:33:17] [PASSED] Link rate 2000000 lane count 4
[00:33:17] [PASSED] Link rate 2000000 lane count 2
[00:33:17] [PASSED] Link rate 2000000 lane count 1
[00:33:17] [PASSED] Link rate 1350000 lane count 4
[00:33:17] [PASSED] Link rate 1350000 lane count 2
[00:33:17] [PASSED] Link rate 1350000 lane count 1
[00:33:17] [PASSED] Link rate 1000000 lane count 4
[00:33:17] [PASSED] Link rate 1000000 lane count 2
[00:33:17] [PASSED] Link rate 1000000 lane count 1
[00:33:17] [PASSED] Link rate 810000 lane count 4
[00:33:17] [PASSED] Link rate 810000 lane count 2
[00:33:17] [PASSED] Link rate 810000 lane count 1
[00:33:17] [PASSED] Link rate 540000 lane count 4
[00:33:17] [PASSED] Link rate 540000 lane count 2
[00:33:17] [PASSED] Link rate 540000 lane count 1
[00:33:17] [PASSED] Link rate 270000 lane count 4
[00:33:17] [PASSED] Link rate 270000 lane count 2
[00:33:17] [PASSED] Link rate 270000 lane count 1
[00:33:17] [PASSED] Link rate 162000 lane count 4
[00:33:17] [PASSED] Link rate 162000 lane count 2
[00:33:17] [PASSED] Link rate 162000 lane count 1
[00:33:17] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[00:33:17] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[00:33:17] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[00:33:17] [PASSED] DP_POWER_UP_PHY with port number
[00:33:17] [PASSED] DP_POWER_DOWN_PHY with port number
[00:33:17] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[00:33:17] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[00:33:17] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[00:33:17] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[00:33:17] [PASSED] DP_QUERY_PAYLOAD with port number
[00:33:17] [PASSED] DP_QUERY_PAYLOAD with VCPI
[00:33:17] [PASSED] DP_REMOTE_DPCD_READ with port number
[00:33:17] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[00:33:17] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[00:33:17] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[00:33:17] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[00:33:17] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[00:33:17] [PASSED] DP_REMOTE_I2C_READ with port number
[00:33:17] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[00:33:17] [PASSED] DP_REMOTE_I2C_READ with transactions array
[00:33:17] [PASSED] DP_REMOTE_I2C_WRITE with port number
[00:33:17] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[00:33:17] [PASSED] DP_REMOTE_I2C_WRITE with data array
[00:33:17] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[00:33:17] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[00:33:17] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[00:33:17] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[00:33:17] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[00:33:17] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[00:33:17] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[00:33:17] ================ [PASSED] drm_dp_mst_helper ================
[00:33:17] ================== drm_exec (7 subtests) ===================
[00:33:17] [PASSED] sanitycheck
[00:33:17] [PASSED] test_lock
[00:33:17] [PASSED] test_lock_unlock
[00:33:17] [PASSED] test_duplicates
[00:33:17] [PASSED] test_prepare
[00:33:17] [PASSED] test_prepare_array
[00:33:17] [PASSED] test_multiple_loops
[00:33:17] ==================== [PASSED] drm_exec =====================
[00:33:17] =========== drm_format_helper_test (17 subtests) ===========
[00:33:17] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[00:33:17] [PASSED] single_pixel_source_buffer
[00:33:17] [PASSED] single_pixel_clip_rectangle
[00:33:17] [PASSED] well_known_colors
[00:33:17] [PASSED] destination_pitch
[00:33:17] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[00:33:17] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[00:33:17] [PASSED] single_pixel_source_buffer
[00:33:17] [PASSED] single_pixel_clip_rectangle
[00:33:17] [PASSED] well_known_colors
[00:33:17] [PASSED] destination_pitch
[00:33:17] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[00:33:17] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[00:33:17] [PASSED] single_pixel_source_buffer
[00:33:17] [PASSED] single_pixel_clip_rectangle
[00:33:17] [PASSED] well_known_colors
[00:33:17] [PASSED] destination_pitch
[00:33:17] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[00:33:17] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[00:33:17] [PASSED] single_pixel_source_buffer
[00:33:17] [PASSED] single_pixel_clip_rectangle
[00:33:17] [PASSED] well_known_colors
[00:33:17] [PASSED] destination_pitch
[00:33:17] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[00:33:17] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[00:33:17] [PASSED] single_pixel_source_buffer
[00:33:17] [PASSED] single_pixel_clip_rectangle
[00:33:17] [PASSED] well_known_colors
[00:33:17] [PASSED] destination_pitch
[00:33:17] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[00:33:17] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[00:33:17] [PASSED] single_pixel_source_buffer
[00:33:17] [PASSED] single_pixel_clip_rectangle
[00:33:17] [PASSED] well_known_colors
[00:33:17] [PASSED] destination_pitch
[00:33:17] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[00:33:17] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[00:33:17] [PASSED] single_pixel_source_buffer
[00:33:17] [PASSED] single_pixel_clip_rectangle
[00:33:17] [PASSED] well_known_colors
[00:33:17] [PASSED] destination_pitch
[00:33:17] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[00:33:17] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[00:33:17] [PASSED] single_pixel_source_buffer
[00:33:17] [PASSED] single_pixel_clip_rectangle
[00:33:17] [PASSED] well_known_colors
[00:33:17] [PASSED] destination_pitch
[00:33:17] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[00:33:17] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[00:33:17] [PASSED] single_pixel_source_buffer
[00:33:17] [PASSED] single_pixel_clip_rectangle
[00:33:17] [PASSED] well_known_colors
[00:33:17] [PASSED] destination_pitch
[00:33:17] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[00:33:17] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[00:33:17] [PASSED] single_pixel_source_buffer
[00:33:17] [PASSED] single_pixel_clip_rectangle
[00:33:17] [PASSED] well_known_colors
[00:33:17] [PASSED] destination_pitch
[00:33:17] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[00:33:17] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[00:33:17] [PASSED] single_pixel_source_buffer
[00:33:17] [PASSED] single_pixel_clip_rectangle
[00:33:17] [PASSED] well_known_colors
[00:33:17] [PASSED] destination_pitch
[00:33:17] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[00:33:17] ============== drm_test_fb_xrgb8888_to_mono ===============
[00:33:17] [PASSED] single_pixel_source_buffer
[00:33:17] [PASSED] single_pixel_clip_rectangle
[00:33:17] [PASSED] well_known_colors
[00:33:17] [PASSED] destination_pitch
[00:33:17] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[00:33:17] ==================== drm_test_fb_swab =====================
[00:33:17] [PASSED] single_pixel_source_buffer
[00:33:17] [PASSED] single_pixel_clip_rectangle
[00:33:17] [PASSED] well_known_colors
[00:33:17] [PASSED] destination_pitch
[00:33:17] ================ [PASSED] drm_test_fb_swab =================
[00:33:17] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[00:33:17] [PASSED] single_pixel_source_buffer
[00:33:17] [PASSED] single_pixel_clip_rectangle
[00:33:17] [PASSED] well_known_colors
[00:33:17] [PASSED] destination_pitch
[00:33:17] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[00:33:17] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[00:33:17] [PASSED] single_pixel_source_buffer
[00:33:17] [PASSED] single_pixel_clip_rectangle
[00:33:17] [PASSED] well_known_colors
[00:33:17] [PASSED] destination_pitch
[00:33:17] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[00:33:17] ================= drm_test_fb_clip_offset =================
[00:33:17] [PASSED] pass through
[00:33:17] [PASSED] horizontal offset
[00:33:17] [PASSED] vertical offset
[00:33:17] [PASSED] horizontal and vertical offset
[00:33:17] [PASSED] horizontal offset (custom pitch)
[00:33:17] [PASSED] vertical offset (custom pitch)
[00:33:17] [PASSED] horizontal and vertical offset (custom pitch)
[00:33:17] ============= [PASSED] drm_test_fb_clip_offset =============
[00:33:17] =================== drm_test_fb_memcpy ====================
[00:33:17] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[00:33:17] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[00:33:17] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[00:33:17] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[00:33:17] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[00:33:17] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[00:33:17] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[00:33:17] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[00:33:17] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[00:33:17] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[00:33:17] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[00:33:17] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[00:33:17] =============== [PASSED] drm_test_fb_memcpy ================
[00:33:17] ============= [PASSED] drm_format_helper_test ==============
[00:33:17] ================= drm_format (18 subtests) =================
[00:33:17] [PASSED] drm_test_format_block_width_invalid
[00:33:17] [PASSED] drm_test_format_block_width_one_plane
[00:33:17] [PASSED] drm_test_format_block_width_two_plane
[00:33:17] [PASSED] drm_test_format_block_width_three_plane
[00:33:17] [PASSED] drm_test_format_block_width_tiled
[00:33:17] [PASSED] drm_test_format_block_height_invalid
[00:33:17] [PASSED] drm_test_format_block_height_one_plane
[00:33:17] [PASSED] drm_test_format_block_height_two_plane
[00:33:17] [PASSED] drm_test_format_block_height_three_plane
[00:33:17] [PASSED] drm_test_format_block_height_tiled
[00:33:17] [PASSED] drm_test_format_min_pitch_invalid
[00:33:17] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[00:33:17] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[00:33:17] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[00:33:17] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[00:33:17] [PASSED] drm_test_format_min_pitch_two_plane
[00:33:17] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[00:33:17] [PASSED] drm_test_format_min_pitch_tiled
[00:33:17] =================== [PASSED] drm_format ====================
[00:33:17] ============== drm_framebuffer (10 subtests) ===============
[00:33:17] ========== drm_test_framebuffer_check_src_coords ==========
[00:33:17] [PASSED] Success: source fits into fb
[00:33:17] [PASSED] Fail: overflowing fb with x-axis coordinate
[00:33:17] [PASSED] Fail: overflowing fb with y-axis coordinate
[00:33:17] [PASSED] Fail: overflowing fb with source width
[00:33:17] [PASSED] Fail: overflowing fb with source height
[00:33:17] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[00:33:17] [PASSED] drm_test_framebuffer_cleanup
[00:33:17] =============== drm_test_framebuffer_create ===============
[00:33:17] [PASSED] ABGR8888 normal sizes
[00:33:17] [PASSED] ABGR8888 max sizes
[00:33:17] [PASSED] ABGR8888 pitch greater than min required
[00:33:17] [PASSED] ABGR8888 pitch less than min required
[00:33:17] [PASSED] ABGR8888 Invalid width
[00:33:17] [PASSED] ABGR8888 Invalid buffer handle
[00:33:17] [PASSED] No pixel format
[00:33:17] [PASSED] ABGR8888 Width 0
[00:33:17] [PASSED] ABGR8888 Height 0
[00:33:17] [PASSED] ABGR8888 Out of bound height * pitch combination
[00:33:17] [PASSED] ABGR8888 Large buffer offset
[00:33:17] [PASSED] ABGR8888 Buffer offset for inexistent plane
[00:33:17] [PASSED] ABGR8888 Invalid flag
[00:33:17] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[00:33:17] [PASSED] ABGR8888 Valid buffer modifier
[00:33:17] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[00:33:17] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[00:33:17] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[00:33:17] [PASSED] NV12 Normal sizes
[00:33:17] [PASSED] NV12 Max sizes
[00:33:17] [PASSED] NV12 Invalid pitch
[00:33:17] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[00:33:17] [PASSED] NV12 different modifier per-plane
[00:33:17] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[00:33:17] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[00:33:17] [PASSED] NV12 Modifier for inexistent plane
[00:33:17] [PASSED] NV12 Handle for inexistent plane
[00:33:17] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[00:33:17] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[00:33:17] [PASSED] YVU420 Normal sizes
[00:33:17] [PASSED] YVU420 Max sizes
[00:33:17] [PASSED] YVU420 Invalid pitch
[00:33:17] [PASSED] YVU420 Different pitches
[00:33:17] [PASSED] YVU420 Different buffer offsets/pitches
[00:33:17] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[00:33:17] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[00:33:17] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[00:33:17] [PASSED] YVU420 Valid modifier
[00:33:17] [PASSED] YVU420 Different modifiers per plane
[00:33:17] [PASSED] YVU420 Modifier for inexistent plane
[00:33:17] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[00:33:17] [PASSED] X0L2 Normal sizes
[00:33:17] [PASSED] X0L2 Max sizes
[00:33:17] [PASSED] X0L2 Invalid pitch
[00:33:17] [PASSED] X0L2 Pitch greater than minimum required
[00:33:17] [PASSED] X0L2 Handle for inexistent plane
[00:33:17] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[00:33:17] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[00:33:17] [PASSED] X0L2 Valid modifier
[00:33:17] [PASSED] X0L2 Modifier for inexistent plane
[00:33:17] =========== [PASSED] drm_test_framebuffer_create ===========
[00:33:17] [PASSED] drm_test_framebuffer_free
[00:33:17] [PASSED] drm_test_framebuffer_init
[00:33:17] [PASSED] drm_test_framebuffer_init_bad_format
[00:33:17] [PASSED] drm_test_framebuffer_init_dev_mismatch
[00:33:17] [PASSED] drm_test_framebuffer_lookup
[00:33:17] [PASSED] drm_test_framebuffer_lookup_inexistent
[00:33:17] [PASSED] drm_test_framebuffer_modifiers_not_supported
[00:33:17] ================= [PASSED] drm_framebuffer =================
[00:33:17] ================ drm_gem_shmem (8 subtests) ================
[00:33:17] [PASSED] drm_gem_shmem_test_obj_create
[00:33:17] [PASSED] drm_gem_shmem_test_obj_create_private
[00:33:17] [PASSED] drm_gem_shmem_test_pin_pages
[00:33:17] [PASSED] drm_gem_shmem_test_vmap
[00:33:17] [PASSED] drm_gem_shmem_test_get_pages_sgt
[00:33:17] [PASSED] drm_gem_shmem_test_get_sg_table
[00:33:17] [PASSED] drm_gem_shmem_test_madvise
[00:33:17] [PASSED] drm_gem_shmem_test_purge
[00:33:17] ================== [PASSED] drm_gem_shmem ==================
[00:33:17] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[00:33:17] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[00:33:17] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[00:33:17] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[00:33:17] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[00:33:17] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[00:33:17] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[00:33:17] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[00:33:17] [PASSED] Automatic
[00:33:17] [PASSED] Full
[00:33:17] [PASSED] Limited 16:235
[00:33:17] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[00:33:17] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[00:33:17] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[00:33:17] [PASSED] drm_test_check_disable_connector
[00:33:17] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[00:33:17] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[00:33:17] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[00:33:17] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[00:33:17] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[00:33:17] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[00:33:17] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[00:33:17] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[00:33:17] [PASSED] drm_test_check_output_bpc_dvi
[00:33:17] [PASSED] drm_test_check_output_bpc_format_vic_1
[00:33:17] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[00:33:17] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[00:33:17] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[00:33:17] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[00:33:17] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[00:33:17] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[00:33:17] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[00:33:17] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[00:33:17] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[00:33:17] [PASSED] drm_test_check_broadcast_rgb_value
[00:33:17] [PASSED] drm_test_check_bpc_8_value
[00:33:17] [PASSED] drm_test_check_bpc_10_value
[00:33:17] [PASSED] drm_test_check_bpc_12_value
[00:33:17] [PASSED] drm_test_check_format_value
[00:33:17] [PASSED] drm_test_check_tmds_char_value
[00:33:17] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[00:33:17] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[00:33:17] [PASSED] drm_test_check_mode_valid
[00:33:17] [PASSED] drm_test_check_mode_valid_reject
[00:33:17] [PASSED] drm_test_check_mode_valid_reject_rate
[00:33:17] [PASSED] drm_test_check_mode_valid_reject_max_clock
[00:33:17] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[00:33:17] ================= drm_managed (2 subtests) =================
[00:33:17] [PASSED] drm_test_managed_release_action
[00:33:17] [PASSED] drm_test_managed_run_action
[00:33:17] =================== [PASSED] drm_managed ===================
[00:33:17] =================== drm_mm (6 subtests) ====================
[00:33:17] [PASSED] drm_test_mm_init
[00:33:17] [PASSED] drm_test_mm_debug
[00:33:17] [PASSED] drm_test_mm_align32
[00:33:17] [PASSED] drm_test_mm_align64
[00:33:17] [PASSED] drm_test_mm_lowest
[00:33:17] [PASSED] drm_test_mm_highest
[00:33:17] ===================== [PASSED] drm_mm ======================
[00:33:17] ============= drm_modes_analog_tv (5 subtests) =============
[00:33:17] [PASSED] drm_test_modes_analog_tv_mono_576i
[00:33:17] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[00:33:17] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[00:33:17] [PASSED] drm_test_modes_analog_tv_pal_576i
[00:33:17] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[00:33:17] =============== [PASSED] drm_modes_analog_tv ===============
[00:33:17] ============== drm_plane_helper (2 subtests) ===============
[00:33:17] =============== drm_test_check_plane_state ================
[00:33:17] [PASSED] clipping_simple
[00:33:17] [PASSED] clipping_rotate_reflect
[00:33:17] [PASSED] positioning_simple
[00:33:17] [PASSED] upscaling
[00:33:17] [PASSED] downscaling
[00:33:17] [PASSED] rounding1
[00:33:17] [PASSED] rounding2
[00:33:17] [PASSED] rounding3
[00:33:17] [PASSED] rounding4
[00:33:17] =========== [PASSED] drm_test_check_plane_state ============
[00:33:17] =========== drm_test_check_invalid_plane_state ============
[00:33:17] [PASSED] positioning_invalid
[00:33:17] [PASSED] upscaling_invalid
[00:33:17] [PASSED] downscaling_invalid
[00:33:17] ======= [PASSED] drm_test_check_invalid_plane_state ========
[00:33:17] ================ [PASSED] drm_plane_helper =================
[00:33:17] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[00:33:17] ====== drm_test_connector_helper_tv_get_modes_check =======
[00:33:17] [PASSED] None
[00:33:17] [PASSED] PAL
[00:33:17] [PASSED] NTSC
[00:33:17] [PASSED] Both, NTSC Default
[00:33:17] [PASSED] Both, PAL Default
[00:33:17] [PASSED] Both, NTSC Default, with PAL on command-line
[00:33:17] [PASSED] Both, PAL Default, with NTSC on command-line
[00:33:17] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[00:33:17] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[00:33:17] ================== drm_rect (9 subtests) ===================
[00:33:17] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[00:33:17] [PASSED] drm_test_rect_clip_scaled_not_clipped
[00:33:17] [PASSED] drm_test_rect_clip_scaled_clipped
[00:33:17] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[00:33:17] ================= drm_test_rect_intersect =================
[00:33:17] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[00:33:17] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[00:33:17] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[00:33:17] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[00:33:17] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[00:33:17] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[00:33:17] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[00:33:17] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[00:33:17] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[00:33:17] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[00:33:17] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[00:33:17] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[00:33:17] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[00:33:17] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[00:33:17] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[00:33:17] ============= [PASSED] drm_test_rect_intersect =============
[00:33:17] ================ drm_test_rect_calc_hscale ================
[00:33:17] [PASSED] normal use
[00:33:17] [PASSED] out of max range
[00:33:17] [PASSED] out of min range
[00:33:17] [PASSED] zero dst
[00:33:17] [PASSED] negative src
[00:33:17] [PASSED] negative dst
[00:33:17] ============ [PASSED] drm_test_rect_calc_hscale ============
[00:33:17] ================ drm_test_rect_calc_vscale ================
[00:33:17] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[00:33:17] [PASSED] out of max range
[00:33:17] [PASSED] out of min range
[00:33:17] [PASSED] zero dst
[00:33:17] [PASSED] negative src
[00:33:17] [PASSED] negative dst
[00:33:17] ============ [PASSED] drm_test_rect_calc_vscale ============
[00:33:17] ================== drm_test_rect_rotate ===================
[00:33:17] [PASSED] reflect-x
[00:33:17] [PASSED] reflect-y
[00:33:17] [PASSED] rotate-0
[00:33:17] [PASSED] rotate-90
[00:33:17] [PASSED] rotate-180
[00:33:17] [PASSED] rotate-270
[00:33:17] ============== [PASSED] drm_test_rect_rotate ===============
[00:33:17] ================ drm_test_rect_rotate_inv =================
[00:33:17] [PASSED] reflect-x
[00:33:17] [PASSED] reflect-y
[00:33:17] [PASSED] rotate-0
[00:33:17] [PASSED] rotate-90
[00:33:17] [PASSED] rotate-180
[00:33:17] [PASSED] rotate-270
[00:33:17] ============ [PASSED] drm_test_rect_rotate_inv =============
[00:33:17] ==================== [PASSED] drm_rect =====================
[00:33:17] ============ drm_sysfb_modeset_test (1 subtest) ============
[00:33:17] ============ drm_test_sysfb_build_fourcc_list =============
[00:33:17] [PASSED] no native formats
[00:33:17] [PASSED] XRGB8888 as native format
[00:33:17] [PASSED] remove duplicates
[00:33:17] [PASSED] convert alpha formats
[00:33:17] [PASSED] random formats
[00:33:17] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[00:33:17] ============= [PASSED] drm_sysfb_modeset_test ==============
[00:33:17] ============================================================
[00:33:17] Testing complete. Ran 622 tests: passed: 622
[00:33:17] Elapsed time: 26.732s total, 1.663s configuring, 24.652s building, 0.371s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[00:33:17] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[00:33:19] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[00:33:29] Starting KUnit Kernel (1/1)...
[00:33:29] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[00:33:29] ================= ttm_device (5 subtests) ==================
[00:33:29] [PASSED] ttm_device_init_basic
[00:33:29] [PASSED] ttm_device_init_multiple
[00:33:29] [PASSED] ttm_device_fini_basic
[00:33:29] [PASSED] ttm_device_init_no_vma_man
[00:33:29] ================== ttm_device_init_pools ==================
[00:33:29] [PASSED] No DMA allocations, no DMA32 required
[00:33:29] [PASSED] DMA allocations, DMA32 required
[00:33:29] [PASSED] No DMA allocations, DMA32 required
[00:33:29] [PASSED] DMA allocations, no DMA32 required
[00:33:29] ============== [PASSED] ttm_device_init_pools ==============
[00:33:29] =================== [PASSED] ttm_device ====================
[00:33:29] ================== ttm_pool (8 subtests) ===================
[00:33:29] ================== ttm_pool_alloc_basic ===================
[00:33:29] [PASSED] One page
[00:33:29] [PASSED] More than one page
[00:33:29] [PASSED] Above the allocation limit
[00:33:29] [PASSED] One page, with coherent DMA mappings enabled
[00:33:29] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[00:33:29] ============== [PASSED] ttm_pool_alloc_basic ===============
[00:33:29] ============== ttm_pool_alloc_basic_dma_addr ==============
[00:33:29] [PASSED] One page
[00:33:29] [PASSED] More than one page
[00:33:29] [PASSED] Above the allocation limit
[00:33:29] [PASSED] One page, with coherent DMA mappings enabled
[00:33:29] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[00:33:29] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[00:33:29] [PASSED] ttm_pool_alloc_order_caching_match
[00:33:29] [PASSED] ttm_pool_alloc_caching_mismatch
[00:33:29] [PASSED] ttm_pool_alloc_order_mismatch
[00:33:29] [PASSED] ttm_pool_free_dma_alloc
[00:33:29] [PASSED] ttm_pool_free_no_dma_alloc
[00:33:29] [PASSED] ttm_pool_fini_basic
[00:33:29] ==================== [PASSED] ttm_pool =====================
[00:33:29] ================ ttm_resource (8 subtests) =================
[00:33:29] ================= ttm_resource_init_basic =================
[00:33:29] [PASSED] Init resource in TTM_PL_SYSTEM
[00:33:29] [PASSED] Init resource in TTM_PL_VRAM
[00:33:29] [PASSED] Init resource in a private placement
[00:33:29] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[00:33:29] ============= [PASSED] ttm_resource_init_basic =============
[00:33:29] [PASSED] ttm_resource_init_pinned
[00:33:29] [PASSED] ttm_resource_fini_basic
[00:33:29] [PASSED] ttm_resource_manager_init_basic
[00:33:29] [PASSED] ttm_resource_manager_usage_basic
[00:33:29] [PASSED] ttm_resource_manager_set_used_basic
[00:33:29] [PASSED] ttm_sys_man_alloc_basic
[00:33:29] [PASSED] ttm_sys_man_free_basic
[00:33:29] ================== [PASSED] ttm_resource ===================
[00:33:29] =================== ttm_tt (15 subtests) ===================
[00:33:29] ==================== ttm_tt_init_basic ====================
[00:33:29] [PASSED] Page-aligned size
[00:33:29] [PASSED] Extra pages requested
[00:33:29] ================ [PASSED] ttm_tt_init_basic ================
[00:33:29] [PASSED] ttm_tt_init_misaligned
[00:33:29] [PASSED] ttm_tt_fini_basic
[00:33:29] [PASSED] ttm_tt_fini_sg
[00:33:29] [PASSED] ttm_tt_fini_shmem
[00:33:29] [PASSED] ttm_tt_create_basic
[00:33:29] [PASSED] ttm_tt_create_invalid_bo_type
[00:33:29] [PASSED] ttm_tt_create_ttm_exists
[00:33:29] [PASSED] ttm_tt_create_failed
[00:33:29] [PASSED] ttm_tt_destroy_basic
[00:33:29] [PASSED] ttm_tt_populate_null_ttm
[00:33:29] [PASSED] ttm_tt_populate_populated_ttm
[00:33:29] [PASSED] ttm_tt_unpopulate_basic
[00:33:29] [PASSED] ttm_tt_unpopulate_empty_ttm
[00:33:29] [PASSED] ttm_tt_swapin_basic
[00:33:29] ===================== [PASSED] ttm_tt ======================
[00:33:29] =================== ttm_bo (14 subtests) ===================
[00:33:29] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[00:33:29] [PASSED] Cannot be interrupted and sleeps
[00:33:29] [PASSED] Cannot be interrupted, locks straight away
[00:33:29] [PASSED] Can be interrupted, sleeps
[00:33:29] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[00:33:29] [PASSED] ttm_bo_reserve_locked_no_sleep
[00:33:29] [PASSED] ttm_bo_reserve_no_wait_ticket
[00:33:29] [PASSED] ttm_bo_reserve_double_resv
[00:33:29] [PASSED] ttm_bo_reserve_interrupted
[00:33:29] [PASSED] ttm_bo_reserve_deadlock
[00:33:29] [PASSED] ttm_bo_unreserve_basic
[00:33:29] [PASSED] ttm_bo_unreserve_pinned
[00:33:29] [PASSED] ttm_bo_unreserve_bulk
[00:33:29] [PASSED] ttm_bo_fini_basic
[00:33:29] [PASSED] ttm_bo_fini_shared_resv
[00:33:29] [PASSED] ttm_bo_pin_basic
[00:33:29] [PASSED] ttm_bo_pin_unpin_resource
[00:33:29] [PASSED] ttm_bo_multiple_pin_one_unpin
[00:33:29] ===================== [PASSED] ttm_bo ======================
[00:33:29] ============== ttm_bo_validate (21 subtests) ===============
[00:33:29] ============== ttm_bo_init_reserved_sys_man ===============
[00:33:29] [PASSED] Buffer object for userspace
[00:33:29] [PASSED] Kernel buffer object
[00:33:29] [PASSED] Shared buffer object
[00:33:29] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[00:33:29] ============== ttm_bo_init_reserved_mock_man ==============
[00:33:29] [PASSED] Buffer object for userspace
[00:33:29] [PASSED] Kernel buffer object
[00:33:29] [PASSED] Shared buffer object
[00:33:29] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[00:33:29] [PASSED] ttm_bo_init_reserved_resv
[00:33:29] ================== ttm_bo_validate_basic ==================
[00:33:29] [PASSED] Buffer object for userspace
[00:33:29] [PASSED] Kernel buffer object
[00:33:29] [PASSED] Shared buffer object
[00:33:29] ============== [PASSED] ttm_bo_validate_basic ==============
[00:33:29] [PASSED] ttm_bo_validate_invalid_placement
[00:33:29] ============= ttm_bo_validate_same_placement ==============
[00:33:29] [PASSED] System manager
[00:33:29] [PASSED] VRAM manager
[00:33:29] ========= [PASSED] ttm_bo_validate_same_placement ==========
[00:33:29] [PASSED] ttm_bo_validate_failed_alloc
[00:33:29] [PASSED] ttm_bo_validate_pinned
[00:33:29] [PASSED] ttm_bo_validate_busy_placement
[00:33:29] ================ ttm_bo_validate_multihop =================
[00:33:29] [PASSED] Buffer object for userspace
[00:33:29] [PASSED] Kernel buffer object
[00:33:29] [PASSED] Shared buffer object
[00:33:29] ============ [PASSED] ttm_bo_validate_multihop =============
[00:33:29] ========== ttm_bo_validate_no_placement_signaled ==========
[00:33:29] [PASSED] Buffer object in system domain, no page vector
[00:33:29] [PASSED] Buffer object in system domain with an existing page vector
[00:33:29] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[00:33:29] ======== ttm_bo_validate_no_placement_not_signaled ========
[00:33:29] [PASSED] Buffer object for userspace
[00:33:29] [PASSED] Kernel buffer object
[00:33:29] [PASSED] Shared buffer object
[00:33:29] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[00:33:29] [PASSED] ttm_bo_validate_move_fence_signaled
[00:33:29] ========= ttm_bo_validate_move_fence_not_signaled =========
[00:33:29] [PASSED] Waits for GPU
[00:33:29] [PASSED] Tries to lock straight away
[00:33:29] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[00:33:29] [PASSED] ttm_bo_validate_happy_evict
[00:33:29] [PASSED] ttm_bo_validate_all_pinned_evict
[00:33:29] [PASSED] ttm_bo_validate_allowed_only_evict
[00:33:29] [PASSED] ttm_bo_validate_deleted_evict
[00:33:29] [PASSED] ttm_bo_validate_busy_domain_evict
[00:33:29] [PASSED] ttm_bo_validate_evict_gutting
[00:33:29] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[00:33:29] ================= [PASSED] ttm_bo_validate =================
[00:33:29] ============================================================
[00:33:29] Testing complete. Ran 101 tests: passed: 101
[00:33:29] Elapsed time: 11.375s total, 1.712s configuring, 9.447s building, 0.179s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 9+ messages in thread* ✓ Xe.CI.BAT: success for drm/xe/vf: Minor fixes to post-migration recovery (rev2)
2025-10-15 0:27 [PATCH v2 0/4] drm/xe/vf: Minor fixes to post-migration recovery Tomasz Lis
` (4 preceding siblings ...)
2025-10-15 0:33 ` ✓ CI.KUnit: success for drm/xe/vf: Minor fixes to post-migration recovery (rev2) Patchwork
@ 2025-10-15 1:13 ` Patchwork
2025-10-15 13:02 ` ✗ Xe.CI.Full: failure " Patchwork
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-10-15 1:13 UTC (permalink / raw)
To: Tomasz Lis; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 2458 bytes --]
== Series Details ==
Series: drm/xe/vf: Minor fixes to post-migration recovery (rev2)
URL : https://patchwork.freedesktop.org/series/155865/
State : success
== Summary ==
CI Bug Log - changes from xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb_BAT -> xe-pw-155865v2_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-155865v2_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@sriov_basic@enable-vfs-autoprobe-on:
- {bat-ptl-1}: [ABORT][1] -> [PASS][2] +1 other test pass
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/bat-ptl-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/bat-ptl-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1:
- {bat-ptl-2}: [ABORT][3] -> [PASS][4] +1 other test pass
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/bat-ptl-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/bat-ptl-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#5764]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5764
[Intel XE#5771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5771
[Intel XE#5775]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5775
[Intel XE#5776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5776
[Intel XE#5777]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5777
[Intel XE#5780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5780
Build changes
-------------
* IGT: IGT_8582 -> IGT_8584
* Linux: xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb -> xe-pw-155865v2
IGT_8582: 8582
IGT_8584: 8584
xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb: c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb
xe-pw-155865v2: 155865v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/index.html
[-- Attachment #2: Type: text/html, Size: 2639 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread* ✗ Xe.CI.Full: failure for drm/xe/vf: Minor fixes to post-migration recovery (rev2)
2025-10-15 0:27 [PATCH v2 0/4] drm/xe/vf: Minor fixes to post-migration recovery Tomasz Lis
` (5 preceding siblings ...)
2025-10-15 1:13 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-10-15 13:02 ` Patchwork
6 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2025-10-15 13:02 UTC (permalink / raw)
To: Tomasz Lis; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 71967 bytes --]
== Series Details ==
Series: drm/xe/vf: Minor fixes to post-migration recovery (rev2)
URL : https://patchwork.freedesktop.org/series/155865/
State : failure
== Summary ==
CI Bug Log - changes from xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb_FULL -> xe-pw-155865v2_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-155865v2_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-155865v2_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-155865v2_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_legacy@torture-bo:
- shard-dg2-set2: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-dg2-436/igt@kms_cursor_legacy@torture-bo.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-435/igt@kms_cursor_legacy@torture-bo.html
* igt@xe_compute_preempt@compute-threadgroup-preempt:
- shard-dg2-set2: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-464/igt@xe_compute_preempt@compute-threadgroup-preempt.html
* igt@xe_exec_compute_mode@once-bindexecqueue-userptr-invalidate-race:
- shard-bmg: [PASS][4] -> [INCOMPLETE][5]
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-bmg-5/igt@xe_exec_compute_mode@once-bindexecqueue-userptr-invalidate-race.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-3/igt@xe_exec_compute_mode@once-bindexecqueue-userptr-invalidate-race.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-adlp: NOTRUN -> [ABORT][6]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-6/igt@xe_wedged@wedged-at-any-timeout.html
#### Warnings ####
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: [SKIP][7] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-dg2-433/igt@xe_compute_preempt@compute-preempt.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-436/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-adlp: [SKIP][9] ([Intel XE#455] / [Intel XE#5632]) -> [SKIP][10] +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-adlp-8/igt@xe_compute_preempt@compute-preempt-many.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-2/igt@xe_compute_preempt@compute-preempt-many.html
- shard-dg2-set2: [FAIL][11] ([Intel XE#5890]) -> [SKIP][12] +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-dg2-435/igt@xe_compute_preempt@compute-preempt-many.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-466/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_create@multigpu-create-massive-size:
- shard-adlp: [SKIP][13] ([Intel XE#944]) -> [DMESG-FAIL][14]
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-adlp-6/igt@xe_create@multigpu-create-massive-size.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-6/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-adlp: [SKIP][15] ([Intel XE#944]) -> [FAIL][16]
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-adlp-6/igt@xe_query@multigpu-query-invalid-cs-cycles.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-6/igt@xe_query@multigpu-query-invalid-cs-cycles.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@xe_compute_preempt@compute-preempt-many-vram}:
- shard-dg2-set2: [FAIL][17] ([Intel XE#5890]) -> [SKIP][18]
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-dg2-433/igt@xe_compute_preempt@compute-preempt-many-vram.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-432/igt@xe_compute_preempt@compute-preempt-many-vram.html
New tests
---------
New tests have been introduced between xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb_FULL and xe-pw-155865v2_FULL:
### New IGT tests (6) ###
* igt@kms_pm_rpm:
- Statuses :
- Exec time: [None] s
* igt@xe_oa@buffer-size@oag-0-128k:
- Statuses : 1 pass(s)
- Exec time: [0.04] s
* igt@xe_oa@buffer-size@oag-0-2m:
- Statuses : 1 pass(s)
- Exec time: [0.17] s
* igt@xe_oa@privileged-forked-access-vaddr@oag-0:
- Statuses : 1 pass(s)
- Exec time: [0.02] s
* igt@xe_oa@tail-address-wrap@oag-0-32m:
- Statuses : 1 pass(s)
- Exec time: [0.80] s
* igt@xe_oa@tail-address-wrap@oag-0-8m:
- Statuses : 1 pass(s)
- Exec time: [0.20] s
Known issues
------------
Here are the changes found in xe-pw-155865v2_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-write:
- shard-adlp: NOTRUN -> [SKIP][19] ([Intel XE#1125] / [Intel XE#5574]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-8/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-adlp: NOTRUN -> [SKIP][20] ([Intel XE#3157])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1:
- shard-lnl: [PASS][21] -> [FAIL][22] ([Intel XE#5993]) +3 other tests fail
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
* igt@kms_atomic@plane-invalid-params-fence:
- shard-adlp: [PASS][23] -> [DMESG-WARN][24] ([Intel XE#2953] / [Intel XE#4173])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-adlp-6/igt@kms_atomic@plane-invalid-params-fence.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-6/igt@kms_atomic@plane-invalid-params-fence.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#316])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-434/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-adlp: NOTRUN -> [SKIP][26] ([Intel XE#607])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-1/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-adlp: NOTRUN -> [SKIP][27] ([Intel XE#610])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-6/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][28] ([Intel XE#316]) +5 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2328])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-adlp: NOTRUN -> [DMESG-FAIL][30] ([Intel XE#4543]) +9 other tests dmesg-fail
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#1124])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-adlp: NOTRUN -> [SKIP][32] ([Intel XE#1124]) +16 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-adlp: NOTRUN -> [SKIP][33] ([Intel XE#2191]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-6/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2314] / [Intel XE#2894])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-adlp: NOTRUN -> [SKIP][35] ([Intel XE#367]) +5 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][36] ([Intel XE#787]) +77 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-2/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [PASS][37] -> [INCOMPLETE][38] ([Intel XE#3862]) +1 other test incomplete
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [PASS][39] -> [INCOMPLETE][40] ([Intel XE#3862]) +1 other test incomplete
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-adlp: NOTRUN -> [SKIP][41] ([Intel XE#2907]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#2887])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-lnl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#787]) +34 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-adlp: NOTRUN -> [SKIP][45] ([Intel XE#455] / [Intel XE#787]) +51 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-2/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
- shard-dg2-set2: [PASS][46] -> [INCOMPLETE][47] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: [PASS][48] -> [INCOMPLETE][49] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-adlp: NOTRUN -> [SKIP][50] ([Intel XE#373]) +15 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-6/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@degamma:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2325])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-3/igt@kms_chamelium_color@degamma.html
- shard-adlp: NOTRUN -> [SKIP][52] ([Intel XE#306]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@kms_chamelium_color@degamma.html
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#306])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-432/igt@kms_chamelium_color@degamma.html
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#306])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-lnl-8/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2252])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-2/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-adlp: NOTRUN -> [SKIP][56] ([Intel XE#307]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-8/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][57] ([Intel XE#1178])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-7/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-adlp: NOTRUN -> [SKIP][58] ([Intel XE#308]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-2/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#455]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-464/igt@kms_cursor_crc@cursor-sliding-32x32.html
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2320])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1424]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-bmg: [PASS][62] -> [SKIP][63] ([Intel XE#2291])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-adlp: NOTRUN -> [SKIP][64] ([Intel XE#309]) +10 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-adlp: NOTRUN -> [SKIP][65] ([Intel XE#323])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#323])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-adlp: NOTRUN -> [SKIP][67] ([Intel XE#4356])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-2/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-adlp: NOTRUN -> [SKIP][68] ([Intel XE#4331])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#2244])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-lnl-1/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@fbc:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#5425])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-7/igt@kms_fbcon_fbt@fbc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-adlp: NOTRUN -> [SKIP][71] ([Intel XE#776])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#701])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-435/igt@kms_feature_discovery@chamelium.html
- shard-adlp: NOTRUN -> [SKIP][73] ([Intel XE#701])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-6/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@psr1:
- shard-adlp: NOTRUN -> [SKIP][74] ([Intel XE#1135]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-1/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-bmg: [PASS][75] -> [SKIP][76] ([Intel XE#2316]) +4 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-adlp: NOTRUN -> [SKIP][77] ([Intel XE#310]) +10 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-1/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1421])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-lnl-5/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-lnl: [PASS][79] -> [FAIL][80] ([Intel XE#3098]) +1 other test fail
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-lnl-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [PASS][81] -> [FAIL][82] ([Intel XE#301]) +1 other test fail
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip@flip-vs-modeset-vs-hang@d-hdmi-a1:
- shard-adlp: NOTRUN -> [DMESG-WARN][83] ([Intel XE#4543]) +3 other tests dmesg-warn
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-2/igt@kms_flip@flip-vs-modeset-vs-hang@d-hdmi-a1.html
* igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a1:
- shard-adlp: NOTRUN -> [TIMEOUT][84] ([Intel XE#4543]) +1 other test timeout
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@kms_flip@flip-vs-panning-vs-hang@d-hdmi-a1.html
* igt@kms_flip@flip-vs-rmfb-interruptible:
- shard-adlp: [PASS][85] -> [DMESG-WARN][86] ([Intel XE#4543] / [Intel XE#5208])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-adlp-9/igt@kms_flip@flip-vs-rmfb-interruptible.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-2/igt@kms_flip@flip-vs-rmfb-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-adlp: [PASS][87] -> [DMESG-WARN][88] ([Intel XE#4543]) +5 other tests dmesg-warn
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2293] / [Intel XE#2380])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#1401] / [Intel XE#1745])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1401])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#2293])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-adlp: NOTRUN -> [DMESG-FAIL][93] ([Intel XE#4543] / [Intel XE#4921]) +3 other tests dmesg-fail
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-adlp: NOTRUN -> [DMESG-FAIL][94] ([Intel XE#4921]) +1 other test dmesg-fail
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
- shard-adlp: NOTRUN -> [SKIP][95] ([Intel XE#656]) +49 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-2/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2312]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#651]) +5 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#656]) +3 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-rte:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#5390])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2311]) +4 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-suspend:
- shard-adlp: NOTRUN -> [SKIP][101] ([Intel XE#651]) +20 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-6/igt@kms_frontbuffer_tracking@fbcdrrs-suspend.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-adlp: NOTRUN -> [SKIP][102] ([Intel XE#1158])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2313]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- shard-adlp: NOTRUN -> [SKIP][104] ([Intel XE#653]) +12 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#653]) +5 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: [PASS][106] -> [SKIP][107] ([Intel XE#3012])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-bmg-1/igt@kms_joiner@basic-force-big-joiner.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2934])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-adlp: NOTRUN -> [SKIP][109] ([Intel XE#455]) +28 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-2/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
- shard-dg2-set2: NOTRUN -> [FAIL][110] ([Intel XE#616]) +3 other tests fail
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-432/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [PASS][111] -> [SKIP][112] ([Intel XE#4596]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#4596])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_pm_backlight@fade:
- shard-adlp: NOTRUN -> [SKIP][114] ([Intel XE#870])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-psr:
- shard-adlp: NOTRUN -> [SKIP][115] ([Intel XE#1129])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [PASS][116] -> [FAIL][117] ([Intel XE#718]) +1 other test fail
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2392])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-4/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-adlp: NOTRUN -> [SKIP][119] ([Intel XE#836]) +1 other test skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-434/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-adlp: NOTRUN -> [SKIP][121] ([Intel XE#1406] / [Intel XE#1489]) +11 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-2/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-adlp: NOTRUN -> [SKIP][123] ([Intel XE#1122] / [Intel XE#1406] / [Intel XE#5580])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-adlp: NOTRUN -> [SKIP][124] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +17 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-6/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][125] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-463/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@pr-primary-blt:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-1/igt@kms_psr@pr-primary-blt.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-adlp: NOTRUN -> [SKIP][127] ([Intel XE#1127])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-adlp: NOTRUN -> [SKIP][128] ([Intel XE#3414]) +2 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_tv_load_detect@load-detect:
- shard-adlp: NOTRUN -> [SKIP][129] ([Intel XE#330])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-1/igt@kms_tv_load_detect@load-detect.html
* igt@xe_ccs@suspend-resume:
- shard-adlp: NOTRUN -> [SKIP][130] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@xe_ccs@suspend-resume.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-adlp: NOTRUN -> [SKIP][131] ([Intel XE#1447] / [Intel XE#5596])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_configfs@survivability-mode:
- shard-adlp: NOTRUN -> [SKIP][132] ([Intel XE#6010])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@xe_configfs@survivability-mode.html
* igt@xe_copy_basic@mem-copy-linear-0xfd:
- shard-adlp: NOTRUN -> [SKIP][133] ([Intel XE#1123])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-1/igt@xe_copy_basic@mem-copy-linear-0xfd.html
* igt@xe_copy_basic@mem-set-linear-0x369:
- shard-adlp: NOTRUN -> [SKIP][134] ([Intel XE#1126])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-2/igt@xe_copy_basic@mem-set-linear-0x369.html
* igt@xe_create@create-big-vram:
- shard-adlp: NOTRUN -> [SKIP][135] ([Intel XE#1062])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@xe_create@create-big-vram.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-adlp: NOTRUN -> [SKIP][136] ([Intel XE#4837] / [Intel XE#5565]) +14 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-2/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug@read-metadata:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#4837]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-lnl-3/igt@xe_eudebug@read-metadata.html
* igt@xe_eudebug_online@interrupt-other-debuggable:
- shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#4837]) +2 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-436/igt@xe_eudebug_online@interrupt-other-debuggable.html
* igt@xe_eudebug_online@stopped-thread:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#4837]) +3 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-2/igt@xe_eudebug_online@stopped-thread.html
* igt@xe_evict@evict-large-cm:
- shard-adlp: NOTRUN -> [SKIP][140] ([Intel XE#261] / [Intel XE#5564]) +2 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-8/igt@xe_evict@evict-large-cm.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-adlp: NOTRUN -> [SKIP][141] ([Intel XE#261]) +6 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-8/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_evict@evict-small-external-cm:
- shard-adlp: NOTRUN -> [SKIP][142] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@xe_evict@evict-small-external-cm.html
* igt@xe_evict@evict-small-multi-vm-cm:
- shard-adlp: NOTRUN -> [SKIP][143] ([Intel XE#261] / [Intel XE#688])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@xe_evict@evict-small-multi-vm-cm.html
* igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd:
- shard-adlp: NOTRUN -> [SKIP][144] ([Intel XE#688]) +3 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-8/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-samefd.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind:
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#2322])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-4/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#1392])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-lnl-7/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
- shard-adlp: NOTRUN -> [SKIP][147] ([Intel XE#1392] / [Intel XE#5575]) +11 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm:
- shard-adlp: NOTRUN -> [SKIP][148] ([Intel XE#288] / [Intel XE#5561]) +36 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race-imm.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#288]) +3 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-436/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-lr:
- shard-adlp: NOTRUN -> [SKIP][150] ([Intel XE#2360])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
* igt@xe_exec_system_allocator@process-many-execqueues-free:
- shard-adlp: NOTRUN -> [SKIP][151] ([Intel XE#4915]) +373 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-1/igt@xe_exec_system_allocator@process-many-execqueues-free.html
* igt@xe_exec_system_allocator@threads-many-stride-mmap-huge:
- shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#4943])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-8/igt@xe_exec_system_allocator@threads-many-stride-mmap-huge.html
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#4943])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-lnl-5/igt@xe_exec_system_allocator@threads-many-stride-mmap-huge.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-eocheck:
- shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#4915]) +48 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-466/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-eocheck.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-dg2-set2: NOTRUN -> [ABORT][155] ([Intel XE#5466])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-434/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_mmap@pci-membarrier-parallel:
- shard-adlp: NOTRUN -> [SKIP][156] ([Intel XE#5100])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-8/igt@xe_mmap@pci-membarrier-parallel.html
* igt@xe_oa@mmio-triggered-reports-read:
- shard-adlp: NOTRUN -> [SKIP][157] ([Intel XE#6032])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@xe_oa@mmio-triggered-reports-read.html
* igt@xe_oa@syncs-syncobj-cfg:
- shard-adlp: NOTRUN -> [SKIP][158] ([Intel XE#3573]) +11 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@xe_oa@syncs-syncobj-cfg.html
- shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#3573])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-433/igt@xe_oa@syncs-syncobj-cfg.html
* igt@xe_pat@display-vs-wb-transient:
- shard-adlp: NOTRUN -> [SKIP][160] ([Intel XE#1337] / [Intel XE#5572])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-1/igt@xe_pat@display-vs-wb-transient.html
- shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#1337])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-435/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pat@pat-index-xe2:
- shard-adlp: NOTRUN -> [SKIP][162] ([Intel XE#977])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-2/igt@xe_pat@pat-index-xe2.html
* igt@xe_peer2peer@read:
- shard-adlp: NOTRUN -> [SKIP][163] ([Intel XE#1061] / [Intel XE#5568])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@xe_peer2peer@read.html
* igt@xe_pm@d3cold-mocs:
- shard-adlp: NOTRUN -> [SKIP][164] ([Intel XE#2284])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3hot-i2c:
- shard-adlp: NOTRUN -> [SKIP][165] ([Intel XE#5742])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-2/igt@xe_pm@d3hot-i2c.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-adlp: NOTRUN -> [SKIP][166] ([Intel XE#1948])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-6/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-adlp: NOTRUN -> [SKIP][167] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-1/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pm@s4-basic:
- shard-adlp: NOTRUN -> [FAIL][168] ([Intel XE#6339]) +1 other test fail
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@xe_pm@s4-basic.html
- shard-lnl: [PASS][169] -> [FAIL][170] ([Intel XE#6339]) +1 other test fail
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-lnl-8/igt@xe_pm@s4-basic.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-lnl-4/igt@xe_pm@s4-basic.html
* igt@xe_pmu@all-fn-engine-activity-load@engine-drm_xe_engine_class_render0:
- shard-adlp: NOTRUN -> [TIMEOUT][171] ([Intel XE#5213]) +1 other test timeout
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-6/igt@xe_pmu@all-fn-engine-activity-load@engine-drm_xe_engine_class_render0.html
* igt@xe_pmu@fn-engine-activity-load:
- shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#4650]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-464/igt@xe_pmu@fn-engine-activity-load.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle:
- shard-bmg: [PASS][173] -> [DMESG-WARN][174] ([Intel XE#3876])
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-bmg-3/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-8/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
* igt@xe_pmu@gt-frequency:
- shard-dg2-set2: [PASS][175] -> [FAIL][176] ([Intel XE#4819]) +1 other test fail
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-dg2-432/igt@xe_pmu@gt-frequency.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-434/igt@xe_pmu@gt-frequency.html
* igt@xe_pxp@display-pxp-fb:
- shard-adlp: NOTRUN -> [SKIP][177] ([Intel XE#4733])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@xe_pxp@display-pxp-fb.html
- shard-dg2-set2: NOTRUN -> [SKIP][178] ([Intel XE#4733])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-432/igt@xe_pxp@display-pxp-fb.html
* igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
- shard-adlp: NOTRUN -> [SKIP][179] ([Intel XE#4733] / [Intel XE#5594]) +4 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-8/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-adlp: NOTRUN -> [SKIP][180] ([Intel XE#944]) +4 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-8/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_render_copy@render-stress-4-copies:
- shard-adlp: NOTRUN -> [SKIP][181] ([Intel XE#4814] / [Intel XE#5614]) +3 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-8/igt@xe_render_copy@render-stress-4-copies.html
* igt@xe_spin_batch@spin-mem-copy:
- shard-adlp: NOTRUN -> [SKIP][182] ([Intel XE#4821])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-8/igt@xe_spin_batch@spin-mem-copy.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
- shard-bmg: [PASS][183] -> [FAIL][184] ([Intel XE#5937]) +1 other test fail
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-bmg-7/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-5/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-adlp: NOTRUN -> [DMESG-FAIL][185] ([Intel XE#3868] / [Intel XE#5213]) +1 other test dmesg-fail
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-6/igt@xe_sriov_scheduling@equal-throughput.html
#### Possible fixes ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][186] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [PASS][187] +1 other test pass
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
- shard-dg2-set2: [INCOMPLETE][188] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][189] +1 other test pass
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [SKIP][190] ([Intel XE#2291]) -> [PASS][191] +1 other test pass
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [FAIL][192] ([Intel XE#5299]) -> [PASS][193]
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_dp_aux_dev:
- shard-bmg: [SKIP][194] ([Intel XE#3009]) -> [PASS][195]
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-bmg-6/igt@kms_dp_aux_dev.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-2/igt@kms_dp_aux_dev.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-bmg: [SKIP][196] ([Intel XE#2316]) -> [PASS][197] +1 other test pass
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@flip-vs-rmfb:
- shard-adlp: [DMESG-WARN][198] ([Intel XE#5208]) -> [PASS][199]
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-adlp-9/igt@kms_flip@flip-vs-rmfb.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@kms_flip@flip-vs-rmfb.html
* igt@kms_flip@flip-vs-rmfb@d-hdmi-a1:
- shard-adlp: [DMESG-WARN][200] ([Intel XE#4543]) -> [PASS][201] +1 other test pass
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-adlp-9/igt@kms_flip@flip-vs-rmfb@d-hdmi-a1.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-9/igt@kms_flip@flip-vs-rmfb@d-hdmi-a1.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][202] ([Intel XE#1503]) -> [PASS][203]
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-4/igt@kms_hdr@invalid-hdr.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][204] ([Intel XE#718]) -> [PASS][205]
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: [SKIP][206] ([Intel XE#1435]) -> [PASS][207]
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01:
- shard-dg2-set2: [INCOMPLETE][208] -> [PASS][209] +1 other test pass
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-dg2-466/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-dg2-463/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-adlp: [DMESG-WARN][210] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][211] +2 other tests pass
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-adlp-1/igt@xe_pm@s3-d3hot-basic-exec.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-6/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-lnl: [FAIL][212] ([Intel XE#6339]) -> [PASS][213] +1 other test pass
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-lnl-1/igt@xe_pm@s4-vm-bind-userptr.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-lnl-7/igt@xe_pm@s4-vm-bind-userptr.html
- shard-adlp: [FAIL][214] ([Intel XE#6339]) -> [PASS][215]
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-adlp-2/igt@xe_pm@s4-vm-bind-userptr.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-6/igt@xe_pm@s4-vm-bind-userptr.html
#### Warnings ####
* igt@kms_content_protection@legacy:
- shard-bmg: [FAIL][216] ([Intel XE#1178]) -> [SKIP][217] ([Intel XE#2341])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-bmg-8/igt@kms_content_protection@legacy.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-6/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@srm:
- shard-bmg: [SKIP][218] ([Intel XE#2341]) -> [FAIL][219] ([Intel XE#1178])
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-bmg-6/igt@kms_content_protection@srm.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-7/igt@kms_content_protection@srm.html
* igt@kms_flip@flip-vs-suspend:
- shard-adlp: [DMESG-WARN][220] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543]) -> [DMESG-WARN][221] ([Intel XE#4543])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-adlp-1/igt@kms_flip@flip-vs-suspend.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-1/igt@kms_flip@flip-vs-suspend.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][222] ([Intel XE#2312]) -> [SKIP][223] ([Intel XE#2311]) +10 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][224] ([Intel XE#2312]) -> [SKIP][225] ([Intel XE#5390]) +4 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][226] ([Intel XE#5390]) -> [SKIP][227] ([Intel XE#2312]) +4 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][228] ([Intel XE#2311]) -> [SKIP][229] ([Intel XE#2312]) +10 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][230] ([Intel XE#2312]) -> [SKIP][231] ([Intel XE#2313]) +7 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][232] ([Intel XE#2313]) -> [SKIP][233] ([Intel XE#2312]) +9 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][234] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][235] ([Intel XE#3544])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-adlp: [SKIP][236] ([Intel XE#734]) -> [FAIL][237] ([Intel XE#3325])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-adlp-8/igt@kms_pm_dc@dc9-dpms.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-8/igt@kms_pm_dc@dc9-dpms.html
* igt@xe_exec_basic@multigpu-no-exec-null-rebind:
- shard-adlp: [SKIP][238] ([Intel XE#1392] / [Intel XE#5575]) -> [DMESG-WARN][239] ([Intel XE#4917])
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-adlp-1/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-adlp-6/igt@xe_exec_basic@multigpu-no-exec-null-rebind.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-bmg: [ABORT][240] ([Intel XE#5466] / [Intel XE#5530]) -> [ABORT][241] ([Intel XE#4917] / [Intel XE#5466] / [Intel XE#5530])
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb/shard-bmg-7/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/shard-bmg-8/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3325
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
[Intel XE#4821]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4821
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
[Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
[Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5425
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
[Intel XE#5568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5568
[Intel XE#5572]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5572
[Intel XE#5574]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5574
[Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
[Intel XE#5580]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5580
[Intel XE#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594
[Intel XE#5596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5596
[Intel XE#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607
[Intel XE#5614]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5614
[Intel XE#5632]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5632
[Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
[Intel XE#5745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5745
[Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
[Intel XE#5890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5890
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993
[Intel XE#6010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6010
[Intel XE#6032]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6032
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6320
[Intel XE#6326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6326
[Intel XE#6339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6339
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#734]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/734
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
Build changes
-------------
* IGT: IGT_8582 -> IGT_8584
* Linux: xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb -> xe-pw-155865v2
IGT_8582: 8582
IGT_8584: 8584
xe-3921-c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb: c6c2a6f0013cf24b117a1dd397c9e0530ff2f4cb
xe-pw-155865v2: 155865v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155865v2/index.html
[-- Attachment #2: Type: text/html, Size: 83741 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread