* Re: [PATCH v11 2/4] mm/page_owner: add NUMA node filter
From: Zi Yan @ 2026-06-25 19:27 UTC (permalink / raw)
To: Zhen Ni, akpm
Cc: vbabka, surenb, mhocko, jackmanb, hannes, linux-mm, linux-kernel
In-Reply-To: <20260625043101.338794-3-zhen.ni@easystack.cn>
On Thu Jun 25, 2026 at 12:30 AM EDT, Zhen Ni wrote:
> Add NUMA node filtering functionality to page_owner to allow filtering
> pages by specific NUMA node(s). This is useful for NUMA-aware memory
> allocation analysis and debugging.
>
> The filter supports flexible input formats:
> - Single node: nid=0
> - Multiple nodes: nid=0,2,3
> - Node range: nid=0-3
> - Mixed format: nid=0,2-4,7
>
> Example usage:
> # Using the page_owner_filter tool (recommended)
> ./page_owner_filter -n 0-3
> ./page_owner_filter -m stack_handle -n 0,2-4,7
>
> The implementation uses per-file-descriptor filter state stored in
> file->private_data, allowing each opener to have independent filter
> configuration. It uses nodemask_t for efficient multi-node filtering and
> nodelist_parse() for flexible input parsing. Node validity is verified
> using nodes_subset() to reject nodes without memory.
>
> Signed-off-by: Zhen Ni <zhen.ni@easystack.cn>
> ---
<snip>
>
> /*
> * Maximum input length for filter commands:
> - * 32: print_mode command max length is 17 ("mode=stack_handle").
> + * - 32: print_mode command max length is 17 ("mode=stack_handle")
> + * with sufficient buffer
> + * - 6 * MAX_NUMNODES: worst case for nid list
> + * Worst case per node: ",NNNNN" (comma + 5-digit node number) = 6 bytes
> */
> - max_input_len = 32;
> + max_input_len = 32 + 6 * MAX_NUMNODES;
>
> if (count > max_input_len)
> return -EINVAL;
Hi Andrew,
This needs to be fixed as well.
--
Best Regards,
Yan, Zi
^ permalink raw reply
* Re: [PATCH i-g-t 2/3] tests/gpu_buddy: Update buddy allocator tests
From: Krzysztof Niemiec @ 2026-06-25 19:27 UTC (permalink / raw)
To: Sebastian Brzezinka
Cc: igt-dev, Andi Shyti, Janusz Krzysztofik, Kamil Konieczny,
Krzysztof Karas
In-Reply-To: <DJH6SPTN4KBN.3JB1UQ6IQ2PS@intel.com>
On 2026-06-24 at 11:54:16 GMT, Sebastian Brzezinka wrote:
> Hi Krzysztof,
>
> On Tue Jun 23, 2026 at 10:01 PM CEST, Krzysztof Niemiec wrote:
> > The DRM buddy allocator has been moved one level up, and is now renamed
> > to just the GPU buddy allocator. This means that the .ko object used to
> > run the KUnit test has been renamed, so IGT tries to run a test that
> > doesn't exist anymore.
> >
> > Rename the drm_buddy.c file to gpu_buddy.c to reflect the kernel change,
> > and update the igt_kunit() call to invoke the proper tests. Also update
> > tests/meson.build to prevent the build system from trying to build
> > drm_buddy, and make it build gpu_buddy in its stead.
> >
> > Signed-off-by: Krzysztof Niemiec <krzysztof.niemiec@intel.com>
> > ---
> > tests/{drm_buddy.c => gpu_buddy.c} | 4 ++--
> > tests/meson.build | 2 +-
> > 2 files changed, 3 insertions(+), 3 deletions(-)
> > rename tests/{drm_buddy.c => gpu_buddy.c} (51%)
> >
> > diff --git a/tests/drm_buddy.c b/tests/gpu_buddy.c
> > similarity index 51%
> > rename from tests/drm_buddy.c
> > rename to tests/gpu_buddy.c
> > index dbc7c957d..8683b5af0 100644
> > --- a/tests/drm_buddy.c
> > +++ b/tests/gpu_buddy.c
> > @@ -6,9 +6,9 @@
> > #include "igt.h"
> > #include "igt_kmod.h"
> >
> > -IGT_TEST_DESCRIPTION("Basic sanity check of DRM's buddy allocator (struct drm_buddy)");
> > +IGT_TEST_DESCRIPTION("Basic sanity check of the GPU buddy allocator (struct gpu_buddy)");
> >
> > int igt_main()
> > {
> > - igt_kunit("drm_buddy_test", NULL, NULL);
> > + igt_kunit("gpu_buddy_tests", NULL, NULL);
> For some reason, I checked it, and igt_kunit uses strstr() to match _test,
> so the _tests might be ok. Still, I would prefer the singular form.
>
> But if it works, I'm fine with this.
> Reviewed-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
>
The test doesn't run with "gpu_buddy_test". This is because IGT loads
the module by name (or alias), which I think in this case corresponds to
the object file name; the previous test was compiled as drm_buddy_test.o,
the current test is compiled as gpu_buddy_tests.o.
> --
> Best regards,
> Sebastian
>
^ permalink raw reply
* Re: [PATCH v2 1/3] drm/msm: Fix barriers accessing ctx vm
From: sashiko-bot @ 2026-06-25 19:28 UTC (permalink / raw)
To: Rob Clark; +Cc: dri-devel
In-Reply-To: <20260625191537.47965-2-robin.clark@oss.qualcomm.com>
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
Pre-existing issues:
- [High] Direct access to uninitialized `ctx->vm` in `adreno_set_param` bypasses validation, allowing `VM_BIND` on global VMs.
--
commit be0b70b2e7a9f55182d48578fb53358469060fcb
Author: Rob Clark <robin.clark@oss.qualcomm.com>
drm/msm: Fix barriers accessing ctx vm
This commit adds load-acquire and store-release barriers when accessing
and lazily initializing ctx->vm in msm_context_vm(). This prevents callers
from seeing a partially initialized virtual memory state.
> diff --git a/drivers/gpu/drm/msm/msm_drv.c b/drivers/gpu/drm/msm/msm_drv.c
> index 32d5ebea2596f..ec88155e0ed72 100644
> --- a/drivers/gpu/drm/msm/msm_drv.c
> +++ b/drivers/gpu/drm/msm/msm_drv.c
> @@ -224,18 +224,19 @@ struct drm_gpuvm *msm_context_vm(struct drm_device *dev, struct msm_context *ctx
> {
> static DEFINE_MUTEX(init_lock);
> struct msm_drm_private *priv = dev->dev_private;
> + struct drm_gpuvm *vm = smp_load_acquire(&ctx->vm);
>
> /* Once ctx->vm is created it is valid for the lifetime of the context: */
> - if (ctx->vm)
> - return ctx->vm;
> + if (vm)
> + return vm;
[Severity: High]
This isn't a bug introduced by this patch, but seeing the fixes to ctx->vm
lazy initialization here points to a related problem in adreno_set_param().
Looking at adreno_set_param() in drivers/gpu/drm/msm/adreno/adreno_gpu.c,
there is this check when enabling VM_BIND:
if (ctx->vm == gpu->vm)
return UERR(EINVAL, drm, "requires per-process pgtables");
Since ctx->vm starts as NULL and is lazily initialized, couldn't this
check fail to catch global VMs (since NULL != gpu->vm) if msm_context_vm()
hasn't been called yet?
If unprivileged userspace opts into VM_BIND mode before the VM is
initialized, could this bypass the validation check on platforms without
per-process pagetables, potentially allowing arbitrary mapping in the
global GPU address space?
Should this be using msm_context_vm(dev, ctx) instead to ensure the
VM is instantiated before checking?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260625191537.47965-1-robin.clark@oss.qualcomm.com?part=1
^ permalink raw reply
* [PATCH i-g-t v2 0/3] Treat new/moved KUnit tests as such
From: Krzysztof Niemiec @ 2026-06-25 19:28 UTC (permalink / raw)
To: igt-dev
Cc: Andi Shyti, Janusz Krzysztofik, Kamil Konieczny, Krzysztof Karas,
Sebastian Brzezinka, Krzysztof Niemiec
There have been changes to two testsuites in the kernel, namely:
- dmabuf selftests have become KUnit tests,
- the DRM buddy allocator has been moved a level up and renamed to the
GPU buddy allocator, and the corresponding tests followed.
This series handles both of these changes to make IGT reflect them.
v2:
- Reordered the patches, so the fast feedback removal patch goes first
(Kamil)
- Don't explicitly describe the meson change in the gpu_buddy patch, as
it's expected anyway (Kamil)
- Use more explicit title for the gpu_buddy patch (Kamil)
Krzysztof Niemiec (3):
tests/intel-ci: Remove dmabuf tests from i915 fast feedback
tests/dmabuf: Port dmabuf tests to KUnit
tests/gpu_buddy: Rename the KUnit buddy allocator test
tests/dmabuf.c | 35 ++++++++++++----------
tests/{drm_buddy.c => gpu_buddy.c} | 4 +--
tests/intel-ci/i915.fast-feedback.testlist | 1 -
tests/meson.build | 2 +-
4 files changed, 22 insertions(+), 20 deletions(-)
rename tests/{drm_buddy.c => gpu_buddy.c} (51%)
--
2.45.2
^ permalink raw reply
* [PATCH i-g-t v2 3/3] tests/gpu_buddy: Rename the KUnit buddy allocator test
From: Krzysztof Niemiec @ 2026-06-25 19:28 UTC (permalink / raw)
To: igt-dev
Cc: Andi Shyti, Janusz Krzysztofik, Kamil Konieczny, Krzysztof Karas,
Sebastian Brzezinka, Krzysztof Niemiec
In-Reply-To: <20260625192850.56004-1-krzysztof.niemiec@intel.com>
The DRM buddy allocator has been moved one level up, and is now renamed
to just the GPU buddy allocator. This means that the .ko object used to
run the KUnit test has been renamed, so IGT tries to run a test that
doesn't exist anymore.
Rename the drm_buddy.c file to gpu_buddy.c to reflect the kernel change,
and update the igt_kunit() call to invoke the proper tests.
Signed-off-by: Krzysztof Niemiec <krzysztof.niemiec@intel.com>
Reviewed-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com>
Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com>
---
tests/{drm_buddy.c => gpu_buddy.c} | 4 ++--
tests/meson.build | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
rename tests/{drm_buddy.c => gpu_buddy.c} (51%)
diff --git a/tests/drm_buddy.c b/tests/gpu_buddy.c
similarity index 51%
rename from tests/drm_buddy.c
rename to tests/gpu_buddy.c
index dbc7c957d..4cea2e124 100644
--- a/tests/drm_buddy.c
+++ b/tests/gpu_buddy.c
@@ -6,9 +6,9 @@
#include "igt.h"
#include "igt_kmod.h"
-IGT_TEST_DESCRIPTION("Basic sanity check of DRM's buddy allocator (struct drm_buddy)");
+IGT_TEST_DESCRIPTION("Basic sanity check of the GPU buddy allocator (struct gpu_buddy)");
int igt_main()
{
- igt_kunit("drm_buddy_test", NULL, NULL);
+ igt_kunit("gpu_buddy_tests", NULL, NULL);
}
diff --git a/tests/meson.build b/tests/meson.build
index 4c1a39e9e..0d9008bbd 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -12,11 +12,11 @@ test_progs = [
'dmabuf_sync_file',
'device_reset',
'dumb_buffer',
- 'drm_buddy',
'drm_mm',
'drm_read',
'drm_virtgpu',
'fbdev',
+ 'gpu_buddy',
'kms_3d',
'kms_addfb_basic',
'kms_async_flips',
--
2.45.2
^ permalink raw reply related
* [PATCH i-g-t v2 2/3] tests/dmabuf: Port dmabuf tests to KUnit
From: Krzysztof Niemiec @ 2026-06-25 19:28 UTC (permalink / raw)
To: igt-dev
Cc: Andi Shyti, Janusz Krzysztofik, Kamil Konieczny, Krzysztof Karas,
Sebastian Brzezinka, Krzysztof Niemiec
In-Reply-To: <20260625192850.56004-1-krzysztof.niemiec@intel.com>
The dmabuf tests have been moved out of the selftest mechanism into
KUnit in these commits in the kernel:
126c50bc2fb6 dma-buf: Remove the old selftest
6055c9e333cf dma-buf: Change st-dma-fence-chain.c to use kunit
465f3934381c dma-buf: Change st-dma-fence-unwrap.c to use kunit
9baa35a39939 dma-buf: Change st-dma-fence.c to use kunit
15b9bde78bad dma-buf: Change st-dma-resv.c to use kunit
Launch dmabuf tests as KUnit tests instead of selftests from IGT's side
to reflect the kernel changes.
Signed-off-by: Krzysztof Niemiec <krzysztof.niemiec@intel.com>
Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com>
---
tests/dmabuf.c | 35 +++++++++++++++++++----------------
1 file changed, 19 insertions(+), 16 deletions(-)
diff --git a/tests/dmabuf.c b/tests/dmabuf.c
index 322981473..1baefb299 100644
--- a/tests/dmabuf.c
+++ b/tests/dmabuf.c
@@ -25,7 +25,7 @@
#include "igt_kmod.h"
/**
* TEST: dmabuf
- * Description: Kernel selftests for the dmabuf API
+ * Description: KUnit tests for the dmabuf API
* Category: Core
* Mega feature: General Core features
* Functionality: drm_mm
@@ -33,14 +33,16 @@
* Feature: mapping, prime
* Test category: GEM_Legacy
*
- * SUBTEST: all-tests
+ * SUBTEST: dma-buf-resv
*
- * SUBTEST: all-tests@dma_fence
+ * SUBTEST: dma-buf-fence
*
- * SUBTEST: all-tests@sanitycheck
+ * SUBTEST: dma-buf-fence-unwrap
+ *
+ * SUBTEST: dma-buf-fence-chain
*/
-IGT_TEST_DESCRIPTION("Kernel selftests for the dmabuf API");
+IGT_TEST_DESCRIPTION("KUnit tests for the dmabuf API");
static unsigned int bogomips(void)
{
@@ -76,23 +78,24 @@ static unsigned int bogomips(void)
return igt_debug_on(!bogomips) ? UINT_MAX : ret;
}
-static int wrapper(const char *dynamic_name,
- struct igt_ktest *tst,
- struct igt_kselftest_list *tl)
+int igt_main()
{
+ igt_kunit("dmabuf_kunit", "dma-buf-resv", NULL);
+ igt_kunit("dmabuf_kunit", "dma-buf-fence", NULL);
+
/*
- * Test case wait-backward of dma_fence_chain selftest can trigger soft
+ * Test case wait-backward of dma_fence_chain test can trigger soft
* lockups on slow machines. Since that slowness is not recognized as
* a bug on the kernel side, the issue is not going to be fixed. Based
- * on analysis of CI results, skip that selftest on machines slower than
+ * on analysis of CI results, skip that test on machines slower than
* 25000 BogoMIPS to avoid ever returning CI reports on that failure.
*/
- igt_skip_on(!strcmp(dynamic_name, "dma_fence_chain") && bogomips() < 25000);
- return igt_kselftest_execute(tst, tl, NULL, NULL);
-}
+ if (bogomips() >= 25000)
+ igt_kunit("dmabuf_kunit", "dma-buf-fence-chain", NULL);
+ else
+ igt_subtest("dma-buf-fence-chain")
+ igt_skip("BogoMips < 25000 - test is not supported\n");
-int igt_main()
-{
- igt_kselftests("dmabuf_selftests", NULL, NULL, NULL, wrapper);
+ igt_kunit("dmabuf_kunit", "dma-buf-fence-unwrap", NULL);
}
--
2.45.2
^ permalink raw reply related
* [PATCH i-g-t v2 1/3] tests/intel-ci: Remove dmabuf tests from i915 fast feedback
From: Krzysztof Niemiec @ 2026-06-25 19:28 UTC (permalink / raw)
To: igt-dev
Cc: Andi Shyti, Janusz Krzysztofik, Kamil Konieczny, Krzysztof Karas,
Sebastian Brzezinka, Krzysztof Niemiec
In-Reply-To: <20260625192850.56004-1-krzysztof.niemiec@intel.com>
Intel CI runs KUnit tests separately from regular tests. Remove the
dmabuf tests from the i915 fast feedback testlist, as they are now
KUnit tests, instead of selftests.
Signed-off-by: Krzysztof Niemiec <krzysztof.niemiec@intel.com>
Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com>
---
tests/intel-ci/i915.fast-feedback.testlist | 1 -
1 file changed, 1 deletion(-)
diff --git a/tests/intel-ci/i915.fast-feedback.testlist b/tests/intel-ci/i915.fast-feedback.testlist
index 2799bbaa5..5b33f29e4 100644
--- a/tests/intel-ci/i915.fast-feedback.testlist
+++ b/tests/intel-ci/i915.fast-feedback.testlist
@@ -168,4 +168,3 @@ igt@i915_pm_rpm@module-reload
# Kernel selftests
igt@i915_selftest@live
-igt@dmabuf@all-tests
--
2.45.2
^ permalink raw reply related
* Re: [PATCH] treewide: Kconfig: use bool instead of tristate
From: Neha Malcom Francis @ 2026-06-25 19:30 UTC (permalink / raw)
To: Anshul Dalal
Cc: uboot-stm32, u-boot, Patrick Delaunay, Tom Rini, Lukasz Majewski,
Heiko Schocher, Dinesh, Peng Fan, Jaehoon Chung, Jerome Forissier,
Neil Armstrong, Bhupesh Sharma, Neha Malcom Francis, Marek Vasut,
Sebastian Reichel, Patrice Chotard, Quentin Schulz,
Kory Maincent (TI.com), Simon Glass, Mikhail Kshevetskiy,
Heinrich Schuchardt, Andrew Goodbody, Leo Yu-Chi Liang, Nick Hu,
Jimmy Ho, Michal Simek, Michael Trimarchi, Peter Korsgaard,
Casey Connolly, Justin Swartz, Bastien Curutchet, Jonathan Stroud,
Padmarao Begari, Mateus Lima Alves, Jamie Gibbons, Daniel Palmer,
Angelo Dureghello, Peter Robinson, Lucien.Jheng, Ilias Apalodimas,
Beiyan Yun, Weijie Gao, Siddharth Vadapalli, Romain Gantois,
Alice Guo, Tien Fong Chee, Ralph Siemsen, Boon Khai Ng, Shawn Lin,
Igor Belwon, Alexey Charkov, Tuyen Dang, Yegor Yefremov
In-Reply-To: <20260625-tristate_fix-v1-1-95e16153d752@ti.com>
On Thu, 25 Jun 2026 08:47:06 +0530, Anshul Dalal <anshuld@ti.com> wrote:
> treewide: Kconfig: use bool instead of tristate
Reviewed-by: Neha Malcom Francis <n-francis@ti.com>
--
Neha Malcom Francis <n-francis@ti.com>
^ permalink raw reply
* ✗ Xe.CI.FULL: failure for drm/i915/display: All patches to make PREEMPT_RT work on i915 + xe. (rev19)
From: Patchwork @ 2026-06-25 19:32 UTC (permalink / raw)
To: Sebastian Andrzej Siewior; +Cc: intel-xe
In-Reply-To: <20260624180459.1024068-1-dev@lankhorst.se>
[-- Attachment #1: Type: text/plain, Size: 180860 bytes --]
== Series Details ==
Series: drm/i915/display: All patches to make PREEMPT_RT work on i915 + xe. (rev19)
URL : https://patchwork.freedesktop.org/series/159034/
State : failure
== Summary ==
CI Bug Log - changes from xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973_FULL -> xe-pw-159034v19_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-159034v19_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-159034v19_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 (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-159034v19_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@core_setmaster@master-drop-set-root:
- shard-bmg: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@core_setmaster@master-drop-set-root.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@core_setmaster@master-drop-set-root.html
* igt@kms_color@ctm-red-to-blue:
- shard-lnl: [PASS][3] -> [DMESG-WARN][4] +1 other test dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-6/igt@kms_color@ctm-red-to-blue.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-4/igt@kms_color@ctm-red-to-blue.html
* igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible@d-hdmi-a3:
- shard-bmg: NOTRUN -> [WARN][5]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-8/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible@d-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
- shard-bmg: [PASS][6] -> [CRASH][7]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [CRASH][8]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping:
- shard-bmg: NOTRUN -> [DMESG-WARN][9]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-3/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping.html
* igt@xe_exec_system_allocator@process-many-large-mmap-shared-remap-eocheck:
- shard-bmg: NOTRUN -> [FAIL][10]
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@xe_exec_system_allocator@process-many-large-mmap-shared-remap-eocheck.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt0-rcs0:
- shard-bmg: NOTRUN -> [ABORT][11] +1 other test abort
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-3/igt@xe_sriov_scheduling@nonpreempt-engine-resets-normal-priority@numvfs-random-gt0-rcs0.html
#### Warnings ####
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: [SKIP][12] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836]) -> [SKIP][13]
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
New tests
---------
New tests have been introduced between xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973_FULL and xe-pw-159034v19_FULL:
### New IGT tests (2) ###
* igt@kms_cursor_crc@cursor-alpha-opaque@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.54] s
* igt@kms_cursor_crc@cursor-size-change@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [1.85] s
Known issues
------------
Here are the changes found in xe-pw-159034v19_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-read:
- shard-bmg: [PASS][14] -> [SKIP][15] ([Intel XE#5177] / [Intel XE#8440] / [Intel XE#8480])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-4/igt@intel_hwmon@hwmon-read.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2233])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-bmg: [PASS][17] -> [FAIL][18] ([Intel XE#3718] / [Intel XE#6078]) +1 other test fail
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-lnl: [PASS][19] -> [FAIL][20] ([Intel XE#3718] / [Intel XE#7265])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-7/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-4/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-edp-1:
- shard-lnl: [PASS][21] -> [FAIL][22] ([Intel XE#7265]) +1 other test fail
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-7/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-edp-1.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-4/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-b-edp-1.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2:
- shard-bmg: [PASS][23] -> [FAIL][24] ([Intel XE#6078]) +1 other test fail
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-dp-2.html
* igt@kms_async_flips@basic-modeset-with-all-modifiers-formats@pipe-a-dp-2-4-rc-ccs-xrgb2101010:
- shard-bmg: NOTRUN -> [INCOMPLETE][25] ([Intel XE#8437] / [Intel XE#8479]) +5 other tests incomplete
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-9/igt@kms_async_flips@basic-modeset-with-all-modifiers-formats@pipe-a-dp-2-4-rc-ccs-xrgb2101010.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2370])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1407]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-bmg: [PASS][28] -> [TIMEOUT][29] ([Intel XE#8446] / [Intel XE#8479])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: NOTRUN -> [TIMEOUT][30] ([Intel XE#8446] / [Intel XE#8479]) +3 other tests timeout
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-lnl: NOTRUN -> [INCOMPLETE][31] ([Intel XE#5643] / [Intel XE#8479]) +1 other test incomplete
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7059] / [Intel XE#7085]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2327]) +4 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-bmg: NOTRUN -> [TIMEOUT][34] ([Intel XE#8479]) +1 other test timeout
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-bmg: NOTRUN -> [INCOMPLETE][35] ([Intel XE#5643] / [Intel XE#8479])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-9/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#607] / [Intel XE#7361])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [TIMEOUT][37] ([Intel XE#8446])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#1124]) +16 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1124]) +3 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-target-1920x1080p:
- shard-bmg: [PASS][40] -> [INCOMPLETE][41] ([Intel XE#8479]) +1 other test incomplete
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-9/igt@kms_bw@connected-linear-tiling-2-displays-target-1920x1080p.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-target-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#7679])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-9/igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-target-2560x1440p:
- shard-lnl: NOTRUN -> [INCOMPLETE][43] ([Intel XE#8445])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-4/igt@kms_bw@linear-tiling-4-displays-target-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-target-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#367])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_bw@linear-tiling-4-displays-target-3840x2160p.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-bmg: NOTRUN -> [INCOMPLETE][45] ([Intel XE#8150] / [Intel XE#8479])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2652]) +8 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#3432])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#2669] / [Intel XE#7389]) +3 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2887]) +16 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#2887]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-5/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2252]) +12 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2325] / [Intel XE#7358])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#7358])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-4/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#7358]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-8/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html
* igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#373]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-8/igt@kms_chamelium_hpd@hdmi-hpd-after-hibernate.html
* igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][56] ([Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#6974])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][58] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +3 other tests fail
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-1:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#7642])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-8/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@uevent@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][60] ([Intel XE#6707] / [Intel XE#7439])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-8/igt@kms_content_protection@uevent@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2320]) +5 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1424]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#309] / [Intel XE#7343])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-5/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#4210] / [Intel XE#7467])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-3/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#1508]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-9/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#4354] / [Intel XE#7386])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-4/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#8265])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-5/igt@kms_dsc@dsc-with-bpc-formats-ultrajoiner.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#8265]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#6126] / [Intel XE#776])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#702] / [Intel XE#7344])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-2/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-bmg: [PASS][72] -> [FAIL][73] ([Intel XE#6266]) +1 other test fail
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_flip@2x-blocking-wf_vblank.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-3/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#1421]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-3/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: NOTRUN -> [INCOMPLETE][75] ([Intel XE#2597] / [Intel XE#8155] / [Intel XE#8479])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: [PASS][76] -> [INCOMPLETE][77] ([Intel XE#8155] / [Intel XE#8479])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: NOTRUN -> [FAIL][78] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2:
- shard-bmg: NOTRUN -> [FAIL][79] ([Intel XE#3321]) +5 other tests fail
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1:
- shard-lnl: NOTRUN -> [FAIL][80] ([Intel XE#301]) +1 other test fail
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [PASS][81] -> [FAIL][82] ([Intel XE#301])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@c-dp2:
- shard-bmg: [PASS][83] -> [FAIL][84] ([Intel XE#3321]) +10 other tests fail
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank@c-dp2.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [PASS][85] -> [FAIL][86] ([Intel XE#301] / [Intel XE#3149])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-valid-mode:
- shard-bmg: [PASS][88] -> [TIMEOUT][89] ([Intel XE#8479]) +2 other tests timeout
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-valid-mode.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling@pipe-a-default-mode:
- shard-lnl: [PASS][90] -> [INCOMPLETE][91] ([Intel XE#8479]) +3 other tests incomplete
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling@pipe-a-default-mode.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [TIMEOUT][92] ([Intel XE#8467] / [Intel XE#8479]) +1 other test timeout
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#7178] / [Intel XE#7351]) +5 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#7179])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#6312]) +3 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#7061] / [Intel XE#7356]) +6 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#7061]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#4141]) +17 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#656] / [Intel XE#7905]) +14 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2311]) +70 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#6312] / [Intel XE#651]) +2 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#2352] / [Intel XE#7399])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#8441] / [Intel XE#8480]) +4 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-render:
- shard-bmg: [PASS][104] -> [INCOMPLETE][105] ([Intel XE#8368] / [Intel XE#8479]) +1 other test incomplete
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-9/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-render.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-4/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [INCOMPLETE][106] ([Intel XE#8368] / [Intel XE#8479]) +1 other test incomplete
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-indfb-plflip-blt:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#7905]) +10 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [PASS][108] -> [SKIP][109] ([Intel XE#8441] / [Intel XE#8480]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [PASS][110] -> [TIMEOUT][111] ([Intel XE#8466] / [Intel XE#8479]) +1 other test timeout
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [TIMEOUT][112] ([Intel XE#8466] / [Intel XE#8479]) +3 other tests timeout
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2313]) +84 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#7865]) +9 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#7399]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#7399])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-tiling-y.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: [PASS][118] -> [SKIP][119] ([Intel XE#7308])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@kms_hdmi_inject@inject-audio.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#6901])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-lnl: NOTRUN -> [INCOMPLETE][121] ([Intel XE#1035] / [Intel XE#8479])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
- shard-bmg: NOTRUN -> [INCOMPLETE][122] ([Intel XE#1035] / [Intel XE#8479]) +1 other test incomplete
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-8/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#7283]) +5 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-0:
- shard-bmg: NOTRUN -> [CRASH][124] ([Intel XE#8460])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-3/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-a-plane-0.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#8303]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#599] / [Intel XE#7382]) +3 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-3/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2393])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#5021] / [Intel XE#7377])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#5020] / [Intel XE#7348])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-a:
- shard-bmg: [PASS][130] -> [INCOMPLETE][131] ([Intel XE#8459] / [Intel XE#8479]) +1 other test incomplete
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-9/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-a.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format:
- shard-bmg: NOTRUN -> [INCOMPLETE][132] ([Intel XE#8459] / [Intel XE#8479]) +2 other tests incomplete
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2505] / [Intel XE#7447])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-bmg: [PASS][135] -> [SKIP][136] ([Intel XE#8440])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#4608] / [Intel XE#7304])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#1489]) +11 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2387] / [Intel XE#7429])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@psr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#2234] / [Intel XE#2850]) +10 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-3/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2234])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-9/igt@kms_psr@psr2-primary-render.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#7795])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#1127] / [Intel XE#5813])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#2330] / [Intel XE#5813])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#3904] / [Intel XE#7342])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#2413])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#1435])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#6503]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#2426] / [Intel XE#5848])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#2450] / [Intel XE#5857])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flip-basic:
- shard-lnl: [PASS][152] -> [FAIL][153] ([Intel XE#4227] / [Intel XE#7397]) +3 other tests fail
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-3/igt@kms_vrr@flip-basic.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-1/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#1499]) +2 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-8/igt@kms_vrr@max-min.html
* igt@xe_eudebug_online@breakpoint-not-in-debug-mode:
- shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#7636]) +12 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-4/igt@xe_eudebug_online@breakpoint-not-in-debug-mode.html
* igt@xe_evict@evict-beng-cm-threads-small:
- shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#6540] / [Intel XE#688]) +3 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-5/igt@xe_evict@evict-beng-cm-threads-small.html
* igt@xe_evict@evict-small-multi-queue-cm:
- shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#8370])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-3/igt@xe_evict@evict-small-multi-queue-cm.html
* igt@xe_exec_balancer@many-parallel-userptr-invalidate:
- shard-bmg: [PASS][158] -> [SKIP][159] ([Intel XE#8480]) +38 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@xe_exec_balancer@many-parallel-userptr-invalidate.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@xe_exec_balancer@many-parallel-userptr-invalidate.html
* igt@xe_exec_balancer@once-cm-parallel-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#7482]) +5 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-2/igt@xe_exec_balancer@once-cm-parallel-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#2322] / [Intel XE#7372]) +8 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [CRASH][162] ([Intel XE#8482])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind:
- shard-bmg: NOTRUN -> [INCOMPLETE][163] ([Intel XE#8479]) +10 other tests incomplete
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html
* igt@xe_exec_basic@multigpu-once-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#1392]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-2/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html
* igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#8480]) +19 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@xe_exec_compute_mode@twice-bindexecqueue-userptr-rebind.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm:
- shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#8374]) +15 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-8/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#8374]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-7/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate.html
* igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-priority:
- shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#8364]) +5 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-8/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-priority.html
* igt@xe_exec_multi_queue@two-queues-priority:
- shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#8364]) +33 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@xe_exec_multi_queue@two-queues-priority.html
* igt@xe_exec_reset@multi-queue-long-spin-reuse-many-queue-switch:
- shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#8369])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@xe_exec_reset@multi-queue-long-spin-reuse-many-queue-switch.html
* igt@xe_exec_system_allocator@many-large-execqueues-mmap-remap-ro-dontunmap-eocheck:
- shard-bmg: NOTRUN -> [INCOMPLETE][171] ([Intel XE#8159] / [Intel XE#8437] / [Intel XE#8479])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-9/igt@xe_exec_system_allocator@many-large-execqueues-mmap-remap-ro-dontunmap-eocheck.html
* igt@xe_exec_system_allocator@pat-index-madvise-max-pat-index-single-vma:
- shard-bmg: NOTRUN -> [CRASH][172] ([Intel XE#8450])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@xe_exec_system_allocator@pat-index-madvise-max-pat-index-single-vma.html
* igt@xe_exec_system_allocator@process-many-large-execqueues-malloc-race-nomemset:
- shard-lnl: NOTRUN -> [INCOMPLETE][173] ([Intel XE#8479]) +16 other tests incomplete
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-8/igt@xe_exec_system_allocator@process-many-large-execqueues-malloc-race-nomemset.html
* igt@xe_exec_system_allocator@process-many-large-execqueues-new-bo-map:
- shard-bmg: [PASS][174] -> [FAIL][175] ([Intel XE#8479]) +5 other tests fail
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-9/igt@xe_exec_system_allocator@process-many-large-execqueues-new-bo-map.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-8/igt@xe_exec_system_allocator@process-many-large-execqueues-new-bo-map.html
* igt@xe_exec_system_allocator@process-many-large-execqueues-new-race-nomemset:
- shard-bmg: NOTRUN -> [FAIL][176] ([Intel XE#8479]) +1 other test fail
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@xe_exec_system_allocator@process-many-large-execqueues-new-race-nomemset.html
* igt@xe_exec_system_allocator@threads-many-execqueues-mmap-new-madvise:
- shard-lnl: [PASS][177] -> [TIMEOUT][178] ([Intel XE#8447] / [Intel XE#8479])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-3/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-new-madvise.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-3/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-new-madvise.html
* igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-bo-unmap-nomemset:
- shard-bmg: NOTRUN -> [INCOMPLETE][179] ([Intel XE#8159] / [Intel XE#8479]) +10 other tests incomplete
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-9/igt@xe_exec_system_allocator@threads-many-large-execqueues-malloc-bo-unmap-nomemset.html
* igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-remap-ro-dontunmap-eocheck:
- shard-lnl: NOTRUN -> [INCOMPLETE][180] ([Intel XE#8437] / [Intel XE#8479]) +1 other test incomplete
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-2/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-remap-ro-dontunmap-eocheck.html
* igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-shared-remap-dontunmap:
- shard-bmg: [PASS][181] -> [INCOMPLETE][182] ([Intel XE#8159] / [Intel XE#8479]) +22 other tests incomplete
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-8/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-shared-remap-dontunmap.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-9/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-shared-remap-dontunmap.html
* igt@xe_exec_system_allocator@threads-many-stride-malloc-nomemset:
- shard-bmg: NOTRUN -> [SKIP][183] ([Intel XE#8440] / [Intel XE#8480]) +62 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-stride-malloc-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-malloc-madvise:
- shard-lnl: NOTRUN -> [TIMEOUT][184] ([Intel XE#8447] / [Intel XE#8479])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-malloc-madvise.html
* igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [INCOMPLETE][185] ([Intel XE#8366] / [Intel XE#8479])
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race.html
* igt@xe_exec_threads@threads-multi-queue-mixed-fd-basic:
- shard-lnl: NOTRUN -> [SKIP][186] ([Intel XE#8378]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-7/igt@xe_exec_threads@threads-multi-queue-mixed-fd-basic.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][187] ([Intel XE#8378]) +8 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_device_create:
- shard-bmg: NOTRUN -> [CRASH][188] ([Intel XE#8448])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_device_create.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early:
- shard-bmg: [PASS][189] -> [SKIP][190] ([Intel XE#8440] / [Intel XE#8480]) +144 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_ggtt_init_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
- shard-bmg: NOTRUN -> [INCOMPLETE][191] ([Intel XE#8486])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early:
- shard-bmg: [PASS][192] -> [INCOMPLETE][193] ([Intel XE#8486])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_pm_init_early.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wa_gt_init:
- shard-bmg: NOTRUN -> [INCOMPLETE][194] ([Intel XE#8479] / [Intel XE#8486])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_gt_init.html
* igt@xe_gpgpu_fill@offset-4x4:
- shard-bmg: NOTRUN -> [SKIP][195] ([Intel XE#7954])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@xe_gpgpu_fill@offset-4x4.html
* igt@xe_madvise@atomic-cpu:
- shard-lnl: NOTRUN -> [SKIP][196] ([Intel XE#7980])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-6/igt@xe_madvise@atomic-cpu.html
* igt@xe_mmap@pci-membarrier:
- shard-lnl: NOTRUN -> [SKIP][197] ([Intel XE#5100] / [Intel XE#7322] / [Intel XE#7408])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-7/igt@xe_mmap@pci-membarrier.html
* igt@xe_mmap@vram:
- shard-lnl: NOTRUN -> [SKIP][198] ([Intel XE#1416])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-4/igt@xe_mmap@vram.html
* igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch:
- shard-bmg: NOTRUN -> [SKIP][199] ([Intel XE#6964]) +3 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html
* igt@xe_oa@non-zero-reason:
- shard-bmg: NOTRUN -> [FAIL][200] ([Intel XE#7334]) +1 other test fail
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-3/igt@xe_oa@non-zero-reason.html
* igt@xe_page_reclaim@basic-mixed:
- shard-bmg: NOTRUN -> [SKIP][201] ([Intel XE#7793]) +2 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-4/igt@xe_page_reclaim@basic-mixed.html
* igt@xe_pat@pat-index-xehpc:
- shard-lnl: NOTRUN -> [SKIP][202] ([Intel XE#1420] / [Intel XE#2838] / [Intel XE#7590])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-8/igt@xe_pat@pat-index-xehpc.html
- shard-bmg: NOTRUN -> [SKIP][203] ([Intel XE#1420] / [Intel XE#7590])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-8/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-sw-hw-suspend:
- shard-bmg: NOTRUN -> [FAIL][204] ([Intel XE#7695])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@xe_pat@pat-sw-hw-suspend.html
* igt@xe_pat@xa-app-transient-media-on:
- shard-bmg: NOTRUN -> [SKIP][205] ([Intel XE#7590]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-9/igt@xe_pat@xa-app-transient-media-on.html
* igt@xe_peer2peer@write:
- shard-bmg: NOTRUN -> [SKIP][206] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-mocs:
- shard-lnl: NOTRUN -> [SKIP][207] ([Intel XE#2284] / [Intel XE#7370])
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-6/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: NOTRUN -> [SKIP][208] ([Intel XE#2284] / [Intel XE#7370]) +3 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][209] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-6/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-lnl: NOTRUN -> [SKIP][210] ([Intel XE#584] / [Intel XE#7369]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-7/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: NOTRUN -> [SKIP][211] ([Intel XE#944]) +2 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-9/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
- shard-lnl: NOTRUN -> [SKIP][212] ([Intel XE#944])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-2/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_sriov_admin@preempt-timeout-write-readback-vfs-disabled@vf10-pt_us-20000:
- shard-bmg: NOTRUN -> [INCOMPLETE][213] ([Intel XE#8437] / [Intel XE#8477] / [Intel XE#8479])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@xe_sriov_admin@preempt-timeout-write-readback-vfs-disabled@vf10-pt_us-20000.html
#### Possible fixes ####
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-bmg: [TIMEOUT][214] ([Intel XE#8451]) -> [PASS][215]
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-bmg: [SKIP][216] ([Intel XE#8480]) -> [PASS][217] +8 other tests pass
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-bmg: [CRASH][218] ([Intel XE#8461]) -> [PASS][219]
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-2/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-4/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible:
- shard-lnl: [INCOMPLETE][220] ([Intel XE#8437]) -> [PASS][221]
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-7/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-2/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible@a-dp2:
- shard-bmg: [INCOMPLETE][222] ([Intel XE#8155]) -> [PASS][223] +1 other test pass
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible@a-dp2.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-8/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible@a-dp2.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-bmg: [TIMEOUT][224] ([Intel XE#8467]) -> [PASS][225] +1 other test pass
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-render:
- shard-bmg: [TIMEOUT][226] ([Intel XE#8466]) -> [PASS][227] +2 other tests pass
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-3/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-render.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: [INCOMPLETE][228] ([Intel XE#8368]) -> [PASS][229] +1 other test pass
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-2/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-shrfb-draw-render.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][230] ([Intel XE#1503]) -> [PASS][231]
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_hdr@invalid-hdr.html
* igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate:
- shard-bmg: [INCOMPLETE][232] ([Intel XE#8437]) -> [PASS][233] +10 other tests pass
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-9/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_system_allocator@process-many-execqueues-malloc-mlock-nomemset:
- shard-bmg: [CRASH][234] ([Intel XE#8450]) -> [PASS][235]
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@xe_exec_system_allocator@process-many-execqueues-malloc-mlock-nomemset.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@xe_exec_system_allocator@process-many-execqueues-malloc-mlock-nomemset.html
* igt@xe_exec_system_allocator@process-many-execqueues-malloc-race-nomemset:
- shard-bmg: [FAIL][236] -> [PASS][237] +2 other tests pass
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@xe_exec_system_allocator@process-many-execqueues-malloc-race-nomemset.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@xe_exec_system_allocator@process-many-execqueues-malloc-race-nomemset.html
* igt@xe_exec_system_allocator@process-many-large-malloc-mlock-nomemset:
- shard-bmg: [FAIL][238] ([Intel XE#8479]) -> [PASS][239] +7 other tests pass
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-2/igt@xe_exec_system_allocator@process-many-large-malloc-mlock-nomemset.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-8/igt@xe_exec_system_allocator@process-many-large-malloc-mlock-nomemset.html
* igt@xe_exec_system_allocator@threads-many-stride-free-nomemset:
- shard-bmg: [SKIP][240] ([Intel XE#8441]) -> [PASS][241] +65 other tests pass
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@xe_exec_system_allocator@threads-many-stride-free-nomemset.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@xe_exec_system_allocator@threads-many-stride-free-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-malloc-nomemset:
- shard-bmg: [INCOMPLETE][242] ([Intel XE#8159]) -> [PASS][243] +20 other tests pass
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-malloc-nomemset.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-malloc-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-madvise:
- shard-bmg: [TIMEOUT][244] ([Intel XE#8447]) -> [PASS][245]
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-madvise.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-new-madvise.html
* igt@xe_exec_threads@threads-bal-mixed-fd-userptr-invalidate-race:
- shard-lnl: [TIMEOUT][246] ([Intel XE#8470]) -> [PASS][247]
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-3/igt@xe_exec_threads@threads-bal-mixed-fd-userptr-invalidate-race.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-1/igt@xe_exec_threads@threads-bal-mixed-fd-userptr-invalidate-race.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_device_probe_early:
- shard-bmg: [CRASH][248] ([Intel XE#8448]) -> [PASS][249]
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_device_probe_early.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_device_probe_early.html
* igt@xe_live_ktest@xe_dma_buf:
- shard-bmg: [FAIL][250] ([Intel XE#8464]) -> [PASS][251] +1 other test pass
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@xe_live_ktest@xe_dma_buf.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-4/igt@xe_live_ktest@xe_dma_buf.html
* igt@xe_sriov_admin@preempt-timeout-write-readback-vfs-disabled@pf-pt_us-20000:
- shard-bmg: [INCOMPLETE][252] ([Intel XE#8477]) -> [PASS][253]
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-9/igt@xe_sriov_admin@preempt-timeout-write-readback-vfs-disabled@pf-pt_us-20000.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@xe_sriov_admin@preempt-timeout-write-readback-vfs-disabled@pf-pt_us-20000.html
* igt@xe_svm_usrptr_madvise@svm-userptr-copy-madvise:
- shard-bmg: [SKIP][254] ([Intel XE#8440]) -> [PASS][255] +205 other tests pass
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@xe_svm_usrptr_madvise@svm-userptr-copy-madvise.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@xe_svm_usrptr_madvise@svm-userptr-copy-madvise.html
#### Warnings ####
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
- shard-bmg: [INCOMPLETE][256] ([Intel XE#8174]) -> [SKIP][257] ([Intel XE#8440] / [Intel XE#8480])
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-3/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-lnl: [INCOMPLETE][258] ([Intel XE#5643]) -> [TIMEOUT][259] ([Intel XE#8446] / [Intel XE#8479])
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-bmg: [SKIP][260] ([Intel XE#8440]) -> [TIMEOUT][261] ([Intel XE#8446] / [Intel XE#8479])
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-bmg: [TIMEOUT][262] ([Intel XE#8446]) -> [TIMEOUT][263] ([Intel XE#8446] / [Intel XE#8479]) +3 other tests timeout
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-bmg: [TIMEOUT][264] ([Intel XE#8479]) -> [TIMEOUT][265] ([Intel XE#8446] / [Intel XE#8479])
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: [TIMEOUT][266] ([Intel XE#8446]) -> [TIMEOUT][267] ([Intel XE#8446] / [Intel XE#8479]) +5 other tests timeout
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-0:
- shard-bmg: [SKIP][268] ([Intel XE#8441]) -> [SKIP][269] ([Intel XE#8441] / [Intel XE#8480])
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@kms_big_fb@linear-16bpp-rotate-0.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_big_fb@linear-16bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-lnl: [TIMEOUT][270] ([Intel XE#8479]) -> [INCOMPLETE][271] ([Intel XE#5643] / [Intel XE#8479])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: [TIMEOUT][272] ([Intel XE#8446]) -> [INCOMPLETE][273] ([Intel XE#5643] / [Intel XE#8479]) +1 other test incomplete
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-lnl: [INCOMPLETE][274] ([Intel XE#5643]) -> [INCOMPLETE][275] ([Intel XE#5643] / [Intel XE#8479]) +17 other tests incomplete
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-bmg: [SKIP][276] ([Intel XE#8440]) -> [TIMEOUT][277] ([Intel XE#8479])
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-bmg: [SKIP][278] ([Intel XE#8440]) -> [INCOMPLETE][279] ([Intel XE#5643] / [Intel XE#8479])
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-lnl: [TIMEOUT][280] ([Intel XE#8446]) -> [INCOMPLETE][281] ([Intel XE#5643] / [Intel XE#8479]) +1 other test incomplete
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
- shard-bmg: [INCOMPLETE][282] ([Intel XE#5643]) -> [TIMEOUT][283] ([Intel XE#8446] / [Intel XE#8479])
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-9/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-bmg: [SKIP][284] ([Intel XE#8440]) -> [SKIP][285] ([Intel XE#1124]) +2 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-bmg: [SKIP][286] ([Intel XE#8441]) -> [SKIP][287] ([Intel XE#1124]) +2 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-3/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: [SKIP][288] ([Intel XE#607] / [Intel XE#7361]) -> [SKIP][289] ([Intel XE#8441] / [Intel XE#8480])
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-bmg: [SKIP][290] ([Intel XE#1124]) -> [SKIP][291] ([Intel XE#8440] / [Intel XE#8480]) +1 other test skip
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-lnl: [INCOMPLETE][292] ([Intel XE#5643]) -> [TIMEOUT][293] ([Intel XE#8446])
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: [SKIP][294] ([Intel XE#1124]) -> [SKIP][295] ([Intel XE#8441] / [Intel XE#8480])
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-lnl: [INCOMPLETE][296] ([Intel XE#5643]) -> [SKIP][297] ([Intel XE#1124]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-target-1920x1080p:
- shard-bmg: [SKIP][298] ([Intel XE#8440]) -> [INCOMPLETE][299] ([Intel XE#8479]) +2 other tests incomplete
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-target-1920x1080p.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-8/igt@kms_bw@connected-linear-tiling-3-displays-target-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p:
- shard-bmg: [INCOMPLETE][300] ([Intel XE#8437]) -> [SKIP][301] ([Intel XE#7679])
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_bw@connected-linear-tiling-3-displays-target-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p:
- shard-lnl: [INCOMPLETE][302] ([Intel XE#8437]) -> [INCOMPLETE][303] ([Intel XE#8445] / [Intel XE#8479]) +14 other tests incomplete
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-2/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-6/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html
* igt@kms_bw@linear-tiling-1-displays-target-2560x1440p:
- shard-bmg: [INCOMPLETE][304] ([Intel XE#8437]) -> [INCOMPLETE][305] ([Intel XE#8479]) +6 other tests incomplete
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-2/igt@kms_bw@linear-tiling-1-displays-target-2560x1440p.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-target-2560x1440p.html
* igt@kms_bw@linear-tiling-1-displays-target-3840x2160p:
- shard-bmg: [SKIP][306] ([Intel XE#367]) -> [SKIP][307] ([Intel XE#8480])
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_bw@linear-tiling-1-displays-target-3840x2160p.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_bw@linear-tiling-1-displays-target-3840x2160p.html
* igt@kms_bw@linear-tiling-2-displays-target-2560x1440p:
- shard-bmg: [SKIP][308] ([Intel XE#367]) -> [SKIP][309] ([Intel XE#8440] / [Intel XE#8480])
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-3/igt@kms_bw@linear-tiling-2-displays-target-2560x1440p.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@kms_bw@linear-tiling-2-displays-target-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-target-2560x1440p:
- shard-bmg: [INCOMPLETE][310] ([Intel XE#8437]) -> [SKIP][311] ([Intel XE#8440] / [Intel XE#8480])
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-8/igt@kms_bw@linear-tiling-3-displays-target-2560x1440p.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@kms_bw@linear-tiling-3-displays-target-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-target-1920x1080p:
- shard-bmg: [SKIP][312] ([Intel XE#8440]) -> [SKIP][313] ([Intel XE#367])
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-target-1920x1080p.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_bw@linear-tiling-4-displays-target-1920x1080p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: [SKIP][314] ([Intel XE#8440]) -> [SKIP][315] ([Intel XE#2887]) +5 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
- shard-bmg: [SKIP][316] ([Intel XE#8441]) -> [SKIP][317] ([Intel XE#2887]) +1 other test skip
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-4/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
- shard-bmg: [SKIP][318] ([Intel XE#2887]) -> [SKIP][319] ([Intel XE#8440] / [Intel XE#8480]) +5 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-4/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][320] ([Intel XE#8150]) -> [INCOMPLETE][321] ([Intel XE#8150] / [Intel XE#8479])
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs:
- shard-lnl: [INCOMPLETE][322] ([Intel XE#8437]) -> [SKIP][323] ([Intel XE#2887])
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-bmg: [SKIP][324] ([Intel XE#8440]) -> [SKIP][325] ([Intel XE#3432]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs:
- shard-lnl: [SKIP][326] ([Intel XE#2887]) -> [INCOMPLETE][327] ([Intel XE#8479]) +2 other tests incomplete
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs:
- shard-bmg: [SKIP][328] ([Intel XE#2887]) -> [SKIP][329] ([Intel XE#8441] / [Intel XE#8480])
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-3/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: [INCOMPLETE][330] ([Intel XE#8150]) -> [SKIP][331] ([Intel XE#2887])
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_cdclk@plane-scaling:
- shard-bmg: [SKIP][332] ([Intel XE#8440]) -> [SKIP][333] ([Intel XE#2724] / [Intel XE#7449])
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_cdclk@plane-scaling.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-4/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-max:
- shard-bmg: [SKIP][334] ([Intel XE#8440]) -> [SKIP][335] ([Intel XE#2325] / [Intel XE#7358])
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@kms_chamelium_color@ctm-max.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_color@ctm-negative:
- shard-bmg: [SKIP][336] ([Intel XE#2325] / [Intel XE#7358]) -> [SKIP][337] ([Intel XE#8440] / [Intel XE#8480]) +1 other test skip
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-7/igt@kms_chamelium_color@ctm-negative.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4:
- shard-bmg: [SKIP][338] ([Intel XE#8480]) -> [SKIP][339] ([Intel XE#7358])
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-9/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate:
- shard-bmg: [SKIP][340] ([Intel XE#8440]) -> [SKIP][341] ([Intel XE#2252]) +1 other test skip
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-8/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-bmg: [SKIP][342] ([Intel XE#8480]) -> [SKIP][343] ([Intel XE#2252])
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-3/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-bmg: [SKIP][344] ([Intel XE#8440]) -> [SKIP][345] ([Intel XE#6974])
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-bmg: [SKIP][346] ([Intel XE#8440]) -> [SKIP][347] ([Intel XE#2390] / [Intel XE#6974])
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@kms_content_protection@dp-mst-type-0.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-0-hdcp14:
- shard-bmg: [SKIP][348] ([Intel XE#8440]) -> [FAIL][349] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@kms_content_protection@lic-type-0-hdcp14.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_content_protection@lic-type-0-hdcp14.html
* igt@kms_content_protection@uevent:
- shard-bmg: [SKIP][350] ([Intel XE#8480]) -> [FAIL][351] ([Intel XE#6707] / [Intel XE#7439])
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@kms_content_protection@uevent.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-8/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-64x21:
- shard-bmg: [SKIP][352] ([Intel XE#2320]) -> [SKIP][353] ([Intel XE#8440] / [Intel XE#8480])
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-64x21.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-64x21.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-bmg: [SKIP][354] ([Intel XE#8440]) -> [SKIP][355] ([Intel XE#2320]) +2 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-max-size.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-bmg: [SKIP][356] ([Intel XE#8480]) -> [SKIP][357] ([Intel XE#2321] / [Intel XE#7355])
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@kms_cursor_crc@cursor-random-512x170.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [INCOMPLETE][358] ([Intel XE#8151]) -> [INCOMPLETE][359] ([Intel XE#8151] / [Intel XE#8479])
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [TIMEOUT][360] ([Intel XE#8451]) -> [INCOMPLETE][361] ([Intel XE#8151] / [Intel XE#8479])
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-9/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: [INCOMPLETE][362] ([Intel XE#8151]) -> [SKIP][363] ([Intel XE#2286] / [Intel XE#6035])
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: [TIMEOUT][364] ([Intel XE#8451]) -> [INCOMPLETE][365] ([Intel XE#8151])
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-9/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-bmg: [SKIP][366] ([Intel XE#4331] / [Intel XE#7227]) -> [SKIP][367] ([Intel XE#8441] / [Intel XE#8480])
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@kms_dp_linktrain_fallback@dsc-fallback.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-with-bpc-formats-bigjoiner:
- shard-bmg: [SKIP][368] ([Intel XE#8265]) -> [SKIP][369] ([Intel XE#8440] / [Intel XE#8480])
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-2/igt@kms_dsc@dsc-with-bpc-formats-bigjoiner.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@kms_dsc@dsc-with-bpc-formats-bigjoiner.html
* igt@kms_dsc@dsc-with-formats-bigjoiner:
- shard-bmg: [SKIP][370] ([Intel XE#8440]) -> [SKIP][371] ([Intel XE#8265])
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@kms_dsc@dsc-with-formats-bigjoiner.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@kms_dsc@dsc-with-formats-bigjoiner.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner:
- shard-lnl: [INCOMPLETE][372] ([Intel XE#8437]) -> [INCOMPLETE][373] ([Intel XE#8456] / [Intel XE#8479])
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-3/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-8/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-bmg: [SKIP][374] ([Intel XE#4422] / [Intel XE#7442]) -> [SKIP][375] ([Intel XE#8480])
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-7/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-lnl: [INCOMPLETE][376] ([Intel XE#2597]) -> [INCOMPLETE][377] ([Intel XE#2597] / [Intel XE#8479] / [Intel XE#8488])
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-2/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-lnl: [INCOMPLETE][378] ([Intel XE#8437]) -> [INCOMPLETE][379] ([Intel XE#8479] / [Intel XE#8488]) +6 other tests incomplete
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-3/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-lnl: [SKIP][380] ([Intel XE#1421]) -> [INCOMPLETE][381] ([Intel XE#8479] / [Intel XE#8488])
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-7/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-lnl: [FAIL][382] ([Intel XE#301]) -> [FAIL][383] ([Intel XE#301] / [Intel XE#3149])
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-bmg: [INCOMPLETE][384] ([Intel XE#8155]) -> [CRASH][385] ([Intel XE#8461])
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-8/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: [SKIP][386] ([Intel XE#7178] / [Intel XE#7349]) -> [INCOMPLETE][387] ([Intel XE#8479])
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
- shard-lnl: [INCOMPLETE][388] ([Intel XE#8437]) -> [SKIP][389] ([Intel XE#1397] / [Intel XE#1745] / [Intel XE#7385])
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
- shard-lnl: [INCOMPLETE][390] ([Intel XE#8437]) -> [SKIP][391] ([Intel XE#1397] / [Intel XE#7385])
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-bmg: [SKIP][392] ([Intel XE#7178] / [Intel XE#7351]) -> [INCOMPLETE][393] ([Intel XE#8437] / [Intel XE#8479])
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-bmg: [INCOMPLETE][394] ([Intel XE#8437]) -> [TIMEOUT][395] ([Intel XE#8467] / [Intel XE#8479])
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: [SKIP][396] ([Intel XE#8440]) -> [SKIP][397] ([Intel XE#7178] / [Intel XE#7349])
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-bmg: [SKIP][398] ([Intel XE#8440]) -> [TIMEOUT][399] ([Intel XE#8467] / [Intel XE#8479])
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-bmg: [INCOMPLETE][400] ([Intel XE#8437]) -> [SKIP][401] ([Intel XE#7178] / [Intel XE#7351])
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-bmg: [SKIP][402] ([Intel XE#8441]) -> [SKIP][403] ([Intel XE#7178] / [Intel XE#7351])
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc:
- shard-bmg: [SKIP][404] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][405] ([Intel XE#8440] / [Intel XE#8480])
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][406] ([Intel XE#2311]) -> [SKIP][407] ([Intel XE#8441] / [Intel XE#8480]) +5 other tests skip
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-8/igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-cur-indfb-onoff.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][408] ([Intel XE#8441]) -> [INCOMPLETE][409] ([Intel XE#8368] / [Intel XE#8479])
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-pri-shrfb-draw-render.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-3/igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][410] ([Intel XE#2311]) -> [SKIP][411] ([Intel XE#8440] / [Intel XE#8480]) +9 other tests skip
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-7/igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-spr-indfb-draw-blt.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@kms_frontbuffer_tracking@drrshdr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrshdr-argb161616f-draw-blt:
- shard-bmg: [SKIP][412] ([Intel XE#8440]) -> [SKIP][413] ([Intel XE#7061]) +3 other tests skip
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_frontbuffer_tracking@drrshdr-argb161616f-draw-blt.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@kms_frontbuffer_tracking@drrshdr-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@drrshdr-modesetfrombusy:
- shard-bmg: [SKIP][414] ([Intel XE#8441]) -> [SKIP][415] ([Intel XE#2311]) +6 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@kms_frontbuffer_tracking@drrshdr-modesetfrombusy.html
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_frontbuffer_tracking@drrshdr-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][416] ([Intel XE#8440]) -> [SKIP][417] ([Intel XE#4141]) +4 other tests skip
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][418] ([Intel XE#4141]) -> [SKIP][419] ([Intel XE#8441] / [Intel XE#8480]) +1 other test skip
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: [SKIP][420] ([Intel XE#4141]) -> [SKIP][421] ([Intel XE#8440] / [Intel XE#8480]) +3 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][422] ([Intel XE#8440]) -> [SKIP][423] ([Intel XE#2311]) +23 other tests skip
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-shrfb-plflip-blt.html
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][424] ([Intel XE#8440]) -> [INCOMPLETE][425] ([Intel XE#8368] / [Intel XE#8479])
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-spr-indfb-draw-render.html
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-blt:
- shard-bmg: [SKIP][426] ([Intel XE#7061]) -> [SKIP][427] ([Intel XE#8440] / [Intel XE#8480]) +1 other test skip
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-blt.html
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrshdr-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-bmg: [TIMEOUT][428] ([Intel XE#8466]) -> [INCOMPLETE][429] ([Intel XE#8368] / [Intel XE#8479])
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-7/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-3/igt@kms_frontbuffer_tracking@fbchdr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [TIMEOUT][430] ([Intel XE#8466]) -> [TIMEOUT][431] ([Intel XE#8466] / [Intel XE#8479])
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-mmap-wc.html
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][432] ([Intel XE#8441]) -> [TIMEOUT][433] ([Intel XE#8479])
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-render.html
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-4/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][434] ([Intel XE#2313]) -> [SKIP][435] ([Intel XE#8440] / [Intel XE#8480]) +13 other tests skip
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][436] ([Intel XE#2313]) -> [INCOMPLETE][437] ([Intel XE#8368] / [Intel XE#8479])
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt:
- shard-bmg: [TIMEOUT][438] ([Intel XE#8466]) -> [SKIP][439] ([Intel XE#8440] / [Intel XE#8480])
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt.html
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-indfb-draw-blt:
- shard-bmg: [SKIP][440] ([Intel XE#8440]) -> [SKIP][441] ([Intel XE#8441] / [Intel XE#8480]) +1 other test skip
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-indfb-draw-blt.html
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][442] ([Intel XE#2313]) -> [SKIP][443] ([Intel XE#8441] / [Intel XE#8480]) +3 other tests skip
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][444] ([Intel XE#8441]) -> [SKIP][445] ([Intel XE#2313]) +7 other tests skip
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render:
- shard-bmg: [SKIP][446] ([Intel XE#8440]) -> [SKIP][447] ([Intel XE#7061] / [Intel XE#7356])
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render.html
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][448] ([Intel XE#8440]) -> [SKIP][449] ([Intel XE#2313]) +18 other tests skip
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-render.html
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-bmg: [SKIP][450] ([Intel XE#8440]) -> [SKIP][451] ([Intel XE#6911] / [Intel XE#7378])
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@kms_joiner@basic-ultra-joiner.html
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-bmg: [SKIP][452] ([Intel XE#8440]) -> [SKIP][453] ([Intel XE#7591])
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping:
- shard-bmg: [SKIP][454] ([Intel XE#8480]) -> [INCOMPLETE][455] ([Intel XE#1035] / [Intel XE#8479])
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping:
- shard-bmg: [SKIP][456] ([Intel XE#8440]) -> [INCOMPLETE][457] ([Intel XE#1035] / [Intel XE#8479])
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping:
- shard-bmg: [CRASH][458] ([Intel XE#8460]) -> [SKIP][459] ([Intel XE#8480])
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html
* igt@kms_plane@pixel-format-linear-modifier-source-clamping:
- shard-bmg: [INCOMPLETE][460] ([Intel XE#1035]) -> [TIMEOUT][461] ([Intel XE#8479])
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-7/igt@kms_plane@pixel-format-linear-modifier-source-clamping.html
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@kms_plane@pixel-format-linear-modifier-source-clamping.html
* igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping:
- shard-lnl: [INCOMPLETE][462] ([Intel XE#1035]) -> [INCOMPLETE][463] ([Intel XE#1035] / [Intel XE#8479]) +21 other tests incomplete
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-7/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping.html
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-8/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
- shard-bmg: [INCOMPLETE][464] ([Intel XE#1035]) -> [INCOMPLETE][465] ([Intel XE#1035] / [Intel XE#8479]) +2 other tests incomplete
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
- shard-bmg: [SKIP][466] ([Intel XE#8480]) -> [SKIP][467] ([Intel XE#7283])
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-3/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: [SKIP][468] ([Intel XE#5020] / [Intel XE#7348]) -> [SKIP][469] ([Intel XE#8480])
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-7/igt@kms_plane_multiple@tiling-yf.html
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation:
- shard-bmg: [INCOMPLETE][470] ([Intel XE#8437]) -> [INCOMPLETE][471] ([Intel XE#8459] / [Intel XE#8479])
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers:
- shard-bmg: [SKIP][472] ([Intel XE#8440]) -> [INCOMPLETE][473] ([Intel XE#8459] / [Intel XE#8479])
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-3/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-bmg: [SKIP][474] ([Intel XE#1489]) -> [SKIP][475] ([Intel XE#8440] / [Intel XE#8480]) +1 other test skip
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-lnl: [SKIP][476] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) -> [INCOMPLETE][477] ([Intel XE#8479])
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1:
- shard-lnl: [SKIP][478] ([Intel XE#4608]) -> [INCOMPLETE][479] ([Intel XE#8479])
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-lnl: [INCOMPLETE][480] ([Intel XE#8437]) -> [SKIP][481] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304])
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1:
- shard-lnl: [INCOMPLETE][482] ([Intel XE#8437]) -> [SKIP][483] ([Intel XE#4608])
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-lnl: [SKIP][484] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) -> [CRASH][485] ([Intel XE#8455])
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1:
- shard-lnl: [SKIP][486] ([Intel XE#4608]) -> [CRASH][487] ([Intel XE#8455])
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1.html
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-lnl: [TIMEOUT][488] ([Intel XE#8473]) -> [INCOMPLETE][489] ([Intel XE#8479]) +1 other test incomplete
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-bmg: [SKIP][490] ([Intel XE#8441]) -> [SKIP][491] ([Intel XE#1489]) +1 other test skip
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-bmg: [SKIP][492] ([Intel XE#8440]) -> [SKIP][493] ([Intel XE#1489]) +2 other tests skip
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-bmg: [SKIP][494] ([Intel XE#8440]) -> [SKIP][495] ([Intel XE#2387] / [Intel XE#7429])
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_psr2_su@page_flip-nv12.html
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: [SKIP][496] ([Intel XE#2387] / [Intel XE#7429]) -> [SKIP][497] ([Intel XE#8440] / [Intel XE#8480])
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-8/igt@kms_psr2_su@page_flip-p010.html
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-primary-blt:
- shard-bmg: [SKIP][498] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][499] ([Intel XE#8441] / [Intel XE#8480])
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@kms_psr@fbc-psr-primary-blt.html
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@kms_psr@fbc-psr-primary-blt.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-bmg: [SKIP][500] ([Intel XE#8441]) -> [SKIP][501] ([Intel XE#2234] / [Intel XE#2850])
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@kms_psr@fbc-psr2-primary-render.html
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@pr-cursor-plane-move:
- shard-bmg: [SKIP][502] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][503] ([Intel XE#8440] / [Intel XE#8480]) +1 other test skip
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-3/igt@kms_psr@pr-cursor-plane-move.html
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_psr@pr-cursor-plane-move.html
* igt@kms_psr@psr-basic:
- shard-bmg: [SKIP][504] ([Intel XE#8440]) -> [SKIP][505] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_psr@psr-basic.html
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-3/igt@kms_psr@psr-basic.html
* igt@kms_sharpness_filter@filter-scaler-upscale:
- shard-bmg: [SKIP][506] ([Intel XE#6503]) -> [SKIP][507] ([Intel XE#8440] / [Intel XE#8480])
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-7/igt@kms_sharpness_filter@filter-scaler-upscale.html
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_sharpness_filter@filter-scaler-upscale.html
* igt@kms_sharpness_filter@filter-tap:
- shard-bmg: [SKIP][508] ([Intel XE#8440]) -> [SKIP][509] ([Intel XE#6503])
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@kms_sharpness_filter@filter-tap.html
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@kms_sharpness_filter@filter-tap.html
* igt@kms_sharpness_filter@invalid-filter-with-plane:
- shard-bmg: [SKIP][510] ([Intel XE#8480]) -> [SKIP][511] ([Intel XE#6503])
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@kms_sharpness_filter@invalid-filter-with-plane.html
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@kms_sharpness_filter@invalid-filter-with-plane.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode@pipe-a-edp-1-invalid-filter-with-scaling-mode-fulls:
- shard-lnl: [TIMEOUT][512] ([Intel XE#8468]) -> [TIMEOUT][513] ([Intel XE#8468] / [Intel XE#8479]) +1 other test timeout
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-6/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode@pipe-a-edp-1-invalid-filter-with-scaling-mode-fulls.html
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-5/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode@pipe-a-edp-1-invalid-filter-with-scaling-mode-fulls.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][514] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][515] ([Intel XE#2426] / [Intel XE#5848])
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_ccs@block-copy-uncompressed:
- shard-bmg: [SKIP][516] ([Intel XE#8441]) -> [INCOMPLETE][517] ([Intel XE#8437] / [Intel XE#8479])
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@xe_ccs@block-copy-uncompressed.html
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-9/igt@xe_ccs@block-copy-uncompressed.html
* igt@xe_ccs@block-copy-uncompressed-inc-dimension:
- shard-bmg: [INCOMPLETE][518] ([Intel XE#8437]) -> [INCOMPLETE][519] ([Intel XE#8437] / [Intel XE#8479]) +11 other tests incomplete
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@xe_ccs@block-copy-uncompressed-inc-dimension.html
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@xe_ccs@block-copy-uncompressed-inc-dimension.html
* igt@xe_eudebug_online@breakpoint-many-sessions-single-tile:
- shard-bmg: [SKIP][520] ([Intel XE#8441]) -> [SKIP][521] ([Intel XE#7636])
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@xe_eudebug_online@breakpoint-many-sessions-single-tile.html
* igt@xe_eudebug_online@single-step-one:
- shard-bmg: [SKIP][522] ([Intel XE#7636]) -> [SKIP][523] ([Intel XE#8440] / [Intel XE#8480]) +1 other test skip
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-3/igt@xe_eudebug_online@single-step-one.html
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@xe_eudebug_online@single-step-one.html
* igt@xe_eudebug_online@stopped-thread:
- shard-bmg: [SKIP][524] ([Intel XE#8440]) -> [SKIP][525] ([Intel XE#7636]) +3 other tests skip
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@xe_eudebug_online@stopped-thread.html
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@xe_eudebug_online@stopped-thread.html
* igt@xe_eudebug_sriov@deny-eudebug:
- shard-bmg: [SKIP][526] ([Intel XE#5793] / [Intel XE#7320] / [Intel XE#7464]) -> [SKIP][527] ([Intel XE#8440] / [Intel XE#8480])
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-3/igt@xe_eudebug_sriov@deny-eudebug.html
[527]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-8/igt@xe_eudebug_sriov@deny-eudebug.html
* igt@xe_evict@evict-small-external-multi-queue:
- shard-bmg: [SKIP][528] ([Intel XE#8441]) -> [SKIP][529] ([Intel XE#8370])
[528]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@xe_evict@evict-small-external-multi-queue.html
[529]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-3/igt@xe_evict@evict-small-external-multi-queue.html
* igt@xe_evict@evict-small-external-multi-queue-cm:
- shard-bmg: [SKIP][530] ([Intel XE#8440]) -> [SKIP][531] ([Intel XE#8370]) +1 other test skip
[530]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@xe_evict@evict-small-external-multi-queue-cm.html
[531]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@xe_evict@evict-small-external-multi-queue-cm.html
* igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind:
- shard-bmg: [SKIP][532] ([Intel XE#8440]) -> [SKIP][533] ([Intel XE#8440] / [Intel XE#8480]) +17 other tests skip
[532]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind.html
[533]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: [INCOMPLETE][534] ([Intel XE#8439]) -> [INCOMPLETE][535] ([Intel XE#8439] / [Intel XE#8479])
[534]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
[535]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
- shard-bmg: [SKIP][536] ([Intel XE#2322] / [Intel XE#7372]) -> [INCOMPLETE][537] ([Intel XE#8439] / [Intel XE#8479]) +2 other tests incomplete
[536]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html
[537]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race:
- shard-lnl: [INCOMPLETE][538] ([Intel XE#8439]) -> [INCOMPLETE][539] ([Intel XE#8439] / [Intel XE#8479]) +12 other tests incomplete
[538]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html
[539]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate:
- shard-bmg: [SKIP][540] ([Intel XE#8440]) -> [CRASH][541] ([Intel XE#8482])
[540]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html
[541]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race:
- shard-bmg: [INCOMPLETE][542] ([Intel XE#8439]) -> [SKIP][543] ([Intel XE#2322] / [Intel XE#7372])
[542]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html
[543]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-3/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: [SKIP][544] ([Intel XE#8440]) -> [SKIP][545] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[544]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@xe_exec_basic@multigpu-once-null-rebind.html
[545]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-prefetch:
- shard-bmg: [SKIP][546] ([Intel XE#8440]) -> [CRASH][547] ([Intel XE#8484])
[546]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-prefetch.html
[547]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-prefetch.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-prefetch:
- shard-bmg: [SKIP][548] ([Intel XE#8374]) -> [INCOMPLETE][549] ([Intel XE#8479]) +1 other test incomplete
[548]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-4/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-prefetch.html
[549]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-prefetch.html
* igt@xe_exec_fault_mode@many-multi-queue-prefetch:
- shard-bmg: [SKIP][550] ([Intel XE#8441]) -> [SKIP][551] ([Intel XE#8374])
[550]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@xe_exec_fault_mode@many-multi-queue-prefetch.html
[551]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@xe_exec_fault_mode@many-multi-queue-prefetch.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-imm:
- shard-bmg: [SKIP][552] ([Intel XE#8440]) -> [SKIP][553] ([Intel XE#8374]) +1 other test skip
[552]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-imm.html
[553]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-9/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-imm.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race:
- shard-bmg: [SKIP][554] ([Intel XE#8374]) -> [SKIP][555] ([Intel XE#8480])
[554]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-2/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race.html
[555]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind:
- shard-bmg: [SKIP][556] ([Intel XE#8374]) -> [SKIP][557] ([Intel XE#8440] / [Intel XE#8480])
[556]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind.html
[557]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@xe_exec_fault_mode@once-multi-queue-userptr-rebind.html
* igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-basic:
- shard-bmg: [SKIP][558] ([Intel XE#8441]) -> [SKIP][559] ([Intel XE#8364]) +1 other test skip
[558]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-basic.html
[559]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-basic.html
* igt@xe_exec_multi_queue@many-queues-priority-smem:
- shard-bmg: [SKIP][560] ([Intel XE#8364]) -> [SKIP][561] ([Intel XE#8440] / [Intel XE#8480]) +4 other tests skip
[560]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-2/igt@xe_exec_multi_queue@many-queues-priority-smem.html
[561]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@xe_exec_multi_queue@many-queues-priority-smem.html
* igt@xe_exec_multi_queue@one-queue-preempt-mode-priority-smem:
- shard-bmg: [SKIP][562] ([Intel XE#8364]) -> [SKIP][563] ([Intel XE#8480])
[562]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@xe_exec_multi_queue@one-queue-preempt-mode-priority-smem.html
[563]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@xe_exec_multi_queue@one-queue-preempt-mode-priority-smem.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem:
- shard-bmg: [SKIP][564] ([Intel XE#8440]) -> [SKIP][565] ([Intel XE#8364]) +11 other tests skip
[564]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem.html
[565]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem.html
* igt@xe_exec_reset@cm-multi-queue-gt-reset:
- shard-bmg: [SKIP][566] ([Intel XE#8369]) -> [SKIP][567] ([Intel XE#8440] / [Intel XE#8480])
[566]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-2/igt@xe_exec_reset@cm-multi-queue-gt-reset.html
[567]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@xe_exec_reset@cm-multi-queue-gt-reset.html
* igt@xe_exec_system_allocator@process-many-execqueues-free-race-nomemset:
- shard-bmg: [FAIL][568] -> [SKIP][569] ([Intel XE#8440] / [Intel XE#8480])
[568]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-4/igt@xe_exec_system_allocator@process-many-execqueues-free-race-nomemset.html
[569]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@xe_exec_system_allocator@process-many-execqueues-free-race-nomemset.html
* igt@xe_exec_system_allocator@process-many-large-execqueues-free-race-nomemset:
- shard-bmg: [INCOMPLETE][570] ([Intel XE#8159]) -> [INCOMPLETE][571] ([Intel XE#8159] / [Intel XE#8479]) +2 other tests incomplete
[570]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@xe_exec_system_allocator@process-many-large-execqueues-free-race-nomemset.html
[571]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-9/igt@xe_exec_system_allocator@process-many-large-execqueues-free-race-nomemset.html
* igt@xe_exec_system_allocator@process-many-large-execqueues-malloc-fork-read-after:
- shard-lnl: [INCOMPLETE][572] ([Intel XE#8437]) -> [INCOMPLETE][573] ([Intel XE#8437] / [Intel XE#8479]) +87 other tests incomplete
[572]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-7/igt@xe_exec_system_allocator@process-many-large-execqueues-malloc-fork-read-after.html
[573]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-3/igt@xe_exec_system_allocator@process-many-large-execqueues-malloc-fork-read-after.html
* igt@xe_exec_system_allocator@process-many-large-execqueues-malloc-multi-fault:
- shard-bmg: [SKIP][574] ([Intel XE#8440]) -> [SKIP][575] ([Intel XE#8480]) +5 other tests skip
[574]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@xe_exec_system_allocator@process-many-large-execqueues-malloc-multi-fault.html
[575]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@xe_exec_system_allocator@process-many-large-execqueues-malloc-multi-fault.html
* igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-file-nomemset:
- shard-bmg: [INCOMPLETE][576] ([Intel XE#8159]) -> [FAIL][577] ([Intel XE#8479]) +2 other tests fail
[576]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-9/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-file-nomemset.html
[577]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-file-nomemset.html
* igt@xe_exec_system_allocator@process-many-large-mmap-shared-remap-dontunmap-eocheck:
- shard-bmg: [SKIP][578] ([Intel XE#8441]) -> [FAIL][579] ([Intel XE#8479])
[578]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@xe_exec_system_allocator@process-many-large-mmap-shared-remap-dontunmap-eocheck.html
[579]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-8/igt@xe_exec_system_allocator@process-many-large-mmap-shared-remap-dontunmap-eocheck.html
* igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-free-huge:
- shard-bmg: [SKIP][580] ([Intel XE#8441]) -> [SKIP][581] ([Intel XE#8480]) +1 other test skip
[580]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-free-huge.html
[581]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-free-huge.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-malloc-busy-nomemset:
- shard-lnl: [INCOMPLETE][582] ([Intel XE#7928]) -> [INCOMPLETE][583] ([Intel XE#7928] / [Intel XE#8479]) +3 other tests incomplete
[582]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-malloc-busy-nomemset.html
[583]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-malloc-busy-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-file-mlock-nomemset:
- shard-bmg: [INCOMPLETE][584] ([Intel XE#8159]) -> [INCOMPLETE][585] ([Intel XE#8159] / [Intel XE#8437] / [Intel XE#8479])
[584]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-file-mlock-nomemset.html
[585]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-file-mlock-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-prefetch:
- shard-bmg: [SKIP][586] ([Intel XE#8441]) -> [SKIP][587] ([Intel XE#8440] / [Intel XE#8480]) +6 other tests skip
[586]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-prefetch.html
[587]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-prefetch.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-remap-dontunmap:
- shard-bmg: [SKIP][588] ([Intel XE#8440]) -> [INCOMPLETE][589] ([Intel XE#8159] / [Intel XE#8479])
[588]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-remap-dontunmap.html
[589]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-remap-dontunmap.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-free-madvise:
- shard-lnl: [TIMEOUT][590] ([Intel XE#8447]) -> [TIMEOUT][591] ([Intel XE#8447] / [Intel XE#8479]) +2 other tests timeout
[590]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-1/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-free-madvise.html
[591]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-free-madvise.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-remap-dontunmap-eocheck:
- shard-lnl: [INCOMPLETE][592] ([Intel XE#8437]) -> [INCOMPLETE][593] ([Intel XE#8479]) +293 other tests incomplete
[592]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-remap-dontunmap-eocheck.html
[593]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-remap-dontunmap-eocheck.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-malloc-race-nomemset:
- shard-bmg: [INCOMPLETE][594] ([Intel XE#8159]) -> [SKIP][595] ([Intel XE#8480])
[594]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-malloc-race-nomemset.html
[595]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-malloc-race-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-ro-eocheck:
- shard-bmg: [INCOMPLETE][596] ([Intel XE#8159]) -> [SKIP][597] ([Intel XE#8440] / [Intel XE#8480])
[596]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-ro-eocheck.html
[597]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-remap-ro-eocheck.html
* igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate-race:
- shard-lnl: [TIMEOUT][598] ([Intel XE#8470]) -> [TIMEOUT][599] ([Intel XE#8479])
[598]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-7/igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate-race.html
[599]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-2/igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate-race.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr:
- shard-bmg: [SKIP][600] ([Intel XE#8440]) -> [SKIP][601] ([Intel XE#8378]) +2 other tests skip
[600]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html
[601]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html
* igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate-race:
- shard-bmg: [INCOMPLETE][602] ([Intel XE#8366]) -> [INCOMPLETE][603] ([Intel XE#8366] / [Intel XE#8479])
[602]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate-race.html
[603]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate-race.html
* igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr:
- shard-bmg: [SKIP][604] ([Intel XE#8378]) -> [SKIP][605] ([Intel XE#8440] / [Intel XE#8480]) +1 other test skip
[604]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr.html
[605]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-mixed-fd-userptr.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind:
- shard-bmg: [INCOMPLETE][606] ([Intel XE#8366]) -> [SKIP][607] ([Intel XE#8378]) +2 other tests skip
[606]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html
[607]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html
* igt@xe_exec_threads@threads-multi-queue-rebind:
- shard-bmg: [SKIP][608] ([Intel XE#8441]) -> [SKIP][609] ([Intel XE#8378])
[608]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-rebind.html
[609]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-rebind.html
* igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-invalidate:
- shard-bmg: [SKIP][610] ([Intel XE#8378]) -> [INCOMPLETE][611] ([Intel XE#8366] / [Intel XE#8479])
[610]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-invalidate.html
[611]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr-invalidate.html
* igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode:
- shard-bmg: [SKIP][612] ([Intel XE#8440]) -> [CRASH][613] ([Intel XE#8448])
[612]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode.html
[613]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-9/igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
- shard-bmg: [INCOMPLETE][614] ([Intel XE#8437]) -> [INCOMPLETE][615] ([Intel XE#8479] / [Intel XE#8486])
[614]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
[615]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
- shard-bmg: [CRASH][616] ([Intel XE#8448]) -> [INCOMPLETE][617] ([Intel XE#8479] / [Intel XE#8486])
[616]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
[617]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
- shard-bmg: [INCOMPLETE][618] ([Intel XE#8437]) -> [CRASH][619] ([Intel XE#8448]) +2 other tests crash
[618]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
[619]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
* igt@xe_page_reclaim@invalid-1g:
- shard-bmg: [SKIP][620] ([Intel XE#7793]) -> [SKIP][621] ([Intel XE#8440] / [Intel XE#8480])
[620]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@xe_page_reclaim@invalid-1g.html
[621]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@xe_page_reclaim@invalid-1g.html
* igt@xe_page_reclaim@many-vma-same-bo:
- shard-bmg: [SKIP][622] ([Intel XE#7793]) -> [SKIP][623] ([Intel XE#8480])
[622]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-10/igt@xe_page_reclaim@many-vma-same-bo.html
[623]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@xe_page_reclaim@many-vma-same-bo.html
* igt@xe_pxp@pxp-stale-bo-bind-post-suspend:
- shard-bmg: [SKIP][624] ([Intel XE#8440]) -> [SKIP][625] ([Intel XE#4733] / [Intel XE#7417])
[624]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html
[625]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-7/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html
* igt@xe_query@multigpu-query-topology-l3-bank-mask:
- shard-bmg: [SKIP][626] ([Intel XE#8440]) -> [SKIP][627] ([Intel XE#944])
[626]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-5/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
[627]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-2/igt@xe_query@multigpu-query-topology-l3-bank-mask.html
* igt@xe_sriov_admin@preempt-timeout-write-readback-vfs-disabled:
- shard-bmg: [INCOMPLETE][628] ([Intel XE#8477]) -> [INCOMPLETE][629] ([Intel XE#8437] / [Intel XE#8477] / [Intel XE#8479])
[628]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-9/igt@xe_sriov_admin@preempt-timeout-write-readback-vfs-disabled.html
[629]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-5/igt@xe_sriov_admin@preempt-timeout-write-readback-vfs-disabled.html
* igt@xe_vm@mmap-style-bind-either-side-partial-large-page-hammer:
- shard-lnl: [TIMEOUT][630] ([Intel XE#8462]) -> [INCOMPLETE][631] ([Intel XE#8479])
[630]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-8/igt@xe_vm@mmap-style-bind-either-side-partial-large-page-hammer.html
[631]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-5/igt@xe_vm@mmap-style-bind-either-side-partial-large-page-hammer.html
* igt@xe_vm@munmap-style-unbind-either-side-partial-split-page-hammer:
- shard-bmg: [TIMEOUT][632] ([Intel XE#8462]) -> [INCOMPLETE][633] ([Intel XE#8479])
[632]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-bmg-9/igt@xe_vm@munmap-style-unbind-either-side-partial-split-page-hammer.html
[633]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-bmg-10/igt@xe_vm@munmap-style-unbind-either-side-partial-split-page-hammer.html
* igt@xe_vm@munmap-style-unbind-many-either-side-partial-hammer:
- shard-lnl: [TIMEOUT][634] ([Intel XE#8462]) -> [TIMEOUT][635] ([Intel XE#8462] / [Intel XE#8479]) +1 other test timeout
[634]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973/shard-lnl-8/igt@xe_vm@munmap-style-unbind-many-either-side-partial-hammer.html
[635]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/shard-lnl-8/igt@xe_vm@munmap-style-unbind-many-either-side-partial-hammer.html
[Intel XE#1035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1035
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[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#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[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#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[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#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[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#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[Intel XE#5177]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5177
[Intel XE#5643]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5643
[Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5857]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5857
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078
[Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126
[Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
[Intel XE#7265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7265
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7320
[Intel XE#7322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7322
[Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
[Intel XE#7334]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7334
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
[Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
[Intel XE#7382]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7382
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7385
[Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386
[Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389
[Intel XE#7397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7397
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7402
[Intel XE#7408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7408
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7447
[Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
[Intel XE#7464]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7464
[Intel XE#7467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7467
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795
[Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#7928]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7928
[Intel XE#7954]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7954
[Intel XE#7980]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7980
[Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150
[Intel XE#8151]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8151
[Intel XE#8155]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8155
[Intel XE#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159
[Intel XE#8174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8174
[Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265
[Intel XE#8303]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8303
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364
[Intel XE#8366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8366
[Intel XE#8368]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8368
[Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369
[Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370
[Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374
[Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378
[Intel XE#8437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8437
[Intel XE#8439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8439
[Intel XE#8440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8440
[Intel XE#8441]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8441
[Intel XE#8445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8445
[Intel XE#8446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8446
[Intel XE#8447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8447
[Intel XE#8448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8448
[Intel XE#8450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8450
[Intel XE#8451]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8451
[Intel XE#8455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8455
[Intel XE#8456]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8456
[Intel XE#8459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8459
[Intel XE#8460]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8460
[Intel XE#8461]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8461
[Intel XE#8462]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8462
[Intel XE#8464]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8464
[Intel XE#8466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8466
[Intel XE#8467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8467
[Intel XE#8468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8468
[Intel XE#8470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8470
[Intel XE#8473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8473
[Intel XE#8477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8477
[Intel XE#8479]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8479
[Intel XE#8480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8480
[Intel XE#8482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8482
[Intel XE#8484]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8484
[Intel XE#8486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8486
[Intel XE#8488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8488
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8985 -> IGT_8986
* Linux: xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973 -> xe-pw-159034v19
IGT_8985: d5fe8732b8547454c38fdd220b55f6f0cc841a3b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8986: 8986
xe-5299-adbc617250e16fb2db4a4c777b89440927cb8973: adbc617250e16fb2db4a4c777b89440927cb8973
xe-pw-159034v19: 159034v19
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-159034v19/index.html
[-- Attachment #2: Type: text/html, Size: 231234 bytes --]
^ permalink raw reply
* Re: [PATCH v2 2/3] drm/msm: Validate lazy VM is created in GEM_SUBMIT
From: sashiko-bot @ 2026-06-25 19:32 UTC (permalink / raw)
To: Rob Clark; +Cc: dri-devel
In-Reply-To: <20260625191537.47965-3-robin.clark@oss.qualcomm.com>
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
Pre-existing issues:
- [Critical] The MSM_PARAM_EN_VM_BIND ioctl validation compares an uninitialized context VM against the global VM, failing to prevent VM_BIND enablement on GPUs without per-process page tables.
--
commit 0fcb5ea6b90013aec15c2f186ee0bbf02e4e4818
Author: Rob Clark <robin.clark@oss.qualcomm.com>
drm/msm: Validate lazy VM is created in GEM_SUBMIT
Otherwise a GEM_SUBMIT ioctl before any BOs are mapped could cause a
NPE.
> diff --git a/drivers/gpu/drm/msm/msm_gem_submit.c b/drivers/gpu/drm/msm/msm_gem_submit.c
> index 3c6bc90c3d486..56929e8212008 100644
> --- a/drivers/gpu/drm/msm/msm_gem_submit.c
> +++ b/drivers/gpu/drm/msm/msm_gem_submit.c
[ ... ]
> @@ -572,7 +573,7 @@ int msm_ioctl_gem_submit(struct drm_device *dev, void *data,
> if (args->pad)
> return -EINVAL;
>
> - if (to_msm_vm(ctx->vm)->unusable)
> + if (vm && to_msm_vm(vm)->unusable)
> return UERR(EPIPE, dev, "context is unusable");
[Severity: Critical]
This is a pre-existing issue, but since we are fixing lazy VM access
here, is there a similar issue in adreno_set_param() when handling
MSM_PARAM_EN_VM_BIND?
Looking at drivers/gpu/drm/msm/adreno/adreno_gpu.c:
adreno_set_param()
{
...
case MSM_PARAM_EN_VM_BIND:
/* We can only support VM_BIND with per-process pgtables: */
if (ctx->vm == gpu->vm)
return UERR(EINVAL, drm, "requires per-process pgtables");
Because ctx->vm can be NULL prior to lazy initialization, this check
evaluates to false, allowing the restriction to be bypassed.
Could this allow an unprivileged user to enable userspace management
(VM_BIND) on older GPUs that fall back to the globally shared GPU VM,
and overwrite page tables shared by other processes?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260625191537.47965-1-robin.clark@oss.qualcomm.com?part=2
^ permalink raw reply
* Re: [PATCH v2] sunrpc: hardcode pool_mode to pernode, remove other modes
From: Chuck Lever @ 2026-06-25 19:32 UTC (permalink / raw)
To: Jeff Layton, Trond Myklebust, Anna Schumaker, NeilBrown,
Olga Kornievskaia, Dai Ngo, Tom Talpey
Cc: linux-nfs, linux-kernel
In-Reply-To: <20260625-sunrpc-pool-mode-v2-1-4f512b6e1ee8@kernel.org>
On Thu, Jun 25, 2026, at 11:59 AM, Jeff Layton wrote:
> The SVC_POOL_AUTO/GLOBAL/PERCPU/PERNODE pool mode selection machinery
> was added when NUMA was new and the right default was unclear. Today,
> pernode is the right choice everywhere:
> diff --git a/net/sunrpc/svc.c b/net/sunrpc/svc.c
> index dd80a2eaaa74..6e3d509bf95a 100644
> --- a/net/sunrpc/svc.c
> +++ b/net/sunrpc/svc.c
> @@ -38,19 +38,6 @@
>
> static void svc_unregister(const struct svc_serv *serv, struct net *net);
>
> -#define SVC_POOL_DEFAULT SVC_POOL_GLOBAL
> -
> -/*
> - * Mode for mapping cpus to pools.
> - */
> -enum {
> - SVC_POOL_AUTO = -1, /* choose one of the others */
> - SVC_POOL_GLOBAL, /* no mapping, just a single global pool
> - * (legacy & UP mode) */
> - SVC_POOL_PERCPU, /* one pool per cpu */
> - SVC_POOL_PERNODE /* one pool per numa node */
> -};
> -
> /*
> * Structure for mapping cpus to pools and vice versa.
> * Setup once during sunrpc initialisation.
The commit message should call out the change in the default setting.
> @@ -299,22 +166,11 @@ svc_pool_map_get(void)
> return m->npools;
> }
>
> - if (m->mode == SVC_POOL_AUTO)
> - m->mode = svc_pool_map_choose_mode();
> -
> - switch (m->mode) {
> - case SVC_POOL_PERCPU:
> - npools = svc_pool_map_init_percpu(m);
> - break;
> - case SVC_POOL_PERNODE:
> - npools = svc_pool_map_init_pernode(m);
> - break;
> - }
> -
> + npools = svc_pool_map_init_pernode(m);
With one pool per node now mandatory, can a server end up with pools
that have no threads? svc_set_num_threads() spreads nrservs evenly
across the pools:
net/sunrpc/svc.c:svc_set_num_threads() {
unsigned int base = nrservs / serv->sv_nrpools;
unsigned int remain = nrservs % serv->sv_nrpools;
...
}
so when nrservs is smaller than the number of NUMA nodes with CPUs,
base is 0 and the trailing pools get zero threads.
Work is still routed to the per-node pool selected from the running
CPU:
net/sunrpc/svc_xprt.c:svc_xprt_enqueue() {
pool = svc_pool_for_cpu(xprt->xpt_server);
...
lwq_enqueue(&xprt->xpt_ready, &pool->sp_xprts);
svc_pool_wake_idle_thread(pool);
}
and svc_pool_wake_idle_thread() only consults that one pool's idle
list, with no fallback to a sibling pool. If a connection lands on a
node whose pool has no threads, does its transport sit on sp_xprts and
never get serviced?
The old global default kept a single pool, so this configuration could
not arise without an explicit pernode/percpu selection. With global
mode removed, is there a way left for an admin to avoid empty pools on
a server that runs fewer threads than it has NUMA nodes, or should the
thread distribution or the enqueue path guarantee work only reaches a
populated pool?
Separately, the pool_mode knob is preserved but every accepted value
now behaves as pernode. Documentation/admin-guide/kernel-parameters.txt
still presents the four modes as distinct:
auto the server chooses an appropriate mode
automatically using heuristics
global a single global pool contains all CPUs
percpu one pool for each CPU
pernode one pool for each NUMA node (equivalent
to global on non-NUMA machines)
and states the option "will affect which CPUs will do NFS serving."
The patch should update this documentation.
--
Chuck Lever
^ permalink raw reply
* [PATCHBOMB v6] e2fsprogs: containerize ext4 for safer operation
From: Darrick J. Wong @ 2026-06-25 19:33 UTC (permalink / raw)
To: linux-ext4; +Cc: Theodore Ts'o, Neal Gompa
Hi everyone,
This is the sole remaining part of the gigantic patchset to enable
mounting ext4 filesystems as a systemd-contained fuse server instead of
in the kernel. The libfuse parts have now been merged upstream, which
means that fuse4fs can now run as a non-root user, with no privilege,
and no access to the network or hardware, etc. The only connection to
the outside is an ephemeral AF_UNIX socket. The mount helper program
the other end is a helper program that acquires resources and calls
fsmount().
Why would you want to do that? Most filesystem drivers are seriously
vulnerable to metadata parsing attacks, as syzbot has shown repeatedly
over almost a decade of its existence. Faulty code can lead to total
kernel compromise, and I think there's a very strong incentive to move
all that parsing out to userspace where we can containerize the fuse
server process. Runtime filesystem metadata parsing is no longer a
privileged (== risky) operation.
The consequences of a crashed driver is a dead mount, instead of a
crashed or corrupt OS kernel.
Note that contained fuse filesystem servers are no faster than regular
fuse. The containerization code only requires changes to libfuse and is
ready to go today.
e2fsprogs:
https://git.kernel.org/pub/scm/linux/kernel/git/djwong/e2fsprogs.git/log/?h=fuse4fs-service-container_2026-06-25
Note that I threw in a couple more patchsets to improve the caching
behavior of libext2fs for better performance; and the ability to watch
for memory pressure complaints from the kernel so that we can drop our
own cache in response to memory pressure.
e2fsprogs:
https://git.kernel.org/pub/scm/linux/kernel/git/djwong/e2fsprogs.git/log/?h=fuse4fs-memory-reclaim_2026-06-25
--Darrick
Unreviewed patches in this patchbomb:
[PATCHSET 1/4] libext2fs: fix some missed fsync calls
[PATCH 1/3] libext2fs: always fsync the device when flushing the
[PATCH 2/3] libext2fs: always fsync the device when closing the unix
[PATCH 3/3] libext2fs: only fsync the unix fd if we wrote to the
[PATCHSET v6 2/4] fuse4fs: run servers as a contained service
[PATCH 01/10] libext2fs: make it possible to extract the fd from an
[PATCH 02/10] libext2fs: fix checking for valid fds in mmp.c
[PATCH 03/10] unix_io: allow passing /dev/fd/XXX paths to the unixfd
[PATCH 04/10] libext2fs: fix MMP code to work with unixfd IO manager
[PATCH 05/10] libext2fs: bump libfuse API version to 3.19
[PATCH 06/10] fuse4fs: hoist some code out of fuse4fs_main
[PATCH 07/10] fuse4fs: enable safe service mode
[PATCH 08/10] fuse4fs: set proc title when in fuse service mode
[PATCH 09/10] fuse4fs: make MMP work correctly in safe service mode
[PATCH 10/10] debian: update packaging for fuse4fs service
[PATCHSET v6 3/4] fuse2fs: improve block and inode caching
[PATCH 1/6] libsupport: add caching IO manager
[PATCH 2/6] iocache: add the actual buffer cache
[PATCH 3/6] iocache: bump buffer mru priority every 50 accesses
[PATCH 4/6] fuse2fs: enable caching IO manager
[PATCH 5/6] fuse2fs: increase inode cache size
[PATCH 6/6] libext2fs: improve caching for inodes
[PATCHSET v6 4/4] fuse4fs: reclaim buffer cache under memory pressure
[PATCH 1/4] libsupport: add pressure stall monitor
[PATCH 2/4] fuse2fs: only reclaim buffer cache when there is memory
[PATCH 3/4] fuse4fs: enable memory pressure monitoring with service
[PATCH 4/4] fuse2fs: flush dirty metadata periodically
^ permalink raw reply
* [PATCH] tests/docker: bump emsdk-wasm64-cross zlib version to 1.3.2
From: Stefan Hajnoczi @ 2026-06-25 19:33 UTC (permalink / raw)
To: qemu-devel
Cc: Kohei Tokunaga, Alex Bennée, Pierrick Bouvier,
Stefan Hajnoczi, Brian Cain
Container image builds have started failing because zlib.net no longer
hosts the 1.3.1 tarball. Move to the 1.3.2 release from February 17,
2026.
$ make docker-image-emsdk-wasm64-cross
changing dir to build for make "docker-image-emsdk-wasm64-cross"...
make[1]: Entering directory 'qemu/build'
BUILD emsdk-wasm64-cross
...
xz: (stdin): File format not recognized
tar: Child returned status 1
tar: Error is not recoverable: exiting now
Error: building at STEP "RUN curl -Ls https://zlib.net/zlib-$ZLIB_VERSION.tar.xz | tar xJC /zlib --strip-components=1": while running runtime: exit status 2
make[1]: *** [qemu/tests/docker/Makefile.include:43: docker-image-emsdk-wasm64-cross] Error 2
make[1]: Leaving directory 'qemu/build'
make: *** [GNUmakefile:6: build] Error 2
Cc: Kohei Tokunaga <ktokunaga.mail@gmail.com>
Cc: Brian Cain <brian.cain@oss.qualcomm.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
---
tests/docker/dockerfiles/emsdk-wasm64-cross.docker | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/docker/dockerfiles/emsdk-wasm64-cross.docker b/tests/docker/dockerfiles/emsdk-wasm64-cross.docker
index 8a924816f92..cbe20c7193e 100644
--- a/tests/docker/dockerfiles/emsdk-wasm64-cross.docker
+++ b/tests/docker/dockerfiles/emsdk-wasm64-cross.docker
@@ -1,7 +1,7 @@
# syntax = docker/dockerfile:1.5
ARG EMSDK_VERSION_QEMU=4.0.10
-ARG ZLIB_VERSION=1.3.1
+ARG ZLIB_VERSION=1.3.2
ARG GLIB_MINOR_VERSION=2.84
ARG GLIB_VERSION=${GLIB_MINOR_VERSION}.0
ARG PIXMAN_VERSION=0.44.2
--
2.54.0
^ permalink raw reply related
* Re: [PATCH v2 1/2] KVM: arm64: Only consider S1PTW a write fault if HA is set
From: Oliver Upton @ 2026-06-25 19:34 UTC (permalink / raw)
To: Marc Zyngier; +Cc: sashiko-reviews, kvmarm
In-Reply-To: <86echur5g9.wl-maz@kernel.org>
On Thu, Jun 25, 2026 at 04:43:34PM +0100, Marc Zyngier wrote:
> On Wed, 24 Jun 2026 22:00:43 +0100,
> Oliver Upton <oupton@kernel.org> wrote:
> >
> > On Wed, Jun 24, 2026 at 08:40:24PM +0000, sashiko-bot@kernel.org wrote:
> > > > + /*
> > > > + * The architecture sucks; assume that the S1PTW fetched for write if
> > > > + * HA is enabled at stage-1. Note that hardware updates to dirty state
> > > > + * and table AF are predicated on HA=1 (DDI0487 M.a D24.2.194; R_SNVTX).
> > > > + */
> > > > + if (kvm_vcpu_abt_iss1tw(vcpu))
> > > > + return effective_tcr_ha(vcpu);
> > >
> > > [Severity: High]
> > > Does unconditionally treating S1PTW faults as writes when HA is enabled break
> > > guests that use pre-populated page tables in read-only memslots?
> > >
> > > If a guest populates its page tables with the Access Flag already set, places
> > > them in an RO memslot, and enables HA in its TCR, the hardware only needs read
> > > access during a walk.
>
> Correct, this is a consequence of R_HDTRB.
While not _directly_ related, this does seem at odds with the
implications of R_JCXVS.
I.e. when HD is set, the PTW can speculatively fetch the S2 translation for
write before knowing if the S1 descriptor is actually subject to an
update per R_HDTRB.
It obviously all still fits together (permission checks are later down
the line), just weird is all. Anyway...
> I've been chewing on that one for a bit, and came up with the
> following argument:
>
> - We're missing one of Read or Write because of L1's doing, and L1
> needs to do *something* about it. We don't need to find out about HA
> in the guest, we just need to forward the fault (and it is probably
> enough to check that we're in a nested context).
We still need to account for host-induced permission faults, e.g. dirty
tracking or an RO memslot getting mapped into the L2. So I think we
still need to evaluate R+W before forwarding to the L1.
Looking ahead to HAFDBS, for this to work we will need to use a liberal
interpretation of R_JCXVS at the time of the initial translation fault
and always walk with intent for write.
Basically, there seems to be a subtle difference arising between writes
as observed from the nested MMU and writes as observed at the virtual
endpoint (memslot). Funny how something as straightforward as the access
flag can be so headache inducing :)
> - We have checked that HA==1, derived from that that we need R+W, and
> we're missing the Write permission because the page is marked RO
> (assuming that KVM still maps with Read permission by default):
>
> - either it is "opportunistically" RO (dirty tracking, page never
> written to), and we flip it to RW, rince, repeat.
>
> - or it is hard-wired to RO at the memslot level, and the only
> possibility is that the PTW is trying to perform an atomic access
> (as per R_HDTRB), which we should be able to reject with an
> "Unsupported atomic hardware update fault".
>
> Thoughts?
All aboard :) I've just been staring at dirty state crap for too long. I
really like the unsupported atomic fault over our current behavior of
injecting an SEA.
I'll fold all of this into v3.
Thanks,
Oliver
^ permalink raw reply
* Re: [PATCH 0/2] fs: support $ORIGIN in ELF interpreter paths
From: John Ericson @ 2026-06-25 19:34 UTC (permalink / raw)
To: Christian Brauner
Cc: Farid Zakaria, Jan Kara, Kees Cook, Al Viro, shuah, linux-fsdevel,
linux-mm, linux-kselftest, LKML
In-Reply-To: <20260625-atomkraftgegner-hunger-kursbuch-b452ff2becab@brauner>
On Thu, Jun 25, 2026, at 4:50 AM, Christian Brauner wrote:
> Also, we change long-standing kernel behavior which will be very
> surprising for any userspace that might implicitly rely on the fact
> that the system loader is used. So even if we were to do something
> like this it would very likely have to be configurable in some way.
Yes that's definitely something that worried me.
> So I'm not enthusiastic about this. I want this to be consistent.
For what it's worth, I somewhat wish the `PT_INTERP` field didn't exist
at all. IMO the ELF spec is very weird for some parts of the same
headers being for the kernel, and the other parts being for userspace.
If there were separate data structures (think encapsulated packets) so
it was crystal clear who was responsible for what, we wouldn't be in
this situation.
While I earlier complained that our
<https://github.com/Mic92/wrap-buddy> work-around was likely to make
some security analyses/policies go haywire, arguably it implements this
behavior: from the kernel's perspective, everything is statically
linked, and the program, entirely in userspace, takes responsibility for
whatever loading it needs.
Put that way, this is less of an ugly work-around than the way I wish
things worked period in a world without `PT_INTERP`. Dynamic linking
would be entirely a userspace concern and the kernel would not know or
care.
----
What about shebangs? It's the same problem, with the same solutions and
pitfalls. We can also make wrapper executables around them that do the
right thing, but turning mere scripts into statically linked binaries is
a bit heavier. I assume the answer is the same, but just want to double
check before we close this off.
Cheers,
John
^ permalink raw reply
* [PATCHSET 1/4] libext2fs: fix some missed fsync calls
From: Darrick J. Wong @ 2026-06-25 19:35 UTC (permalink / raw)
To: tytso; +Cc: linux-ext4
In-Reply-To: <20260625193302.GC6054@frogsfrogsfrogs>
Hi all,
Fix a few places (like device closing) where we really ought to tell the
block device to flush whatever's dirty to disk, even if we've failed to
flush all our cached buffers out to disk.
If you're going to start using this code, I strongly recommend pulling
from my git trees, which are linked below.
Comments and questions are, as always, welcome.
e2fsprogs git tree:
https://git.kernel.org/cgit/linux/kernel/git/djwong/e2fsprogs.git/log/?h=libext2fs-flushing-fixes
---
Commits in this patchset:
* libext2fs: always fsync the device when flushing the cache
* libext2fs: always fsync the device when closing the unix IO manager
* libext2fs: only fsync the unix fd if we wrote to the device
---
lib/ext2fs/unix_io.c | 83 ++++++++++++++++++++++++++++++++++++++++++--------
1 file changed, 69 insertions(+), 14 deletions(-)
^ permalink raw reply
* [PATCHSET v6 2/4] fuse4fs: run servers as a contained service
From: Darrick J. Wong @ 2026-06-25 19:35 UTC (permalink / raw)
To: tytso; +Cc: linux-ext4, linux-ext4
In-Reply-To: <20260625193302.GC6054@frogsfrogsfrogs>
Hi all,
This series packages the newly created fuse4fs server into a systemd
socket service. This service can be used by the "mount.service" helper
in libfuse to implement untrusted unprivileged mounts.
If you're going to start using this code, I strongly recommend pulling
from my git trees, which are linked below.
Comments and questions are, as always, welcome.
e2fsprogs git tree:
https://git.kernel.org/cgit/linux/kernel/git/djwong/e2fsprogs.git/log/?h=fuse4fs-service-container
---
Commits in this patchset:
* libext2fs: make it possible to extract the fd from an IO manager
* libext2fs: fix checking for valid fds in mmp.c
* unix_io: allow passing /dev/fd/XXX paths to the unixfd IO manager
* libext2fs: fix MMP code to work with unixfd IO manager
* libext2fs: bump libfuse API version to 3.19
* fuse4fs: hoist some code out of fuse4fs_main
* fuse4fs: enable safe service mode
* fuse4fs: set proc title when in fuse service mode
* fuse4fs: make MMP work correctly in safe service mode
* debian: update packaging for fuse4fs service
---
lib/ext2fs/ext2_io.h | 4
lib/ext2fs/ext2fs.h | 1
lib/ext2fs/ext2fsP.h | 4
MCONFIG.in | 2
configure | 303 ++++++++++++++++++++++++++-
configure.ac | 131 +++++++++++
debian/e2fsprogs.install | 7 +
debian/fuse4fs.install | 3
debian/libext2fs2t64.symbols | 1
debian/rules | 3
fuse4fs/Makefile.in | 42 +++-
fuse4fs/fuse4fs.c | 479 ++++++++++++++++++++++++++++++++++++------
fuse4fs/fuse4fs.socket.in | 17 +
fuse4fs/fuse4fs@.service.in | 102 +++++++++
lib/config.h.in | 12 +
lib/ext2fs/io_manager.c | 8 +
lib/ext2fs/mmp.c | 101 +++++++++
lib/ext2fs/openfs.c | 1
lib/ext2fs/unix_io.c | 50 ++++
util/subst.conf.in | 3
20 files changed, 1177 insertions(+), 97 deletions(-)
mode change 100644 => 100755 debian/fuse4fs.install
create mode 100644 fuse4fs/fuse4fs.socket.in
create mode 100644 fuse4fs/fuse4fs@.service.in
^ permalink raw reply
* [PATCHSET v6 3/4] fuse2fs: improve block and inode caching
From: Darrick J. Wong @ 2026-06-25 19:35 UTC (permalink / raw)
To: tytso; +Cc: linux-ext4
In-Reply-To: <20260625193302.GC6054@frogsfrogsfrogs>
Hi all,
This series ports the libext2fs inode cache to the new cache.c hashtable
code that was added for fuse4fs unlinked file support and improves on
the UNIX I/O manager's block cache by adding a new I/O manager that does
its own caching. Now we no longer have statically sized buffer caching
for the two fuse servers.
If you're going to start using this code, I strongly recommend pulling
from my git trees, which are linked below.
Comments and questions are, as always, welcome.
e2fsprogs git tree:
https://git.kernel.org/cgit/linux/kernel/git/djwong/e2fsprogs.git/log/?h=fuse2fs-caching
---
Commits in this patchset:
* libsupport: add caching IO manager
* iocache: add the actual buffer cache
* iocache: bump buffer mru priority every 50 accesses
* fuse2fs: enable caching IO manager
* fuse2fs: increase inode cache size
* libext2fs: improve caching for inodes
---
lib/ext2fs/ext2fsP.h | 13 +
lib/support/cache.h | 1
lib/support/iocache.h | 17 +
debugfs/Makefile.in | 8
e2fsck/Makefile.in | 12 -
fuse4fs/Makefile.in | 10 -
fuse4fs/fuse4fs.c | 15 +
lib/ext2fs/Makefile.in | 69 ++--
lib/ext2fs/inline_data.c | 4
lib/ext2fs/inode.c | 215 ++++++++++---
lib/ext2fs/io_manager.c | 3
lib/support/Makefile.in | 6
lib/support/cache.c | 16 +
lib/support/iocache.c | 751 ++++++++++++++++++++++++++++++++++++++++++++++
misc/Makefile.in | 11 -
misc/fuse2fs.c | 11 +
resize/Makefile.in | 11 -
tests/fuzz/Makefile.in | 4
tests/progs/Makefile.in | 4
19 files changed, 1057 insertions(+), 124 deletions(-)
create mode 100644 lib/support/iocache.h
create mode 100644 lib/support/iocache.c
^ permalink raw reply
* [PATCHSET v6 4/4] fuse4fs: reclaim buffer cache under memory pressure
From: Darrick J. Wong @ 2026-06-25 19:35 UTC (permalink / raw)
To: tytso; +Cc: linux-ext4
In-Reply-To: <20260625193302.GC6054@frogsfrogsfrogs>
Hi all,
Having a static buffer cache limit of 32MB is very conservative. When
there's plenty of free memory, evicting metadata from the cache isn't
actually a good idea, so we'd like to let it grow to handle large
working sets. However, we also don't want to OOM the kernel or (in the
future) the fuse4fs container cgroup, so we need to listen for memory
reclamation events in the kernel.
The solution to this is to open the kernel memory pressure stall
indicator files, configure an event when too much time is spent waiting
for reclamation, and to trim the buffer cache when the events happen.
If you're going to start using this code, I strongly recommend pulling
from my git trees, which are linked below.
Comments and questions are, as always, welcome.
e2fsprogs git tree:
https://git.kernel.org/cgit/linux/kernel/git/djwong/e2fsprogs.git/log/?h=fuse4fs-memory-reclaim
---
Commits in this patchset:
* libsupport: add pressure stall monitor
* fuse2fs: only reclaim buffer cache when there is memory pressure
* fuse4fs: enable memory pressure monitoring with service containers
* fuse2fs: flush dirty metadata periodically
---
lib/support/list.h | 6 +
lib/support/psi.h | 66 ++++++
fuse4fs/Makefile.in | 3
fuse4fs/fuse4fs.c | 258 +++++++++++++++++++++-
lib/support/Makefile.in | 4
lib/support/iocache.c | 19 ++
lib/support/psi.c | 557 +++++++++++++++++++++++++++++++++++++++++++++++
misc/Makefile.in | 3
misc/fuse2fs.c | 189 +++++++++++++++-
9 files changed, 1091 insertions(+), 14 deletions(-)
create mode 100644 lib/support/psi.h
create mode 100644 lib/support/psi.c
^ permalink raw reply
* [PATCH 1/3] libext2fs: always fsync the device when flushing the cache
From: Darrick J. Wong @ 2026-06-25 19:36 UTC (permalink / raw)
To: tytso; +Cc: linux-ext4
In-Reply-To: <178241606573.1810243.8333361812351601871.stgit@frogsfrogsfrogs>
From: Darrick J. Wong <djwong@kernel.org>
When we're flushing the unix IO manager's buffer cache, we should always
fsync the block device, because something could have written to the
block device -- either the buffer cache itself, or a direct write.
Regardless, the callers all want all dirtied regions to be persisted to
stable media.
Signed-off-by: "Darrick J. Wong" <djwong@kernel.org>
---
lib/ext2fs/unix_io.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lib/ext2fs/unix_io.c b/lib/ext2fs/unix_io.c
index abd33ba839f7e9..b6feebef93fa5b 100644
--- a/lib/ext2fs/unix_io.c
+++ b/lib/ext2fs/unix_io.c
@@ -1531,7 +1531,8 @@ static errcode_t unix_flush(io_channel channel)
retval = flush_cached_blocks(channel, data, 0);
#endif
#ifdef HAVE_FSYNC
- if (!retval && fsync(data->dev) != 0)
+ /* always fsync the device, even if flushing our own cache failed */
+ if (fsync(data->dev) != 0 && !retval)
return errno;
#endif
return retval;
^ permalink raw reply related
* [PATCH 2/3] libext2fs: always fsync the device when closing the unix IO manager
From: Darrick J. Wong @ 2026-06-25 19:36 UTC (permalink / raw)
To: tytso; +Cc: linux-ext4
In-Reply-To: <178241606573.1810243.8333361812351601871.stgit@frogsfrogsfrogs>
From: Darrick J. Wong <djwong@kernel.org>
unix_close is the last chance that libext2fs has to report write
failures to users. Although it's likely that ext2fs_close already
called ext2fs_flush and told the IO manager to flush, we could do one
more sync before we close the file descriptor. Also don't override the
fsync's errno with the close's errno.
Signed-off-by: "Darrick J. Wong" <djwong@kernel.org>
---
lib/ext2fs/unix_io.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/lib/ext2fs/unix_io.c b/lib/ext2fs/unix_io.c
index b6feebef93fa5b..15d6d55ff7fdd4 100644
--- a/lib/ext2fs/unix_io.c
+++ b/lib/ext2fs/unix_io.c
@@ -1213,10 +1213,16 @@ static errcode_t unix_close(io_channel channel)
#ifndef NO_IO_CACHE
retval = flush_cached_blocks(channel, data, 0);
#endif
+#ifdef HAVE_FSYNC
+ /* always fsync the device, even if flushing our own cache failed */
+ if (fsync(data->dev) != 0 && !retval)
+ retval = errno;
+#endif
unix_funlock(channel);
- if (channel->manager != unixfd_io_manager && close(data->dev) < 0)
+ if (channel->manager != unixfd_io_manager && close(data->dev) < 0 &&
+ !retval)
retval = errno;
free_cache(data);
free(data->cache);
^ permalink raw reply related
* [PATCH 3/3] libext2fs: only fsync the unix fd if we wrote to the device
From: Darrick J. Wong @ 2026-06-25 19:36 UTC (permalink / raw)
To: tytso; +Cc: linux-ext4
In-Reply-To: <178241606573.1810243.8333361812351601871.stgit@frogsfrogsfrogs>
From: Darrick J. Wong <djwong@kernel.org>
As an optimization, only fsync the block device fd if we tried to write
to the io channel.
Signed-off-by: "Darrick J. Wong" <djwong@kernel.org>
---
lib/ext2fs/unix_io.c | 86 +++++++++++++++++++++++++++++++++++++++-----------
1 file changed, 67 insertions(+), 19 deletions(-)
diff --git a/lib/ext2fs/unix_io.c b/lib/ext2fs/unix_io.c
index 15d6d55ff7fdd4..f4307db0fb2b05 100644
--- a/lib/ext2fs/unix_io.c
+++ b/lib/ext2fs/unix_io.c
@@ -132,10 +132,13 @@ struct unix_cache {
#define WRITE_DIRECT_SIZE 4 /* Must be smaller than CACHE_SIZE */
#define READ_DIRECT_SIZE 4 /* Should be smaller than CACHE_SIZE */
+#define UNIX_STATE_DIRTY (1U << 0) /* device needs fsyncing */
+
struct unix_private_data {
int magic;
int dev;
int flags;
+ unsigned int state; /* UNIX_STATE_* */
int align;
int access_time;
int unix_flock_flags;
@@ -1198,10 +1201,65 @@ static errcode_t unix_open(const char *name, int flags,
return unix_open_channel(name, fd, flags, channel, unix_io_manager);
}
+#ifdef HAVE_FSYNC
+static void mark_dirty(io_channel channel)
+{
+ struct unix_private_data *data =
+ (struct unix_private_data *) channel->private_data;
+
+ mutex_lock(data, CACHE_MTX);
+ data->state |= UNIX_STATE_DIRTY;
+ mutex_unlock(data, CACHE_MTX);
+}
+
+static errcode_t maybe_fsync(io_channel channel, int force_fsync)
+{
+ struct unix_private_data *data =
+ (struct unix_private_data *) channel->private_data;
+ int need_fsync;
+ errcode_t retval = 0;
+
+#ifndef NO_IO_CACHE
+ retval = flush_cached_blocks(channel, data, 0);
+#endif
+
+ mutex_lock(data, CACHE_MTX);
+ need_fsync = force_fsync || (data->state & UNIX_STATE_DIRTY);
+ data->state &= ~UNIX_STATE_DIRTY;
+ mutex_unlock(data, CACHE_MTX);
+
+ if (need_fsync && fsync(data->dev) != 0) {
+ if (!retval)
+ retval = errno;
+ }
+ if (retval) {
+ /* redirty because writeback failed */
+ mark_dirty(channel);
+ return retval;
+ }
+
+ return 0;
+}
+#else
+# define mark_dirty(...) ((void)0)
+
+static errcode_t maybe_fsync(io_channel channel, int force_fsync)
+{
+ struct unix_private_data *data =
+ (struct unix_private_data *) channel->private_data;
+ errcode_t retval = 0;
+
+#ifndef NO_IO_CACHE
+ retval = flush_cached_blocks(channel, data, 0);
+#endif
+ return retval;
+}
+#endif
+
static errcode_t unix_close(io_channel channel)
{
struct unix_private_data *data;
- errcode_t retval = 0;
+ errcode_t retval;
EXT2_CHECK_MAGIC(channel, EXT2_ET_MAGIC_IO_CHANNEL);
data = (struct unix_private_data *) channel->private_data;
@@ -1210,14 +1268,7 @@ static errcode_t unix_close(io_channel channel)
if (--channel->refcount > 0)
return 0;
-#ifndef NO_IO_CACHE
- retval = flush_cached_blocks(channel, data, 0);
-#endif
-#ifdef HAVE_FSYNC
- /* always fsync the device, even if flushing our own cache failed */
- if (fsync(data->dev) != 0 && !retval)
- retval = errno;
-#endif
+ retval = maybe_fsync(channel, 1);
unix_funlock(channel);
@@ -1388,6 +1439,8 @@ static errcode_t unix_write_blk64(io_channel channel, unsigned long long block,
data = (struct unix_private_data *) channel->private_data;
EXT2_CHECK_MAGIC(data, EXT2_ET_MAGIC_UNIX_IO_CHANNEL);
+ mark_dirty(channel);
+
#ifdef NO_IO_CACHE
return raw_write_blk(channel, data, block, count, buf, 0);
#else
@@ -1512,6 +1565,8 @@ static errcode_t unix_write_byte(io_channel channel, unsigned long offset,
if (lseek(data->dev, offset + data->offset, SEEK_SET) < 0)
return errno;
+ mark_dirty(channel);
+
actual = write(data->dev, buf, size);
if (actual < 0)
return errno;
@@ -1527,21 +1582,12 @@ static errcode_t unix_write_byte(io_channel channel, unsigned long offset,
static errcode_t unix_flush(io_channel channel)
{
struct unix_private_data *data;
- errcode_t retval = 0;
EXT2_CHECK_MAGIC(channel, EXT2_ET_MAGIC_IO_CHANNEL);
data = (struct unix_private_data *) channel->private_data;
EXT2_CHECK_MAGIC(data, EXT2_ET_MAGIC_UNIX_IO_CHANNEL);
-#ifndef NO_IO_CACHE
- retval = flush_cached_blocks(channel, data, 0);
-#endif
-#ifdef HAVE_FSYNC
- /* always fsync the device, even if flushing our own cache failed */
- if (fsync(data->dev) != 0 && !retval)
- return errno;
-#endif
- return retval;
+ return maybe_fsync(channel, 0);
}
static errcode_t unix_set_option(io_channel channel, const char *option,
@@ -1653,6 +1699,7 @@ static errcode_t unix_discard(io_channel channel, unsigned long long block,
}
return errno;
}
+ mark_dirty(channel);
return 0;
unimplemented:
return EXT2_ET_UNIMPLEMENTED;
@@ -1734,6 +1781,7 @@ static errcode_t unix_zeroout(io_channel channel, unsigned long long block,
}
return errno;
}
+ mark_dirty(channel);
return 0;
unimplemented:
return EXT2_ET_UNIMPLEMENTED;
^ permalink raw reply related
* [recipe build #4057524] of ~linux-rdma rdma-core-daily in xenial: Dependency wait
From: noreply @ 2026-06-25 19:29 UTC (permalink / raw)
To: Linux RDMA
* State: Dependency wait
* Recipe: linux-rdma/rdma-core-daily
* Archive: ~linux-rdma/ubuntu/rdma-core-daily
* Distroseries: xenial
* Duration: 12 minutes
* Build Log: https://launchpad.net/~linux-rdma/+archive/ubuntu/rdma-core-daily/+recipebuild/4057524/+files/buildlog.txt.gz
* Upload Log:
* Builder: https://launchpad.net/builders/lcy02-amd64-011
--
https://launchpad.net/~linux-rdma/+archive/ubuntu/rdma-core-daily/+recipebuild/4057524
Your team Linux RDMA is the requester of the build.
^ permalink raw reply
* [PATCH 01/10] libext2fs: make it possible to extract the fd from an IO manager
From: Darrick J. Wong @ 2026-06-25 19:37 UTC (permalink / raw)
To: tytso; +Cc: linux-ext4
In-Reply-To: <178241606773.1810414.1910863348345107939.stgit@frogsfrogsfrogs>
From: Darrick J. Wong <djwong@kernel.org>
Make it so that we can extract the fd from an open IO manager. This
will be used in subsequent patches to register the open block device
with the fuse iomap kernel driver.
Signed-off-by: "Darrick J. Wong" <djwong@kernel.org>
---
lib/ext2fs/ext2_io.h | 4 +++-
debian/libext2fs2t64.symbols | 1 +
lib/ext2fs/io_manager.c | 8 ++++++++
lib/ext2fs/unix_io.c | 20 ++++++++++++++++++++
4 files changed, 32 insertions(+), 1 deletion(-)
diff --git a/lib/ext2fs/ext2_io.h b/lib/ext2fs/ext2_io.h
index 61865d54d82490..c880ea2524f248 100644
--- a/lib/ext2fs/ext2_io.h
+++ b/lib/ext2fs/ext2_io.h
@@ -103,7 +103,8 @@ struct struct_io_manager {
errcode_t (*zeroout)(io_channel channel, unsigned long long block,
unsigned long long count);
errcode_t (*flock)(io_channel channel, unsigned int flock_flags);
- long reserved[13];
+ errcode_t (*get_fd)(io_channel channel, int *fd);
+ long reserved[12];
};
#define IO_FLAG_RW 0x0001
@@ -155,6 +156,7 @@ extern errcode_t io_channel_cache_readahead(io_channel io,
unsigned long long count);
extern errcode_t io_channel_flock(io_channel io, unsigned int flock_flags);
extern errcode_t io_channel_funlock(io_channel io);
+extern errcode_t io_channel_get_fd(io_channel io, int *fd);
#ifdef _WIN32
/* windows_io.c */
diff --git a/debian/libext2fs2t64.symbols b/debian/libext2fs2t64.symbols
index affe4c27d4e791..555fbbb0c98878 100644
--- a/debian/libext2fs2t64.symbols
+++ b/debian/libext2fs2t64.symbols
@@ -701,6 +701,7 @@ libext2fs.so.2 libext2fs2t64 #MINVER#
io_channel_discard@Base 1.42
io_channel_flock@Base 1.47.99
io_channel_funlock@Base 1.47.99
+ io_channel_get_fd@Base 1.47.99
io_channel_read_blk64@Base 1.41.1
io_channel_set_options@Base 1.37
io_channel_write_blk64@Base 1.41.1
diff --git a/lib/ext2fs/io_manager.c b/lib/ext2fs/io_manager.c
index 791ec7d14adbba..dff3d73552827f 100644
--- a/lib/ext2fs/io_manager.c
+++ b/lib/ext2fs/io_manager.c
@@ -166,3 +166,11 @@ errcode_t io_channel_funlock(io_channel io)
return io->manager->flock(io, 0);
}
+
+errcode_t io_channel_get_fd(io_channel io, int *fd)
+{
+ if (!io->manager->get_fd)
+ return EXT2_ET_OP_NOT_SUPPORTED;
+
+ return io->manager->get_fd(io, fd);
+}
diff --git a/lib/ext2fs/unix_io.c b/lib/ext2fs/unix_io.c
index f4307db0fb2b05..79bc9219f9515b 100644
--- a/lib/ext2fs/unix_io.c
+++ b/lib/ext2fs/unix_io.c
@@ -1786,6 +1786,24 @@ static errcode_t unix_zeroout(io_channel channel, unsigned long long block,
unimplemented:
return EXT2_ET_UNIMPLEMENTED;
}
+
+static errcode_t unix_get_fd(io_channel channel, int *fd)
+{
+ struct unix_private_data *data;
+
+ EXT2_CHECK_MAGIC(channel, EXT2_ET_MAGIC_IO_CHANNEL);
+ data = (struct unix_private_data *) channel->private_data;
+ EXT2_CHECK_MAGIC(data, EXT2_ET_MAGIC_UNIX_IO_CHANNEL);
+
+ if (data->offset) {
+ *fd = -1;
+ return EINVAL;
+ }
+
+ *fd = data->dev;
+ return 0;
+}
+
#if __GNUC_PREREQ (4, 6)
#pragma GCC diagnostic pop
#endif
@@ -1808,6 +1826,7 @@ static struct struct_io_manager struct_unix_manager = {
.cache_readahead = unix_cache_readahead,
.zeroout = unix_zeroout,
.flock = unix_flock,
+ .get_fd = unix_get_fd,
};
io_manager unix_io_manager = &struct_unix_manager;
@@ -1830,6 +1849,7 @@ static struct struct_io_manager struct_unixfd_manager = {
.cache_readahead = unix_cache_readahead,
.zeroout = unix_zeroout,
.flock = unix_flock,
+ .get_fd = unix_get_fd,
};
io_manager unixfd_io_manager = &struct_unixfd_manager;
^ permalink raw reply related
* [PATCH 02/10] libext2fs: fix checking for valid fds in mmp.c
From: Darrick J. Wong @ 2026-06-25 19:37 UTC (permalink / raw)
To: tytso; +Cc: linux-ext4, linux-ext4
In-Reply-To: <178241606773.1810414.1910863348345107939.stgit@frogsfrogsfrogs>
From: Darrick J. Wong <djwong@kernel.org>
File descriptors are non-negative numbers, which means that 0 is a valid
fd. Fix the code to be consistent with Unix behaviors.
Cc: <linux-ext4@vger.kernel.org> # v1.42
Fixes: 0f5eba7501f467 ("ext2fs: add multi-mount protection (INCOMPAT_MMP)")
Fixes: 76a6c8788c79e4 ("mmp: do not use O_DIRECT when working with regular file")
Signed-off-by: "Darrick J. Wong" <djwong@kernel.org>
---
lib/ext2fs/mmp.c | 6 +++---
lib/ext2fs/openfs.c | 1 +
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/lib/ext2fs/mmp.c b/lib/ext2fs/mmp.c
index e2823732e2b6a2..cb15a18fce5547 100644
--- a/lib/ext2fs/mmp.c
+++ b/lib/ext2fs/mmp.c
@@ -59,11 +59,11 @@ errcode_t ext2fs_mmp_read(ext2_filsys fs, blk64_t mmp_blk, void *buf)
return EXT2_ET_MMP_BAD_BLOCK;
/* ext2fs_open() reserves fd0,1,2 to avoid stdio collision, so checking
- * mmp_fd <= 0 is OK to validate that the fd is valid. This opens its
+ * mmp_fd < 0 is OK to validate that the fd is valid. This opens its
* own fd to read the MMP block to ensure that it is using O_DIRECT,
* regardless of how the io_manager is doing reads, to avoid caching of
* the MMP block by the io_manager or the VM. It needs to be fresh. */
- if (fs->mmp_fd <= 0) {
+ if (fs->mmp_fd < 0) {
struct stat st;
int flags = O_RDONLY | O_DIRECT;
@@ -427,7 +427,7 @@ errcode_t ext2fs_mmp_stop(ext2_filsys fs)
retval = ext2fs_mmp_write(fs, fs->super->s_mmp_block, fs->mmp_cmp);
mmp_error:
- if (fs->mmp_fd > 0) {
+ if (fs->mmp_fd >= 0) {
close(fs->mmp_fd);
fs->mmp_fd = -1;
}
diff --git a/lib/ext2fs/openfs.c b/lib/ext2fs/openfs.c
index 2b8e0e753c46e8..41359d15740881 100644
--- a/lib/ext2fs/openfs.c
+++ b/lib/ext2fs/openfs.c
@@ -148,6 +148,7 @@ errcode_t ext2fs_open2(const char *name, const char *io_options,
/* don't overwrite sb backups unless flag is explicitly cleared */
fs->flags |= EXT2_FLAG_MASTER_SB_ONLY;
fs->umask = 022;
+ fs->mmp_fd = -1;
time_env = ext2fs_safe_getenv("SOURCE_DATE_EPOCH");
if (time_env) {
^ permalink raw reply related
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.