* [PATCH v3 01/19] x86/kaslr: Include <linux/prandom.h> instead of <linux/random.h>
2024-09-30 12:33 [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h> Uros Bizjak
@ 2024-09-30 12:33 ` Uros Bizjak
2024-09-30 12:33 ` [PATCH v3 02/19] crypto: testmgr: " Uros Bizjak
` (22 subsequent siblings)
23 siblings, 0 replies; 27+ messages in thread
From: Uros Bizjak @ 2024-09-30 12:33 UTC (permalink / raw)
To: x86, linux-crypto, intel-gfx, dri-devel, linux-media, linux-mtd,
linux-fscrypt, linux-scsi, bpf, linux-kselftest, kunit-dev,
linux-kernel
Cc: Uros Bizjak, Dave Hansen, Andy Lutomirski, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, H. Peter Anvin
Substitute the inclusion of <linux/random.h> header with
<linux/prandom.h> to allow the removal of legacy inclusion
of <linux/prandom.h> from <linux/random.h>.
Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: Andy Lutomirski <luto@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Borislav Petkov <bp@alien8.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
---
arch/x86/mm/kaslr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/x86/mm/kaslr.c b/arch/x86/mm/kaslr.c
index 230f1dee4f09..e17e6e27b7ec 100644
--- a/arch/x86/mm/kaslr.c
+++ b/arch/x86/mm/kaslr.c
@@ -22,7 +22,7 @@
#include <linux/kernel.h>
#include <linux/init.h>
-#include <linux/random.h>
+#include <linux/prandom.h>
#include <linux/memblock.h>
#include <linux/pgtable.h>
--
2.46.2
^ permalink raw reply related [flat|nested] 27+ messages in thread* [PATCH v3 02/19] crypto: testmgr: Include <linux/prandom.h> instead of <linux/random.h>
2024-09-30 12:33 [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h> Uros Bizjak
2024-09-30 12:33 ` [PATCH v3 01/19] x86/kaslr: Include <linux/prandom.h> instead of <linux/random.h> Uros Bizjak
@ 2024-09-30 12:33 ` Uros Bizjak
2024-10-01 0:37 ` Herbert Xu
2024-09-30 12:33 ` [PATCH v3 03/19] drm/i915/selftests: " Uros Bizjak
` (21 subsequent siblings)
23 siblings, 1 reply; 27+ messages in thread
From: Uros Bizjak @ 2024-09-30 12:33 UTC (permalink / raw)
To: x86, linux-crypto, intel-gfx, dri-devel, linux-media, linux-mtd,
linux-fscrypt, linux-scsi, bpf, linux-kselftest, kunit-dev,
linux-kernel
Cc: Uros Bizjak, Herbert Xu, David S. Miller
Substitute the inclusion of <linux/random.h> header with
<linux/prandom.h> to allow the removal of legacy inclusion
of <linux/prandom.h> from <linux/random.h>.
Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Cc: Herbert Xu <herbert@gondor.apana.org.au>
Cc: "David S. Miller" <davem@davemloft.net>
---
crypto/testmgr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/crypto/testmgr.c b/crypto/testmgr.c
index ee8da628e9da..43472e79533c 100644
--- a/crypto/testmgr.c
+++ b/crypto/testmgr.c
@@ -23,7 +23,7 @@
#include <linux/fips.h>
#include <linux/module.h>
#include <linux/once.h>
-#include <linux/random.h>
+#include <linux/prandom.h>
#include <linux/scatterlist.h>
#include <linux/slab.h>
#include <linux/string.h>
--
2.46.2
^ permalink raw reply related [flat|nested] 27+ messages in thread* Re: [PATCH v3 02/19] crypto: testmgr: Include <linux/prandom.h> instead of <linux/random.h>
2024-09-30 12:33 ` [PATCH v3 02/19] crypto: testmgr: " Uros Bizjak
@ 2024-10-01 0:37 ` Herbert Xu
0 siblings, 0 replies; 27+ messages in thread
From: Herbert Xu @ 2024-10-01 0:37 UTC (permalink / raw)
To: Uros Bizjak
Cc: x86, linux-crypto, intel-gfx, dri-devel, linux-media, linux-mtd,
linux-fscrypt, linux-scsi, bpf, linux-kselftest, kunit-dev,
linux-kernel, David S. Miller
On Mon, Sep 30, 2024 at 02:33:13PM +0200, Uros Bizjak wrote:
> Substitute the inclusion of <linux/random.h> header with
> <linux/prandom.h> to allow the removal of legacy inclusion
> of <linux/prandom.h> from <linux/random.h>.
>
> Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
> Cc: Herbert Xu <herbert@gondor.apana.org.au>
> Cc: "David S. Miller" <davem@davemloft.net>
> ---
> crypto/testmgr.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Acked-by: Herbert Xu <herbert@gondor.apana.org.au>
Thanks,
--
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
^ permalink raw reply [flat|nested] 27+ messages in thread
* [PATCH v3 03/19] drm/i915/selftests: Include <linux/prandom.h> instead of <linux/random.h>
2024-09-30 12:33 [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h> Uros Bizjak
2024-09-30 12:33 ` [PATCH v3 01/19] x86/kaslr: Include <linux/prandom.h> instead of <linux/random.h> Uros Bizjak
2024-09-30 12:33 ` [PATCH v3 02/19] crypto: testmgr: " Uros Bizjak
@ 2024-09-30 12:33 ` Uros Bizjak
2024-09-30 12:33 ` [PATCH v3 04/19] drm/lib: " Uros Bizjak
` (20 subsequent siblings)
23 siblings, 0 replies; 27+ messages in thread
From: Uros Bizjak @ 2024-09-30 12:33 UTC (permalink / raw)
To: x86, linux-crypto, intel-gfx, dri-devel, linux-media, linux-mtd,
linux-fscrypt, linux-scsi, bpf, linux-kselftest, kunit-dev,
linux-kernel
Cc: Uros Bizjak, Jani Nikula, Joonas Lahtinen, Rodrigo Vivi,
Tvrtko Ursulin, David Airlie, Daniel Vetter
Substitute the inclusion of <linux/random.h> header with
<linux/prandom.h> to allow the removal of legacy inclusion
of <linux/prandom.h> from <linux/random.h>.
Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Acked-by: Jani Nikula <jani.nikula@linux.intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Tvrtko Ursulin <tursulin@ursulin.net>
Cc: David Airlie <airlied@gmail.com>
Cc: Daniel Vetter <daniel@ffwll.ch>
---
drivers/gpu/drm/i915/selftests/i915_gem.c | 2 +-
drivers/gpu/drm/i915/selftests/i915_random.h | 2 +-
drivers/gpu/drm/i915/selftests/scatterlist.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/selftests/i915_gem.c b/drivers/gpu/drm/i915/selftests/i915_gem.c
index 61da4ed9d521..0727492576be 100644
--- a/drivers/gpu/drm/i915/selftests/i915_gem.c
+++ b/drivers/gpu/drm/i915/selftests/i915_gem.c
@@ -4,7 +4,7 @@
* Copyright © 2018 Intel Corporation
*/
-#include <linux/random.h>
+#include <linux/prandom.h>
#include "gem/i915_gem_internal.h"
#include "gem/i915_gem_pm.h"
diff --git a/drivers/gpu/drm/i915/selftests/i915_random.h b/drivers/gpu/drm/i915/selftests/i915_random.h
index 05364eca20f7..70330a2e80f2 100644
--- a/drivers/gpu/drm/i915/selftests/i915_random.h
+++ b/drivers/gpu/drm/i915/selftests/i915_random.h
@@ -26,7 +26,7 @@
#define __I915_SELFTESTS_RANDOM_H__
#include <linux/math64.h>
-#include <linux/random.h>
+#include <linux/prandom.h>
#include "../i915_selftest.h"
diff --git a/drivers/gpu/drm/i915/selftests/scatterlist.c b/drivers/gpu/drm/i915/selftests/scatterlist.c
index 805c4bfb85fe..7e59591bbed6 100644
--- a/drivers/gpu/drm/i915/selftests/scatterlist.c
+++ b/drivers/gpu/drm/i915/selftests/scatterlist.c
@@ -22,7 +22,7 @@
*/
#include <linux/prime_numbers.h>
-#include <linux/random.h>
+#include <linux/prandom.h>
#include "i915_selftest.h"
#include "i915_utils.h"
--
2.46.2
^ permalink raw reply related [flat|nested] 27+ messages in thread* [PATCH v3 04/19] drm/lib: Include <linux/prandom.h> instead of <linux/random.h>
2024-09-30 12:33 [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h> Uros Bizjak
` (2 preceding siblings ...)
2024-09-30 12:33 ` [PATCH v3 03/19] drm/i915/selftests: " Uros Bizjak
@ 2024-09-30 12:33 ` Uros Bizjak
2024-09-30 12:33 ` [PATCH v3 05/19] media: vivid: Include <linux/prandom.h> in vivid-vid-cap.c Uros Bizjak
` (19 subsequent siblings)
23 siblings, 0 replies; 27+ messages in thread
From: Uros Bizjak @ 2024-09-30 12:33 UTC (permalink / raw)
To: x86, linux-crypto, intel-gfx, dri-devel, linux-media, linux-mtd,
linux-fscrypt, linux-scsi, bpf, linux-kselftest, kunit-dev,
linux-kernel
Cc: Uros Bizjak, Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann,
David Airlie, Daniel Vetter
Substitute the inclusion of <linux/random.h> header with
<linux/prandom.h> to allow the removal of legacy inclusion
of <linux/prandom.h> from <linux/random.h>.
Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Cc: Maxime Ripard <mripard@kernel.org>
Cc: Thomas Zimmermann <tzimmermann@suse.de>
Cc: David Airlie <airlied@gmail.com>
Cc: Daniel Vetter <daniel@ffwll.ch>
---
drivers/gpu/drm/lib/drm_random.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/lib/drm_random.h b/drivers/gpu/drm/lib/drm_random.h
index 5543bf0474bc..9f827260a89d 100644
--- a/drivers/gpu/drm/lib/drm_random.h
+++ b/drivers/gpu/drm/lib/drm_random.h
@@ -6,7 +6,7 @@
* be transposed to lib/ at the earliest convenience.
*/
-#include <linux/random.h>
+#include <linux/prandom.h>
#define DRM_RND_STATE_INITIALIZER(seed__) ({ \
struct rnd_state state__; \
--
2.46.2
^ permalink raw reply related [flat|nested] 27+ messages in thread* [PATCH v3 05/19] media: vivid: Include <linux/prandom.h> in vivid-vid-cap.c
2024-09-30 12:33 [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h> Uros Bizjak
` (3 preceding siblings ...)
2024-09-30 12:33 ` [PATCH v3 04/19] drm/lib: " Uros Bizjak
@ 2024-09-30 12:33 ` Uros Bizjak
2024-09-30 12:33 ` [PATCH v3 06/19] mtd: tests: Include <linux/prandom.h> instead of <linux/random.h> Uros Bizjak
` (18 subsequent siblings)
23 siblings, 0 replies; 27+ messages in thread
From: Uros Bizjak @ 2024-09-30 12:33 UTC (permalink / raw)
To: x86, linux-crypto, intel-gfx, dri-devel, linux-media, linux-mtd,
linux-fscrypt, linux-scsi, bpf, linux-kselftest, kunit-dev,
linux-kernel
Cc: Uros Bizjak, Hans Verkuil, Mauro Carvalho Chehab
Include <linux/prandom.h> to allow the removal of legacy
inclusion of <linux/prandom.h> from <linux/random.h>.
Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Acked-by: Hans Verkuil <hverkuil@xs4all.nl>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: linux-media@vger.kernel.org
---
drivers/media/test-drivers/vivid/vivid-vid-cap.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/media/test-drivers/vivid/vivid-vid-cap.c b/drivers/media/test-drivers/vivid/vivid-vid-cap.c
index 69620e0a35a0..184460eb356e 100644
--- a/drivers/media/test-drivers/vivid/vivid-vid-cap.c
+++ b/drivers/media/test-drivers/vivid/vivid-vid-cap.c
@@ -10,6 +10,7 @@
#include <linux/sched.h>
#include <linux/vmalloc.h>
#include <linux/videodev2.h>
+#include <linux/prandom.h>
#include <linux/v4l2-dv-timings.h>
#include <media/v4l2-common.h>
#include <media/v4l2-event.h>
--
2.46.2
^ permalink raw reply related [flat|nested] 27+ messages in thread* [PATCH v3 06/19] mtd: tests: Include <linux/prandom.h> instead of <linux/random.h>
2024-09-30 12:33 [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h> Uros Bizjak
` (4 preceding siblings ...)
2024-09-30 12:33 ` [PATCH v3 05/19] media: vivid: Include <linux/prandom.h> in vivid-vid-cap.c Uros Bizjak
@ 2024-09-30 12:33 ` Uros Bizjak
2024-09-30 12:33 ` [PATCH v3 07/19] fscrypt: Include <linux/once.h> in fs/crypto/keyring.c Uros Bizjak
` (17 subsequent siblings)
23 siblings, 0 replies; 27+ messages in thread
From: Uros Bizjak @ 2024-09-30 12:33 UTC (permalink / raw)
To: x86, linux-crypto, intel-gfx, dri-devel, linux-media, linux-mtd,
linux-fscrypt, linux-scsi, bpf, linux-kselftest, kunit-dev,
linux-kernel
Cc: Uros Bizjak, Miquel Raynal, Richard Weinberger,
Vignesh Raghavendra
Substitute the inclusion of <linux/random.h> header with
<linux/prandom.h> to allow the removal of legacy inclusion
of <linux/prandom.h> from <linux/random.h>.
Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Acked-by: Miquel Raynal <miquel.raynal@bootlin.com>
Cc: Richard Weinberger <richard@nod.at>
Cc: Vignesh Raghavendra <vigneshr@ti.com>
---
drivers/mtd/tests/oobtest.c | 2 +-
drivers/mtd/tests/pagetest.c | 2 +-
drivers/mtd/tests/subpagetest.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/mtd/tests/oobtest.c b/drivers/mtd/tests/oobtest.c
index 13fed398937e..e1ee68f8b8f8 100644
--- a/drivers/mtd/tests/oobtest.c
+++ b/drivers/mtd/tests/oobtest.c
@@ -17,7 +17,7 @@
#include <linux/mtd/mtd.h>
#include <linux/slab.h>
#include <linux/sched.h>
-#include <linux/random.h>
+#include <linux/prandom.h>
#include "mtd_test.h"
diff --git a/drivers/mtd/tests/pagetest.c b/drivers/mtd/tests/pagetest.c
index 8eb40b6e6dfa..6878700d2fc0 100644
--- a/drivers/mtd/tests/pagetest.c
+++ b/drivers/mtd/tests/pagetest.c
@@ -17,7 +17,7 @@
#include <linux/mtd/mtd.h>
#include <linux/slab.h>
#include <linux/sched.h>
-#include <linux/random.h>
+#include <linux/prandom.h>
#include "mtd_test.h"
diff --git a/drivers/mtd/tests/subpagetest.c b/drivers/mtd/tests/subpagetest.c
index 05250a080139..f34bbf033c4d 100644
--- a/drivers/mtd/tests/subpagetest.c
+++ b/drivers/mtd/tests/subpagetest.c
@@ -15,7 +15,7 @@
#include <linux/mtd/mtd.h>
#include <linux/slab.h>
#include <linux/sched.h>
-#include <linux/random.h>
+#include <linux/prandom.h>
#include "mtd_test.h"
--
2.46.2
^ permalink raw reply related [flat|nested] 27+ messages in thread* [PATCH v3 07/19] fscrypt: Include <linux/once.h> in fs/crypto/keyring.c
2024-09-30 12:33 [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h> Uros Bizjak
` (5 preceding siblings ...)
2024-09-30 12:33 ` [PATCH v3 06/19] mtd: tests: Include <linux/prandom.h> instead of <linux/random.h> Uros Bizjak
@ 2024-09-30 12:33 ` Uros Bizjak
2024-09-30 12:33 ` [PATCH v3 08/19] scsi: libfcoe: Include <linux/prandom.h> instead of <linux/random.h> Uros Bizjak
` (16 subsequent siblings)
23 siblings, 0 replies; 27+ messages in thread
From: Uros Bizjak @ 2024-09-30 12:33 UTC (permalink / raw)
To: x86, linux-crypto, intel-gfx, dri-devel, linux-media, linux-mtd,
linux-fscrypt, linux-scsi, bpf, linux-kselftest, kunit-dev,
linux-kernel
Cc: Uros Bizjak, Eric Biggers, Theodore Y. Ts'o, Jaegeuk Kim
Include <linux/once.h> header to allow the removal of legacy
inclusion of <linux/prandom.h> from <linux/random.h>.
Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Acked-by: Eric Biggers <ebiggers@kernel.org>
Cc: "Theodore Y. Ts'o" <tytso@mit.edu>
Cc: Jaegeuk Kim <jaegeuk@kernel.org>
---
v2: Include <linux/once.h> instead of <linux/prandom.h>
---
fs/crypto/keyring.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/fs/crypto/keyring.c b/fs/crypto/keyring.c
index 6681a71625f0..82fcc5683649 100644
--- a/fs/crypto/keyring.c
+++ b/fs/crypto/keyring.c
@@ -22,6 +22,7 @@
#include <crypto/skcipher.h>
#include <linux/key-type.h>
#include <linux/random.h>
+#include <linux/once.h>
#include <linux/seq_file.h>
#include "fscrypt_private.h"
--
2.46.2
^ permalink raw reply related [flat|nested] 27+ messages in thread* [PATCH v3 08/19] scsi: libfcoe: Include <linux/prandom.h> instead of <linux/random.h>
2024-09-30 12:33 [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h> Uros Bizjak
` (6 preceding siblings ...)
2024-09-30 12:33 ` [PATCH v3 07/19] fscrypt: Include <linux/once.h> in fs/crypto/keyring.c Uros Bizjak
@ 2024-09-30 12:33 ` Uros Bizjak
2024-09-30 12:33 ` [PATCH v3 09/19] bpf: " Uros Bizjak
` (15 subsequent siblings)
23 siblings, 0 replies; 27+ messages in thread
From: Uros Bizjak @ 2024-09-30 12:33 UTC (permalink / raw)
To: x86, linux-crypto, intel-gfx, dri-devel, linux-media, linux-mtd,
linux-fscrypt, linux-scsi, bpf, linux-kselftest, kunit-dev,
linux-kernel
Cc: Uros Bizjak, Bart Van Assche, Hannes Reinecke,
James E.J. Bottomley, Martin K. Petersen
Substitute the inclusion of <linux/random.h> header with
<linux/prandom.h> to allow the removal of legacy inclusion
of <linux/prandom.h> from <linux/random.h>.
Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Reviewed-by: Bart Van Assche <bvanassche@acm.org>
Cc: Hannes Reinecke <hare@suse.de>
Cc: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Cc: "Martin K. Petersen" <martin.petersen@oracle.com>
---
include/scsi/libfcoe.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/scsi/libfcoe.h b/include/scsi/libfcoe.h
index 3c5899290aed..6616348e59b9 100644
--- a/include/scsi/libfcoe.h
+++ b/include/scsi/libfcoe.h
@@ -15,7 +15,7 @@
#include <linux/skbuff.h>
#include <linux/workqueue.h>
#include <linux/local_lock.h>
-#include <linux/random.h>
+#include <linux/prandom.h>
#include <scsi/fc/fc_fcoe.h>
#include <scsi/libfc.h>
#include <scsi/fcoe_sysfs.h>
--
2.46.2
^ permalink raw reply related [flat|nested] 27+ messages in thread* [PATCH v3 09/19] bpf: Include <linux/prandom.h> instead of <linux/random.h>
2024-09-30 12:33 [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h> Uros Bizjak
` (7 preceding siblings ...)
2024-09-30 12:33 ` [PATCH v3 08/19] scsi: libfcoe: Include <linux/prandom.h> instead of <linux/random.h> Uros Bizjak
@ 2024-09-30 12:33 ` Uros Bizjak
2024-09-30 12:33 ` [PATCH v3 10/19] lib/interval_tree_test.c: " Uros Bizjak
` (14 subsequent siblings)
23 siblings, 0 replies; 27+ messages in thread
From: Uros Bizjak @ 2024-09-30 12:33 UTC (permalink / raw)
To: x86, linux-crypto, intel-gfx, dri-devel, linux-media, linux-mtd,
linux-fscrypt, linux-scsi, bpf, linux-kselftest, kunit-dev,
linux-kernel
Cc: Uros Bizjak, Alexei Starovoitov, Daniel Borkmann, John Fastabend,
Andrii Nakryiko, Martin KaFai Lau, Eduard Zingerman, Song Liu,
Yonghong Song, KP Singh, Stanislav Fomichev, Hao Luo, Jiri Olsa
Substitute the inclusion of <linux/random.h> header with
<linux/prandom.h> to allow the removal of legacy inclusion
of <linux/prandom.h> from <linux/random.h>.
Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Cc: Alexei Starovoitov <ast@kernel.org>
Cc: Daniel Borkmann <daniel@iogearbox.net>
Cc: John Fastabend <john.fastabend@gmail.com>
Cc: Andrii Nakryiko <andrii@kernel.org>
Cc: Martin KaFai Lau <martin.lau@linux.dev>
Cc: Eduard Zingerman <eddyz87@gmail.com>
Cc: Song Liu <song@kernel.org>
Cc: Yonghong Song <yonghong.song@linux.dev>
Cc: KP Singh <kpsingh@kernel.org>
Cc: Stanislav Fomichev <sdf@fomichev.me>
Cc: Hao Luo <haoluo@google.com>
Cc: Jiri Olsa <jolsa@kernel.org>
---
kernel/bpf/core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/bpf/core.c b/kernel/bpf/core.c
index 4e07cc057d6f..66474021f84e 100644
--- a/kernel/bpf/core.c
+++ b/kernel/bpf/core.c
@@ -21,7 +21,7 @@
#include <linux/filter.h>
#include <linux/skbuff.h>
#include <linux/vmalloc.h>
-#include <linux/random.h>
+#include <linux/prandom.h>
#include <linux/bpf.h>
#include <linux/btf.h>
#include <linux/objtool.h>
--
2.46.2
^ permalink raw reply related [flat|nested] 27+ messages in thread* [PATCH v3 10/19] lib/interval_tree_test.c: Include <linux/prandom.h> instead of <linux/random.h>
2024-09-30 12:33 [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h> Uros Bizjak
` (8 preceding siblings ...)
2024-09-30 12:33 ` [PATCH v3 09/19] bpf: " Uros Bizjak
@ 2024-09-30 12:33 ` Uros Bizjak
2024-09-30 12:33 ` [PATCH v3 11/19] kunit: string-stream-test: Include <linux/prandom.h> Uros Bizjak
` (13 subsequent siblings)
23 siblings, 0 replies; 27+ messages in thread
From: Uros Bizjak @ 2024-09-30 12:33 UTC (permalink / raw)
To: x86, linux-crypto, intel-gfx, dri-devel, linux-media, linux-mtd,
linux-fscrypt, linux-scsi, bpf, linux-kselftest, kunit-dev,
linux-kernel
Cc: Uros Bizjak, Andrew Morton
Substitute the inclusion of <linux/random.h> header with
<linux/prandom.h> to allow the removal of legacy inclusion
of <linux/prandom.h> from <linux/random.h>.
Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
---
lib/interval_tree_test.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/interval_tree_test.c b/lib/interval_tree_test.c
index f37f4d44faa9..837064b83a6c 100644
--- a/lib/interval_tree_test.c
+++ b/lib/interval_tree_test.c
@@ -2,7 +2,7 @@
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/interval_tree.h>
-#include <linux/random.h>
+#include <linux/prandom.h>
#include <linux/slab.h>
#include <asm/timex.h>
--
2.46.2
^ permalink raw reply related [flat|nested] 27+ messages in thread* [PATCH v3 11/19] kunit: string-stream-test: Include <linux/prandom.h>
2024-09-30 12:33 [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h> Uros Bizjak
` (9 preceding siblings ...)
2024-09-30 12:33 ` [PATCH v3 10/19] lib/interval_tree_test.c: " Uros Bizjak
@ 2024-09-30 12:33 ` Uros Bizjak
2024-09-30 12:33 ` [PATCH v3 12/19] random32: Include <linux/prandom.h> instead of <linux/random.h> Uros Bizjak
` (12 subsequent siblings)
23 siblings, 0 replies; 27+ messages in thread
From: Uros Bizjak @ 2024-09-30 12:33 UTC (permalink / raw)
To: x86, linux-crypto, intel-gfx, dri-devel, linux-media, linux-mtd,
linux-fscrypt, linux-scsi, bpf, linux-kselftest, kunit-dev,
linux-kernel
Cc: Uros Bizjak, Brendan Higgins, David Gow, Rae Moar
Include <linux/random.h> header to allow the removal of legacy
inclusion of <linux/prandom.h> from <linux/random.h>.
Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Cc: Brendan Higgins <brendan.higgins@linux.dev>
Cc: David Gow <davidgow@google.com>
Cc: Rae Moar <rmoar@google.com>
---
lib/kunit/string-stream-test.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/kunit/string-stream-test.c b/lib/kunit/string-stream-test.c
index 7511442ea98f..7734e33156f9 100644
--- a/lib/kunit/string-stream-test.c
+++ b/lib/kunit/string-stream-test.c
@@ -9,6 +9,7 @@
#include <kunit/static_stub.h>
#include <kunit/test.h>
#include <linux/ktime.h>
+#include <linux/prandom.h>
#include <linux/slab.h>
#include <linux/timekeeping.h>
--
2.46.2
^ permalink raw reply related [flat|nested] 27+ messages in thread* [PATCH v3 12/19] random32: Include <linux/prandom.h> instead of <linux/random.h>
2024-09-30 12:33 [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h> Uros Bizjak
` (10 preceding siblings ...)
2024-09-30 12:33 ` [PATCH v3 11/19] kunit: string-stream-test: Include <linux/prandom.h> Uros Bizjak
@ 2024-09-30 12:33 ` Uros Bizjak
2024-09-30 12:33 ` [PATCH v3 13/19] lib/rbtree-test: " Uros Bizjak
` (11 subsequent siblings)
23 siblings, 0 replies; 27+ messages in thread
From: Uros Bizjak @ 2024-09-30 12:33 UTC (permalink / raw)
To: x86, linux-crypto, intel-gfx, dri-devel, linux-media, linux-mtd,
linux-fscrypt, linux-scsi, bpf, linux-kselftest, kunit-dev,
linux-kernel
Cc: Uros Bizjak, Andrew Morton, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni
Substitute the inclusion of <linux/random.h> header with
<linux/prandom.h> to allow the removal of legacy inclusion
of <linux/prandom.h> from <linux/random.h>.
Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Eric Dumazet <edumazet@google.com>
Cc: Jakub Kicinski <kuba@kernel.org>
Cc: Paolo Abeni <pabeni@redhat.com>
---
lib/random32.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/random32.c b/lib/random32.c
index 32060b852668..31fc2ca68856 100644
--- a/lib/random32.c
+++ b/lib/random32.c
@@ -36,7 +36,7 @@
#include <linux/percpu.h>
#include <linux/export.h>
#include <linux/jiffies.h>
-#include <linux/random.h>
+#include <linux/prandom.h>
#include <linux/sched.h>
#include <linux/bitops.h>
#include <linux/slab.h>
--
2.46.2
^ permalink raw reply related [flat|nested] 27+ messages in thread* [PATCH v3 13/19] lib/rbtree-test: Include <linux/prandom.h> instead of <linux/random.h>
2024-09-30 12:33 [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h> Uros Bizjak
` (11 preceding siblings ...)
2024-09-30 12:33 ` [PATCH v3 12/19] random32: Include <linux/prandom.h> instead of <linux/random.h> Uros Bizjak
@ 2024-09-30 12:33 ` Uros Bizjak
2024-09-30 12:33 ` [PATCH v3 14/19] bpf/tests: " Uros Bizjak
` (10 subsequent siblings)
23 siblings, 0 replies; 27+ messages in thread
From: Uros Bizjak @ 2024-09-30 12:33 UTC (permalink / raw)
To: x86, linux-crypto, intel-gfx, dri-devel, linux-media, linux-mtd,
linux-fscrypt, linux-scsi, bpf, linux-kselftest, kunit-dev,
linux-kernel
Cc: Uros Bizjak, Andrew Morton
Substitute the inclusion of <linux/random.h> header with
<linux/prandom.h> to allow the removal of legacy inclusion
of <linux/prandom.h> from <linux/random.h>.
Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
---
lib/rbtree_test.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/rbtree_test.c b/lib/rbtree_test.c
index 41ae3c7570d3..8655a76d29a1 100644
--- a/lib/rbtree_test.c
+++ b/lib/rbtree_test.c
@@ -2,7 +2,7 @@
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/rbtree_augmented.h>
-#include <linux/random.h>
+#include <linux/prandom.h>
#include <linux/slab.h>
#include <asm/timex.h>
--
2.46.2
^ permalink raw reply related [flat|nested] 27+ messages in thread* [PATCH v3 14/19] bpf/tests: Include <linux/prandom.h> instead of <linux/random.h>
2024-09-30 12:33 [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h> Uros Bizjak
` (12 preceding siblings ...)
2024-09-30 12:33 ` [PATCH v3 13/19] lib/rbtree-test: " Uros Bizjak
@ 2024-09-30 12:33 ` Uros Bizjak
2024-09-30 12:33 ` [PATCH v3 15/19] lib/test_parman: " Uros Bizjak
` (9 subsequent siblings)
23 siblings, 0 replies; 27+ messages in thread
From: Uros Bizjak @ 2024-09-30 12:33 UTC (permalink / raw)
To: x86, linux-crypto, intel-gfx, dri-devel, linux-media, linux-mtd,
linux-fscrypt, linux-scsi, bpf, linux-kselftest, kunit-dev,
linux-kernel
Cc: Uros Bizjak, Andrew Morton, Alexei Starovoitov, Daniel Borkmann,
Andrii Nakryiko, Martin KaFai Lau, Eduard Zingerman, Song Liu,
Yonghong Song, John Fastabend, KP Singh, Stanislav Fomichev,
Hao Luo, Jiri Olsa
Substitute the inclusion of <linux/random.h> header with
<linux/prandom.h> to allow the removal of legacy inclusion
of <linux/prandom.h> from <linux/random.h>.
Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Alexei Starovoitov <ast@kernel.org>
Cc: Daniel Borkmann <daniel@iogearbox.net>
Cc: Andrii Nakryiko <andrii@kernel.org>
Cc: Martin KaFai Lau <martin.lau@linux.dev>
Cc: Eduard Zingerman <eddyz87@gmail.com>
Cc: Song Liu <song@kernel.org>
Cc: Yonghong Song <yonghong.song@linux.dev>
Cc: John Fastabend <john.fastabend@gmail.com>
Cc: KP Singh <kpsingh@kernel.org>
Cc: Stanislav Fomichev <sdf@fomichev.me>
Cc: Hao Luo <haoluo@google.com>
Cc: Jiri Olsa <jolsa@kernel.org>
---
lib/test_bpf.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/test_bpf.c b/lib/test_bpf.c
index fa5edd6ef7f7..2eed1ad958e9 100644
--- a/lib/test_bpf.c
+++ b/lib/test_bpf.c
@@ -14,7 +14,7 @@
#include <linux/skbuff.h>
#include <linux/netdevice.h>
#include <linux/if_vlan.h>
-#include <linux/random.h>
+#include <linux/prandom.h>
#include <linux/highmem.h>
#include <linux/sched.h>
--
2.46.2
^ permalink raw reply related [flat|nested] 27+ messages in thread* [PATCH v3 15/19] lib/test_parman: Include <linux/prandom.h> instead of <linux/random.h>
2024-09-30 12:33 [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h> Uros Bizjak
` (13 preceding siblings ...)
2024-09-30 12:33 ` [PATCH v3 14/19] bpf/tests: " Uros Bizjak
@ 2024-09-30 12:33 ` Uros Bizjak
2024-09-30 12:33 ` [PATCH v3 16/19] lib/test_scanf: " Uros Bizjak
` (8 subsequent siblings)
23 siblings, 0 replies; 27+ messages in thread
From: Uros Bizjak @ 2024-09-30 12:33 UTC (permalink / raw)
To: x86, linux-crypto, intel-gfx, dri-devel, linux-media, linux-mtd,
linux-fscrypt, linux-scsi, bpf, linux-kselftest, kunit-dev,
linux-kernel
Cc: Uros Bizjak, Andrew Morton, Jiri Pirko
Substitute the inclusion of <linux/random.h> header with
<linux/prandom.h> to allow the removal of legacy inclusion
of <linux/prandom.h> from <linux/random.h>.
Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Jiri Pirko <jiri@resnulli.us>
---
lib/test_parman.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/test_parman.c b/lib/test_parman.c
index 35e32243693c..f9b97426a337 100644
--- a/lib/test_parman.c
+++ b/lib/test_parman.c
@@ -39,7 +39,7 @@
#include <linux/slab.h>
#include <linux/bitops.h>
#include <linux/err.h>
-#include <linux/random.h>
+#include <linux/prandom.h>
#include <linux/parman.h>
#define TEST_PARMAN_PRIO_SHIFT 7 /* defines number of prios for testing */
--
2.46.2
^ permalink raw reply related [flat|nested] 27+ messages in thread* [PATCH v3 16/19] lib/test_scanf: Include <linux/prandom.h> instead of <linux/random.h>
2024-09-30 12:33 [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h> Uros Bizjak
` (14 preceding siblings ...)
2024-09-30 12:33 ` [PATCH v3 15/19] lib/test_parman: " Uros Bizjak
@ 2024-09-30 12:33 ` Uros Bizjak
2024-09-30 12:33 ` [PATCH v3 17/19] netem: Include <linux/prandom.h> in sch_netem.c Uros Bizjak
` (7 subsequent siblings)
23 siblings, 0 replies; 27+ messages in thread
From: Uros Bizjak @ 2024-09-30 12:33 UTC (permalink / raw)
To: x86, linux-crypto, intel-gfx, dri-devel, linux-media, linux-mtd,
linux-fscrypt, linux-scsi, bpf, linux-kselftest, kunit-dev,
linux-kernel
Cc: Uros Bizjak, Petr Mladek, Steven Rostedt, Andy Shevchenko,
Rasmus Villemoes, Sergey Senozhatsky, Andrew Morton
Substitute the inclusion of <linux/random.h> header with
<linux/prandom.h> to allow the removal of legacy inclusion
of <linux/prandom.h> from <linux/random.h>.
Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Acked-by: Petr Mladek <pmladek@suse.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Cc: Sergey Senozhatsky <senozhatsky@chromium.org>
Cc: Andrew Morton <akpm@linux-foundation.org>
---
lib/test_scanf.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/test_scanf.c b/lib/test_scanf.c
index 7257b1768545..44f8508c9d88 100644
--- a/lib/test_scanf.c
+++ b/lib/test_scanf.c
@@ -11,7 +11,7 @@
#include <linux/module.h>
#include <linux/overflow.h>
#include <linux/printk.h>
-#include <linux/random.h>
+#include <linux/prandom.h>
#include <linux/slab.h>
#include <linux/string.h>
--
2.46.2
^ permalink raw reply related [flat|nested] 27+ messages in thread* [PATCH v3 17/19] netem: Include <linux/prandom.h> in sch_netem.c
2024-09-30 12:33 [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h> Uros Bizjak
` (15 preceding siblings ...)
2024-09-30 12:33 ` [PATCH v3 16/19] lib/test_scanf: " Uros Bizjak
@ 2024-09-30 12:33 ` Uros Bizjak
2024-09-30 15:40 ` Stephen Hemminger
2024-09-30 12:33 ` [PATCH v3 18/19] random: Do not include <linux/prandom.h> in <linux/random.h> Uros Bizjak
` (6 subsequent siblings)
23 siblings, 1 reply; 27+ messages in thread
From: Uros Bizjak @ 2024-09-30 12:33 UTC (permalink / raw)
To: x86, linux-crypto, intel-gfx, dri-devel, linux-media, linux-mtd,
linux-fscrypt, linux-scsi, bpf, linux-kselftest, kunit-dev,
linux-kernel
Cc: Uros Bizjak, Stephen Hemminger, Jamal Hadi Salim, Cong Wang,
Jiri Pirko, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni
Include <linux/prandom.h> header to allow the removal of legacy
inclusion of <linux/prandom.h> from <linux/random.h>.
Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Cc: Stephen Hemminger <stephen@networkplumber.org>
Cc: Jamal Hadi Salim <jhs@mojatatu.com>
Cc: Cong Wang <xiyou.wangcong@gmail.com>
Cc: Jiri Pirko <jiri@resnulli.us>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Eric Dumazet <edumazet@google.com>
Cc: Jakub Kicinski <kuba@kernel.org>
Cc: Paolo Abeni <pabeni@redhat.com>
---
net/sched/sch_netem.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/net/sched/sch_netem.c b/net/sched/sch_netem.c
index 39382ee1e331..fe6fed291a7b 100644
--- a/net/sched/sch_netem.c
+++ b/net/sched/sch_netem.c
@@ -17,6 +17,7 @@
#include <linux/errno.h>
#include <linux/skbuff.h>
#include <linux/vmalloc.h>
+#include <linux/prandom.h>
#include <linux/rtnetlink.h>
#include <linux/reciprocal_div.h>
#include <linux/rbtree.h>
--
2.46.2
^ permalink raw reply related [flat|nested] 27+ messages in thread* Re: [PATCH v3 17/19] netem: Include <linux/prandom.h> in sch_netem.c
2024-09-30 12:33 ` [PATCH v3 17/19] netem: Include <linux/prandom.h> in sch_netem.c Uros Bizjak
@ 2024-09-30 15:40 ` Stephen Hemminger
0 siblings, 0 replies; 27+ messages in thread
From: Stephen Hemminger @ 2024-09-30 15:40 UTC (permalink / raw)
To: Uros Bizjak
Cc: x86, linux-crypto, intel-gfx, dri-devel, linux-media, linux-mtd,
linux-fscrypt, linux-scsi, bpf, linux-kselftest, kunit-dev,
linux-kernel, Jamal Hadi Salim, Cong Wang, Jiri Pirko,
David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni
On Mon, 30 Sep 2024 14:33:28 +0200
Uros Bizjak <ubizjak@gmail.com> wrote:
> Include <linux/prandom.h> header to allow the removal of legacy
> inclusion of <linux/prandom.h> from <linux/random.h>.
>
> Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
> Cc: Stephen Hemminger <stephen@networkplumber.org>
> Cc: Jamal Hadi Salim <jhs@mojatatu.com>
> Cc: Cong Wang <xiyou.wangcong@gmail.com>
> Cc: Jiri Pirko <jiri@resnulli.us>
> Cc: "David S. Miller" <davem@davemloft.net>
> Cc: Eric Dumazet <edumazet@google.com>
> Cc: Jakub Kicinski <kuba@kernel.org>
> Cc: Paolo Abeni <pabeni@redhat.com>
Makes sense
Acked-by: Stephen Hemminger <stephen@networkplumber.org>
^ permalink raw reply [flat|nested] 27+ messages in thread
* [PATCH v3 18/19] random: Do not include <linux/prandom.h> in <linux/random.h>
2024-09-30 12:33 [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h> Uros Bizjak
` (16 preceding siblings ...)
2024-09-30 12:33 ` [PATCH v3 17/19] netem: Include <linux/prandom.h> in sch_netem.c Uros Bizjak
@ 2024-09-30 12:33 ` Uros Bizjak
2024-09-30 12:33 ` [PATCH v3 19/19] prandom: Include <linux/percpu.h> in <linux/prandom.h> Uros Bizjak
` (5 subsequent siblings)
23 siblings, 0 replies; 27+ messages in thread
From: Uros Bizjak @ 2024-09-30 12:33 UTC (permalink / raw)
To: x86, linux-crypto, intel-gfx, dri-devel, linux-media, linux-mtd,
linux-fscrypt, linux-scsi, bpf, linux-kselftest, kunit-dev,
linux-kernel
Cc: Uros Bizjak, Theodore Ts'o, Jason A. Donenfeld,
Linus Torvalds
Files that use prandom infrastructure are now converted to
use <linux/prandom.h> header instead of <linux/random.h>.
Remove the legacy inclusion of <linux/prandom.h> from
<linux/random.h>.
This is the "nice cleanup" part, wished in c0842fbc1b18.
Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Fixes: c0842fbc1b18 ("random32: move the pseudo-random 32-bit definitions to prandom.h")
Cc: "Theodore Ts'o" <tytso@mit.edu>
Cc: "Jason A. Donenfeld" <Jason@zx2c4.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
---
include/linux/random.h | 7 -------
1 file changed, 7 deletions(-)
diff --git a/include/linux/random.h b/include/linux/random.h
index b0a940af4fff..333cecfca93f 100644
--- a/include/linux/random.h
+++ b/include/linux/random.h
@@ -145,13 +145,6 @@ declare_get_random_var_wait(u64, u32)
declare_get_random_var_wait(long, unsigned long)
#undef declare_get_random_var
-/*
- * This is designed to be standalone for just prandom
- * users, but for now we include it from <linux/random.h>
- * for legacy reasons.
- */
-#include <linux/prandom.h>
-
#ifdef CONFIG_SMP
int random_prepare_cpu(unsigned int cpu);
int random_online_cpu(unsigned int cpu);
--
2.46.2
^ permalink raw reply related [flat|nested] 27+ messages in thread* [PATCH v3 19/19] prandom: Include <linux/percpu.h> in <linux/prandom.h>
2024-09-30 12:33 [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h> Uros Bizjak
` (17 preceding siblings ...)
2024-09-30 12:33 ` [PATCH v3 18/19] random: Do not include <linux/prandom.h> in <linux/random.h> Uros Bizjak
@ 2024-09-30 12:33 ` Uros Bizjak
2024-09-30 13:25 ` [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h> Jason A. Donenfeld
` (4 subsequent siblings)
23 siblings, 0 replies; 27+ messages in thread
From: Uros Bizjak @ 2024-09-30 12:33 UTC (permalink / raw)
To: x86, linux-crypto, intel-gfx, dri-devel, linux-media, linux-mtd,
linux-fscrypt, linux-scsi, bpf, linux-kselftest, kunit-dev,
linux-kernel
Cc: Uros Bizjak, Theodore Ts'o, Jason A. Donenfeld,
Kent Overstreet
<linux/percpu.h> include was removed from <linux/prandom.h>
in d9f29deb7fe8 ("prandom: Remove unused include") because
this inclusion broke arm64 due to a circular dependency
on include files.
__percpu tag is defined in include/linux/compiler_types.h, so there
is currently no direct need for the inclusion of <linux/percpu.h>.
However, in [1] we would like to repurpose __percpu tag as a named
address space qualifier, where __percpu macro uses defines from
<linux/percpu.h>.
The circular dependency was removed in ddd8e37ebaa1 ("random: Do not
include <linux/prandom.h> in <linux/random.h>") and it cleared
the path for the inclusion of <linux/percpu.h> in <linux/prandom.h>.
This patch is basically a revert of d9f29deb7fe8
("prandom: Remove unused include").
[1] https://lore.kernel.org/lkml/20240812115945.484051-4-ubizjak@gmail.com/
Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
Cc: "Theodore Ts'o" <tytso@mit.edu>
Cc: "Jason A. Donenfeld" <Jason@zx2c4.com>
Cc: Kent Overstreet <kent.overstreet@linux.dev>
---
include/linux/prandom.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/linux/prandom.h b/include/linux/prandom.h
index f7f1e5251c67..f2ed5b72b3d6 100644
--- a/include/linux/prandom.h
+++ b/include/linux/prandom.h
@@ -10,6 +10,7 @@
#include <linux/types.h>
#include <linux/once.h>
+#include <linux/percpu.h>
#include <linux/random.h>
struct rnd_state {
--
2.46.2
^ permalink raw reply related [flat|nested] 27+ messages in thread* Re: [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h>
2024-09-30 12:33 [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h> Uros Bizjak
` (18 preceding siblings ...)
2024-09-30 12:33 ` [PATCH v3 19/19] prandom: Include <linux/percpu.h> in <linux/prandom.h> Uros Bizjak
@ 2024-09-30 13:25 ` Jason A. Donenfeld
2024-10-01 14:35 ` ✗ Fi.CI.CHECKPATCH: warning for random: Resolve circular include dependency and include <linux/percpu.h> (rev3) Patchwork
` (3 subsequent siblings)
23 siblings, 0 replies; 27+ messages in thread
From: Jason A. Donenfeld @ 2024-09-30 13:25 UTC (permalink / raw)
To: Uros Bizjak
Cc: x86, linux-crypto, intel-gfx, dri-devel, linux-media, linux-mtd,
linux-fscrypt, linux-scsi, bpf, linux-kselftest, kunit-dev,
linux-kernel, Dave Hansen, Andy Lutomirski, Peter Zijlstra,
Thomas Gleixner, Ingo Molnar, Borislav Petkov, H. Peter Anvin,
Jani Nikula, Joonas Lahtinen, Rodrigo Vivi, Tvrtko Ursulin,
David Airlie, Daniel Vetter, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, Hans Verkuil, Mauro Carvalho Chehab,
Miquel Raynal, Richard Weinberger, Vignesh Raghavendra,
Eric Biggers, Theodore Y. Ts'o, Jaegeuk Kim, Linus Torvalds,
Hannes Reinecke, James E.J. Bottomley, Martin K. Petersen,
Alexei Starovoitov, Daniel Borkmann, John Fastabend,
Andrii Nakryiko, Martin KaFai Lau, Eduard Zingerman, Song Liu,
Yonghong Song, KP Singh, Stanislav Fomichev, Hao Luo, Jiri Olsa,
Andrew Morton, Brendan Higgins, David Gow, Rae Moar,
David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
Jiri Pirko, Petr Mladek, Steven Rostedt, Andy Shevchenko,
Rasmus Villemoes, Sergey Senozhatsky, Stephen Hemminger,
Jamal Hadi Salim, Cong Wang, Kent Overstreet
Hi Uros,
Per your plan, I took this into random.git, and we'll now see if being
in next unearths some problems over the next week or two.
Jason
^ permalink raw reply [flat|nested] 27+ messages in thread* ✗ Fi.CI.CHECKPATCH: warning for random: Resolve circular include dependency and include <linux/percpu.h> (rev3)
2024-09-30 12:33 [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h> Uros Bizjak
` (19 preceding siblings ...)
2024-09-30 13:25 ` [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h> Jason A. Donenfeld
@ 2024-10-01 14:35 ` Patchwork
2024-10-01 14:35 ` ✗ Fi.CI.SPARSE: " Patchwork
` (2 subsequent siblings)
23 siblings, 0 replies; 27+ messages in thread
From: Patchwork @ 2024-10-01 14:35 UTC (permalink / raw)
To: Uros Bizjak; +Cc: intel-gfx
== Series Details ==
Series: random: Resolve circular include dependency and include <linux/percpu.h> (rev3)
URL : https://patchwork.freedesktop.org/series/138406/
State : warning
== Summary ==
Error: dim checkpatch failed
e57f6165b8c7 x86/kaslr: Include <linux/prandom.h> instead of <linux/random.h>
3237876156b0 crypto: testmgr: Include <linux/prandom.h> instead of <linux/random.h>
185460ac514c drm/i915/selftests: Include <linux/prandom.h> instead of <linux/random.h>
9ce76e078695 drm/lib: Include <linux/prandom.h> instead of <linux/random.h>
1afda8c1ebf4 media: vivid: Include <linux/prandom.h> in vivid-vid-cap.c
38c36e7a4789 mtd: tests: Include <linux/prandom.h> instead of <linux/random.h>
0882ce108f3c fscrypt: Include <linux/once.h> in fs/crypto/keyring.c
63619fd546a3 scsi: libfcoe: Include <linux/prandom.h> instead of <linux/random.h>
e5b2e5556e7e bpf: Include <linux/prandom.h> instead of <linux/random.h>
03dc0616833b lib/interval_tree_test.c: Include <linux/prandom.h> instead of <linux/random.h>
ba0d2becb551 kunit: string-stream-test: Include <linux/prandom.h>
ef36306dff9e random32: Include <linux/prandom.h> instead of <linux/random.h>
6b0c4d72fd56 lib/rbtree-test: Include <linux/prandom.h> instead of <linux/random.h>
7c60efe55d03 bpf/tests: Include <linux/prandom.h> instead of <linux/random.h>
53c0e1c923ec lib/test_parman: Include <linux/prandom.h> instead of <linux/random.h>
a8010d7cf06e lib/test_scanf: Include <linux/prandom.h> instead of <linux/random.h>
3e30a428e452 netem: Include <linux/prandom.h> in sch_netem.c
e7b1ae03093a random: Do not include <linux/prandom.h> in <linux/random.h>
ddb345b11876 prandom: Include <linux/percpu.h> in <linux/prandom.h>
-:7: ERROR:GIT_COMMIT_ID: Please use git commit description style 'commit <12+ chars of sha1> ("<title line>")' - ie: 'commit d9f29deb7fe8 ("prandom: Remove unused include")'
#7:
in d9f29deb7fe8 ("prandom: Remove unused include") because
-:21: ERROR:GIT_COMMIT_ID: Please use git commit description style 'commit <12+ chars of sha1> ("<title line>")' - ie: 'commit d9f29deb7fe8 ("prandom: Remove unused include")'
#21:
This patch is basically a revert of d9f29deb7fe8
total: 2 errors, 0 warnings, 0 checks, 7 lines checked
^ permalink raw reply [flat|nested] 27+ messages in thread* ✗ Fi.CI.SPARSE: warning for random: Resolve circular include dependency and include <linux/percpu.h> (rev3)
2024-09-30 12:33 [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h> Uros Bizjak
` (20 preceding siblings ...)
2024-10-01 14:35 ` ✗ Fi.CI.CHECKPATCH: warning for random: Resolve circular include dependency and include <linux/percpu.h> (rev3) Patchwork
@ 2024-10-01 14:35 ` Patchwork
2024-10-01 14:44 ` ✓ Fi.CI.BAT: success " Patchwork
2024-10-02 9:40 ` ✗ Fi.CI.IGT: failure " Patchwork
23 siblings, 0 replies; 27+ messages in thread
From: Patchwork @ 2024-10-01 14:35 UTC (permalink / raw)
To: Uros Bizjak; +Cc: intel-gfx
== Series Details ==
Series: random: Resolve circular include dependency and include <linux/percpu.h> (rev3)
URL : https://patchwork.freedesktop.org/series/138406/
State : warning
== Summary ==
Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.
^ permalink raw reply [flat|nested] 27+ messages in thread* ✓ Fi.CI.BAT: success for random: Resolve circular include dependency and include <linux/percpu.h> (rev3)
2024-09-30 12:33 [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h> Uros Bizjak
` (21 preceding siblings ...)
2024-10-01 14:35 ` ✗ Fi.CI.SPARSE: " Patchwork
@ 2024-10-01 14:44 ` Patchwork
2024-10-02 9:40 ` ✗ Fi.CI.IGT: failure " Patchwork
23 siblings, 0 replies; 27+ messages in thread
From: Patchwork @ 2024-10-01 14:44 UTC (permalink / raw)
To: Uros Bizjak; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 7563 bytes --]
== Series Details ==
Series: random: Resolve circular include dependency and include <linux/percpu.h> (rev3)
URL : https://patchwork.freedesktop.org/series/138406/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15465 -> Patchwork_138406v3
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/index.html
Participating hosts (43 -> 42)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_138406v3 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_mmap@basic:
- bat-dg2-14: NOTRUN -> [SKIP][1] ([i915#4083])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/bat-dg2-14/igt@gem_mmap@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-14: NOTRUN -> [SKIP][2] ([i915#4079]) +1 other test skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/bat-dg2-14/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-dg2-14: NOTRUN -> [SKIP][3] ([i915#4077]) +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/bat-dg2-14/igt@gem_tiled_fence_blits@basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-14: NOTRUN -> [SKIP][4] ([i915#11681] / [i915#6621])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/bat-dg2-14/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][5] -> [ABORT][6] ([i915#12216]) +1 other test abort
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/bat-mtlp-8/igt@i915_selftest@live.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/bat-mtlp-8/igt@i915_selftest@live.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-14: NOTRUN -> [SKIP][7] ([i915#5190])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/bat-dg2-14/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-14: NOTRUN -> [SKIP][8] ([i915#4215] / [i915#5190])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/bat-dg2-14/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- bat-dg2-14: NOTRUN -> [SKIP][9] ([i915#4212]) +7 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/bat-dg2-14/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg2-14: NOTRUN -> [SKIP][10] ([i915#4103] / [i915#4213]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/bat-dg2-14/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-dg2-14: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#3840])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/bat-dg2-14/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-14: NOTRUN -> [SKIP][12]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/bat-dg2-14/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-14: NOTRUN -> [SKIP][13] ([i915#5274])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/bat-dg2-14/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg2-14: NOTRUN -> [SKIP][14] ([i915#5354])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/bat-dg2-14/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-sprite-plane-onoff:
- bat-dg2-14: NOTRUN -> [SKIP][15] ([i915#1072] / [i915#9732]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/bat-dg2-14/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-14: NOTRUN -> [SKIP][16] ([i915#3555])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/bat-dg2-14/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-14: NOTRUN -> [SKIP][17] ([i915#3708])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/bat-dg2-14/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-gtt:
- bat-dg2-14: NOTRUN -> [SKIP][18] ([i915#3708] / [i915#4077]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/bat-dg2-14/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@basic-write:
- bat-dg2-14: NOTRUN -> [SKIP][19] ([i915#3291] / [i915#3708]) +2 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/bat-dg2-14/igt@prime_vgem@basic-write.html
#### Warnings ####
* igt@i915_module_load@reload:
- bat-arls-5: [DMESG-WARN][20] ([i915#11637] / [i915#1982]) -> [DMESG-WARN][21] ([i915#11637])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/bat-arls-5/igt@i915_module_load@reload.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/bat-arls-5/igt@i915_module_load@reload.html
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11637
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* Linux: CI_DRM_15465 -> Patchwork_138406v3
CI-20190529: 20190529
CI_DRM_15465: f3f61bfc1cddded910b3916aa2c576a14bf62f71 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8047: 2a1ef45992ee7569d9fc37be875fa78ce3aa5ab8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_138406v3: f3f61bfc1cddded910b3916aa2c576a14bf62f71 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/index.html
[-- Attachment #2: Type: text/html, Size: 9072 bytes --]
^ permalink raw reply [flat|nested] 27+ messages in thread* ✗ Fi.CI.IGT: failure for random: Resolve circular include dependency and include <linux/percpu.h> (rev3)
2024-09-30 12:33 [PATCH v3 00/19] random: Resolve circular include dependency and include <linux/percpu.h> Uros Bizjak
` (22 preceding siblings ...)
2024-10-01 14:44 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-10-02 9:40 ` Patchwork
23 siblings, 0 replies; 27+ messages in thread
From: Patchwork @ 2024-10-02 9:40 UTC (permalink / raw)
To: Uros Bizjak; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 99905 bytes --]
== Series Details ==
Series: random: Resolve circular include dependency and include <linux/percpu.h> (rev3)
URL : https://patchwork.freedesktop.org/series/138406/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15465_full -> Patchwork_138406v3_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_138406v3_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_138406v3_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 (8 -> 8)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_138406v3_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_atomic@plane-overlay-legacy@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [DMESG-WARN][1] +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-4/igt@kms_atomic@plane-overlay-legacy@pipe-a-edp-1.html
* igt@kms_flip@blocking-wf_vblank@b-hdmi-a3:
- shard-dg1: NOTRUN -> [FAIL][2] +1 other test fail
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg1-13/igt@kms_flip@blocking-wf_vblank@b-hdmi-a3.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@d-edp1:
- shard-mtlp: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-mtlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@d-edp1.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-1/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@d-edp1.html
* igt@kms_flip@modeset-vs-vblank-race-interruptible@a-hdmi-a1:
- shard-glk: [PASS][5] -> [FAIL][6] +1 other test fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-glk7/igt@kms_flip@modeset-vs-vblank-race-interruptible@a-hdmi-a1.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-glk2/igt@kms_flip@modeset-vs-vblank-race-interruptible@a-hdmi-a1.html
* igt@kms_joiner@basic-big-joiner:
- shard-mtlp: NOTRUN -> [SKIP][7] +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-4/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][8]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][9] +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-tglu: NOTRUN -> [SKIP][10]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_setmode@basic:
- shard-tglu: [PASS][11] -> [FAIL][12] +1 other test fail
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-tglu-7/igt@kms_setmode@basic.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-3/igt@kms_setmode@basic.html
* igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][13]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-glk2/igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-2.html
New tests
---------
New tests have been introduced between CI_DRM_15465_full and Patchwork_138406v3_full:
### New IGT tests (5) ###
* igt@gem_exec_fence:
- Statuses :
- Exec time: [None] s
* igt@kms_cursor_crc@cursor-rapid-movement-128x128@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.36] s
* igt@kms_lease@atomic-implicit-crtc@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_lease@atomic-implicit-crtc@pipe-b-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-b-hdmi-a-1:
- Statuses : 1 pass(s)
- Exec time: [0.50] s
Known issues
------------
Here are the changes found in Patchwork_138406v3_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@drm_fdinfo@virtual-busy-hang-all:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#8414])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@drm_fdinfo@virtual-busy-hang-all.html
* igt@gem_bad_reloc@negative-reloc:
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#3281]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@gem_bad_reloc@negative-reloc.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-tglu: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-4/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][17] -> [INCOMPLETE][18] ([i915#7297])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-11/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [ABORT][19] ([i915#9846])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_engines@invalid-engines:
- shard-rkl: NOTRUN -> [FAIL][20] ([i915#12027])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@gem_ctx_engines@invalid-engines.html
- shard-mtlp: [PASS][21] -> [FAIL][22] ([i915#12027])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-mtlp-2/igt@gem_ctx_engines@invalid-engines.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-5/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
- shard-snb: NOTRUN -> [SKIP][23] ([i915#1099]) +2 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-snb5/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@hog:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#4812])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@gem_exec_balancer@hog.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][27] -> [FAIL][28] ([i915#2846])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-rkl-3/igt@gem_exec_fair@basic-deadline.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-flow:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@gem_exec_fair@basic-flow.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-rkl: NOTRUN -> [FAIL][30] ([i915#2842]) +3 other tests fail
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-none-solo:
- shard-snb: NOTRUN -> [SKIP][31] +49 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-snb5/igt@gem_exec_fair@basic-none-solo.html
* igt@gem_exec_fair@basic-none@bcs0:
- shard-rkl: [PASS][32] -> [FAIL][33] ([i915#2842])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-rkl-2/igt@gem_exec_fair@basic-none@bcs0.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-2/igt@gem_exec_fair@basic-none@bcs0.html
* igt@gem_exec_fair@basic-pace-share:
- shard-tglu: [PASS][34] -> [FAIL][35] ([i915#2842]) +1 other test fail
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-tglu-6/igt@gem_exec_fair@basic-pace-share.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-2/igt@gem_exec_fair@basic-pace-share.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg1-13/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_reloc@basic-gtt:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3281]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@gem_exec_reloc@basic-gtt.html
* igt@gem_exec_reloc@basic-gtt-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#3281]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-6/igt@gem_exec_reloc@basic-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#3281]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg1-18/igt@gem_exec_reloc@basic-write-gtt-noreloc.html
* igt@gem_exec_suspend@basic-s0@smem:
- shard-dg2: [PASS][40] -> [INCOMPLETE][41] ([i915#11441]) +1 other test incomplete
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-8/igt@gem_exec_suspend@basic-s0@smem.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-6/igt@gem_exec_suspend@basic-s0@smem.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#4860])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-5/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
* igt@gem_lmem_swapping@heavy-random:
- shard-rkl: NOTRUN -> [SKIP][43] ([i915#4613])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][44] ([i915#4613]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-5/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_lmem_swapping@verify-random:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4613])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-4/igt@gem_lmem_swapping@verify-random.html
* igt@gem_madvise@dontneed-before-pwrite:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#3282]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@gem_madvise@dontneed-before-pwrite.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy-xy:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4077]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-8/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html
* igt@gem_mmap_gtt@hang-busy:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4077])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@gem_mmap_gtt@hang-busy.html
* igt@gem_mmap_wc@write-cpu-read-wc-unflushed:
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4083])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-8/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#3282]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@exhaustion:
- shard-snb: NOTRUN -> [WARN][51] ([i915#2658])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-snb5/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-self:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#3282]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg1-12/igt@gem_pwrite@basic-self.html
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#3282])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-6/igt@gem_pwrite@basic-self.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-tglu: NOTRUN -> [SKIP][54] ([i915#4270]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-7/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_render_copy@y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#8428]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-8/igt@gem_render_copy@y-tiled.html
* igt@gem_render_copy@y-tiled-ccs-to-linear:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#5190] / [i915#8428]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@gem_render_copy@y-tiled-ccs-to-linear.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#3297])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@gem_userptr_blits@unsync-unmap.html
* igt@gen9_exec_parse@bb-large:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#2527])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#2856]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-4/igt@gen9_exec_parse@bb-start-cmd.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [PASS][60] -> [ABORT][61] ([i915#9820])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg1-15/igt@i915_module_load@reload-with-fault-injection.html
- shard-tglu: NOTRUN -> [ABORT][62] ([i915#10887] / [i915#9820])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#6412])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-8/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#8399])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rps@engine-order:
- shard-glk: [PASS][65] -> [FAIL][66] ([i915#12308])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-glk6/igt@i915_pm_rps@engine-order.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-glk5/igt@i915_pm_rps@engine-order.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#11681] / [i915#6621])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-8/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#6188])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-4/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [PASS][69] -> [ABORT][70] ([i915#12216]) +1 other test abort
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-mtlp-3/igt@i915_selftest@live@workarounds.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-1/igt@i915_selftest@live@workarounds.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#1769] / [i915#3555])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-tglu: NOTRUN -> [SKIP][72] ([i915#5286]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-7/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#5286])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4538])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg1-12/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#5190] / [i915#9197])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#4538] / [i915#5190]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_busy@basic:
- shard-dg2: [PASS][77] -> [SKIP][78] ([i915#9197]) +32 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-6/igt@kms_busy@basic.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_busy@basic.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][79] ([i915#6095]) +19 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-7/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][80] ([i915#12313])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#12313])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-8/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#10307] / [i915#6095]) +135 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-8/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#6095]) +78 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#6095]) +115 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][86] ([i915#6095]) +9 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#7213]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#4087]) +4 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-8/igt@kms_cdclk@plane-scaling@pipe-c-edp-1.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#4087]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-8/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#7828]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-tglu: NOTRUN -> [SKIP][91] ([i915#7828]) +3 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-7/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#7828])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-8/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd-after-suspend:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#7828]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html
* igt@kms_content_protection@atomic:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#7118] / [i915#9424])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@content-type-change:
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#6944] / [i915#9424])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-6/igt@kms_content_protection@content-type-change.html
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#9424])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg1-12/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-mtlp: NOTRUN -> [SKIP][97] ([i915#3299])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-4/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#7118])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-tglu: NOTRUN -> [SKIP][99] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-7/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#7118] / [i915#9424])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][101] ([i915#11453])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#11453])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-tglu: NOTRUN -> [SKIP][103] ([i915#3555])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@cursor-vs-flip-legacy:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#9197]) +3 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-rkl: NOTRUN -> [SKIP][105] +5 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#5354]) +9 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#9809])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-dg1: NOTRUN -> [SKIP][108] +5 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg1-13/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [PASS][109] -> [FAIL][110] ([i915#2346])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#4103] / [i915#4213])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#9723])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#3555] / [i915#8827])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-4/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_feature_discovery@display-2x:
- shard-tglu: NOTRUN -> [SKIP][114] ([i915#1839])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-7/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#1839])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][116] ([i915#3637])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-5/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][117] +8 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#3637])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-8/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@blocking-wf_vblank:
- shard-glk: [PASS][119] -> [FAIL][120] ([i915#2122]) +8 other tests fail
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-glk2/igt@kms_flip@blocking-wf_vblank.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-glk5/igt@kms_flip@blocking-wf_vblank.html
- shard-rkl: [PASS][121] -> [FAIL][122] ([i915#11961] / [i915#2122])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-rkl-4/igt@kms_flip@blocking-wf_vblank.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-5/igt@kms_flip@blocking-wf_vblank.html
- shard-snb: [PASS][123] -> [FAIL][124] ([i915#10826] / [i915#2122])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-snb5/igt@kms_flip@blocking-wf_vblank.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-snb6/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank@a-vga1:
- shard-snb: [PASS][125] -> [FAIL][126] ([i915#10826])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-snb5/igt@kms_flip@blocking-wf_vblank@a-vga1.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-snb6/igt@kms_flip@blocking-wf_vblank@a-vga1.html
* igt@kms_flip@blocking-wf_vblank@b-hdmi-a2:
- shard-rkl: NOTRUN -> [FAIL][127] ([i915#12053])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-5/igt@kms_flip@blocking-wf_vblank@b-hdmi-a2.html
* igt@kms_flip@blocking-wf_vblank@b-vga1:
- shard-snb: [PASS][128] -> [FAIL][129] ([i915#2122]) +4 other tests fail
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-snb5/igt@kms_flip@blocking-wf_vblank@b-vga1.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-snb6/igt@kms_flip@blocking-wf_vblank@b-vga1.html
* igt@kms_flip@blocking-wf_vblank@d-hdmi-a3:
- shard-dg2: [PASS][130] -> [FAIL][131] ([i915#2122])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-7/igt@kms_flip@blocking-wf_vblank@d-hdmi-a3.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-5/igt@kms_flip@blocking-wf_vblank@d-hdmi-a3.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2:
- shard-rkl: NOTRUN -> [FAIL][132] ([i915#11961]) +2 other tests fail
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a2.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg1: NOTRUN -> [INCOMPLETE][133] ([i915#4839] / [i915#6113])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg1-12/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-mtlp: NOTRUN -> [INCOMPLETE][134] ([i915#6113]) +1 other test incomplete
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-8/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][135] ([i915#4839])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a2:
- shard-glk: [PASS][136] -> [INCOMPLETE][137] ([i915#4839])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-glk9/igt@kms_flip@flip-vs-suspend@b-hdmi-a2.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-glk8/igt@kms_flip@flip-vs-suspend@b-hdmi-a2.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a3:
- shard-dg1: NOTRUN -> [INCOMPLETE][138] ([i915#6113])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg1-12/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp3:
- shard-dg2: NOTRUN -> [FAIL][139] ([i915#2122]) +1 other test fail
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-10/igt@kms_flip@wf_vblank-ts-check-interruptible@a-dp3.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1:
- shard-tglu: [PASS][140] -> [FAIL][141] ([i915#2122]) +1 other test fail
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-tglu-2/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-5/igt@kms_flip@wf_vblank-ts-check-interruptible@b-hdmi-a1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@c-hdmi-a4:
- shard-dg1: [PASS][142] -> [FAIL][143] ([i915#2122]) +3 other tests fail
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg1-16/igt@kms_flip@wf_vblank-ts-check-interruptible@c-hdmi-a4.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg1-17/igt@kms_flip@wf_vblank-ts-check-interruptible@c-hdmi-a4.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@d-edp1:
- shard-mtlp: [PASS][144] -> [FAIL][145] ([i915#2122])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-mtlp-6/igt@kms_flip@wf_vblank-ts-check-interruptible@d-edp1.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-4/igt@kms_flip@wf_vblank-ts-check-interruptible@d-edp1.html
* igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1:
- shard-tglu: NOTRUN -> [FAIL][146] ([i915#2122]) +1 other test fail
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-5/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#2672] / [i915#3555])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#2672])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#2672] / [i915#3555])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#2587] / [i915#2672])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#2672])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#8708]) +1 other test skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-1p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt:
- shard-dg2: [PASS][153] -> [FAIL][154] ([i915#6880])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite:
- shard-dg2: [PASS][155] -> [SKIP][156] ([i915#5354]) +6 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#5439])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-5/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#3023]) +3 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#8708]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#3458]) +3 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#9766])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][162] +34 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#3458])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#8708]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-glk: NOTRUN -> [SKIP][165] +8 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-glk5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#1825]) +9 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#1825]) +10 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: [PASS][168] -> [SKIP][169] ([i915#3555] / [i915#8228])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-4/igt@kms_hdr@static-toggle-suspend.html
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#8228])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_invalid_mode@bad-vsync-start:
- shard-dg2: [PASS][171] -> [SKIP][172] ([i915#3555]) +2 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-5/igt@kms_invalid_mode@bad-vsync-start.html
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_invalid_mode@bad-vsync-start.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#6301])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@kms_panel_fitting@legacy.html
* igt@kms_plane@plane-panning-top-left:
- shard-dg2: [PASS][174] -> [SKIP][175] ([i915#8825])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-3/igt@kms_plane@plane-panning-top-left.html
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_plane@plane-panning-top-left.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#6953])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-8/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#12247] / [i915#9423])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#12247]) +3 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers:
- shard-dg2: [PASS][179] -> [SKIP][180] ([i915#8152] / [i915#9423]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d:
- shard-dg2: [PASS][181] -> [SKIP][182] ([i915#8152])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d.html
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#12247]) +4 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling:
- shard-dg2: [PASS][184] -> [SKIP][185] ([i915#12247] / [i915#8152] / [i915#9423])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling:
- shard-dg2: [PASS][186] -> [SKIP][187] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9423])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
- shard-dg2: [PASS][188] -> [SKIP][189] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d:
- shard-dg2: [PASS][190] -> [SKIP][191] ([i915#12247] / [i915#8152]) +3 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d.html
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-dg2: [PASS][192] -> [SKIP][193] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c:
- shard-dg2: [PASS][194] -> [SKIP][195] ([i915#12247]) +14 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c.html
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#12247] / [i915#6953])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#9685])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-7/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [PASS][198] -> [SKIP][199] ([i915#9519]) +3 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-pc8-residency-stress:
- shard-mtlp: NOTRUN -> [SKIP][200] +4 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-8/igt@kms_pm_rpm@modeset-pc8-residency-stress.html
* igt@kms_properties@crtc-properties-atomic:
- shard-dg2: [PASS][201] -> [SKIP][202] ([i915#11521])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-6/igt@kms_properties@crtc-properties-atomic.html
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_properties@crtc-properties-atomic.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][203] ([i915#11520]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#11520]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
- shard-snb: NOTRUN -> [SKIP][205] ([i915#11520]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-snb5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-mtlp: NOTRUN -> [SKIP][206] ([i915#12316])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-8/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#11520]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#11520])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg1-12/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr-sprite-blt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#9688]) +3 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-8/igt@kms_psr@fbc-psr-sprite-blt@edp-1.html
* igt@kms_psr@fbc-psr-sprite-plane-move:
- shard-tglu: NOTRUN -> [SKIP][210] ([i915#9732]) +5 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-7/igt@kms_psr@fbc-psr-sprite-plane-move.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#1072] / [i915#9732]) +4 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr2-primary-blt:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#1072] / [i915#9732]) +4 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@kms_psr@psr2-primary-blt.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#5190])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_setmode@basic:
- shard-dg2: [PASS][214] -> [FAIL][215] ([i915#5465])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-10/igt@kms_setmode@basic.html
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-4/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-a-hdmi-a-1:
- shard-dg2: NOTRUN -> [FAIL][216] ([i915#5465]) +1 other test fail
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-4/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html
* igt@kms_setmode@basic@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][217] ([i915#12317]) +1 other test fail
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#3555])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_vblank@wait-forked:
- shard-dg1: [PASS][219] -> [DMESG-WARN][220] ([i915#4423]) +1 other test dmesg-warn
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg1-19/igt@kms_vblank@wait-forked.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg1-19/igt@kms_vblank@wait-forked.html
* igt@kms_vrr@lobf:
- shard-tglu: NOTRUN -> [SKIP][221] ([i915#11920])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-7/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#8808] / [i915#9906])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-4/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-tglu: NOTRUN -> [SKIP][223] ([i915#2437] / [i915#9412])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-7/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][224] ([i915#2433])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-7/igt@perf@unprivileged-single-ctx-counters.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#9917])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg1-18/igt@sriov_basic@enable-vfs-bind-unbind-each.html
#### Possible fixes ####
* igt@gem_ctx_engines@invalid-engines:
- shard-glk: [FAIL][226] ([i915#12027]) -> [PASS][227]
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-glk8/igt@gem_ctx_engines@invalid-engines.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-glk9/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][228] ([i915#5784]) -> [PASS][229]
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg1-15/igt@gem_eio@unwedge-stress.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg1-17/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: [FAIL][230] ([i915#2842]) -> [PASS][231]
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-rkl-2/igt@gem_exec_fair@basic-pace@vecs0.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-3/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [ABORT][232] ([i915#9820]) -> [PASS][233]
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [INCOMPLETE][234] -> [PASS][235] +2 other tests pass
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-3/igt@i915_pm_freq_api@freq-suspend@gt0.html
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: [FAIL][236] ([i915#3591]) -> [PASS][237] +1 other test pass
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs:
- shard-dg2: [SKIP][238] ([i915#9197]) -> [PASS][239] +13 other tests pass
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-11/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-snb: [SKIP][240] -> [PASS][241] +3 other tests pass
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-snb5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: [SKIP][242] ([i915#3555]) -> [PASS][243] +2 other tests pass
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-dg2: [SKIP][244] ([i915#1849]) -> [PASS][245]
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-2/igt@kms_fbcon_fbt@fbc-suspend.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-11/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-dg2: [FAIL][246] ([i915#2122]) -> [PASS][247] +1 other test pass
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1:
- shard-tglu: [FAIL][248] ([i915#2122]) -> [PASS][249] +3 other tests pass
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-tglu-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-tglu-7/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1:
- shard-glk: [INCOMPLETE][250] ([i915#4839]) -> [PASS][251]
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-glk3/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-glk9/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-snb: [INCOMPLETE][252] ([i915#4839]) -> [PASS][253] +1 other test pass
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-snb6/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-snb1/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-mtlp: [FAIL][254] ([i915#11989] / [i915#2122]) -> [PASS][255] +1 other test pass
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-mtlp-5/igt@kms_flip@plain-flip-ts-check-interruptible.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-6/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1:
- shard-mtlp: [FAIL][256] ([i915#2122]) -> [PASS][257] +5 other tests pass
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-mtlp-6/igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-4/igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a2:
- shard-glk: [FAIL][258] ([i915#2122]) -> [PASS][259] +1 other test pass
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-glk3/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a2.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-glk9/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a2.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1:
- shard-snb: [FAIL][260] ([i915#2122]) -> [PASS][261] +4 other tests pass
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-snb5/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-snb2/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-dg2: [FAIL][262] ([i915#6880]) -> [PASS][263]
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][264] ([i915#5354]) -> [PASS][265] +5 other tests pass
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
* igt@kms_plane@pixel-format:
- shard-dg2: [SKIP][266] ([i915#8825]) -> [PASS][267]
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-2/igt@kms_plane@pixel-format.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-11/igt@kms_plane@pixel-format.html
* igt@kms_plane_alpha_blend@alpha-7efc:
- shard-dg2: [SKIP][268] ([i915#7294]) -> [PASS][269] +1 other test pass
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-7efc.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-11/igt@kms_plane_alpha_blend@alpha-7efc.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats:
- shard-dg2: [SKIP][270] ([i915#3555] / [i915#8152] / [i915#9423]) -> [PASS][271]
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d:
- shard-dg2: [SKIP][272] ([i915#8152]) -> [PASS][273]
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-dg2: [SKIP][274] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][275]
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a:
- shard-dg2: [SKIP][276] ([i915#12247]) -> [PASS][277] +5 other tests pass
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d:
- shard-dg2: [SKIP][278] ([i915#12247] / [i915#8152]) -> [PASS][279]
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [SKIP][280] ([i915#9340]) -> [PASS][281]
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-7/igt@kms_pm_lpsp@kms-lpsp.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
- shard-rkl: [SKIP][282] ([i915#9340]) -> [PASS][283]
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [SKIP][284] ([i915#9519]) -> [PASS][285]
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][286] ([i915#9519]) -> [PASS][287] +1 other test pass
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_psr@psr-suspend@edp-1:
- shard-mtlp: [FAIL][288] -> [PASS][289] +1 other test pass
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-mtlp-3/igt@kms_psr@psr-suspend@edp-1.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-7/igt@kms_psr@psr-suspend@edp-1.html
* igt@kms_setmode@basic:
- shard-dg1: [FAIL][290] ([i915#5465]) -> [PASS][291]
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg1-17/igt@kms_setmode@basic.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg1-13/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-mtlp: [FAIL][292] ([i915#5465]) -> [PASS][293] +2 other tests pass
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-mtlp-2/igt@kms_setmode@basic@pipe-b-edp-1.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-5/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_setmode@basic@pipe-b-hdmi-a-1:
- shard-glk: [FAIL][294] ([i915#5465]) -> [PASS][295] +2 other tests pass
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-glk8/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-glk9/igt@kms_setmode@basic@pipe-b-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-dg1: [DMESG-WARN][296] ([i915#4423]) -> [PASS][297] +3 other tests pass
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg1-14/igt@kms_universal_plane@cursor-fb-leak.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg1-12/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-1:
- shard-glk: [INCOMPLETE][298] -> [PASS][299]
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-glk7/igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-1.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-glk2/igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-1.html
#### Warnings ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][300] ([i915#10131] / [i915#10887] / [i915#9697]) -> [ABORT][301] ([i915#10131] / [i915#10887] / [i915#9820])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: [SKIP][302] ([i915#7091]) -> [SKIP][303] ([i915#9197])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-3/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_selftest@mock:
- shard-dg2: [DMESG-WARN][304] ([i915#1982] / [i915#9311]) -> [DMESG-WARN][305] ([i915#9311])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-5/igt@i915_selftest@mock.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@i915_selftest@mock.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-dg2: [SKIP][306] -> [SKIP][307] ([i915#9197]) +2 other tests skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-6/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg1: [SKIP][308] ([i915#4423] / [i915#4538] / [i915#5286]) -> [SKIP][309] ([i915#4538] / [i915#5286])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-270:
- shard-dg2: [SKIP][310] ([i915#5190] / [i915#9197]) -> [SKIP][311] ([i915#4538] / [i915#5190]) +4 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-2/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-7/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-180:
- shard-dg2: [SKIP][312] ([i915#4538] / [i915#5190]) -> [SKIP][313] ([i915#5190] / [i915#9197]) +6 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc:
- shard-dg2: [SKIP][314] ([i915#9197]) -> [SKIP][315] ([i915#10307] / [i915#6095]) +3 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-7/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: [SKIP][316] ([i915#4423] / [i915#6095]) -> [SKIP][317] ([i915#6095]) +1 other test skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg1-15/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-4.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg1-17/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc:
- shard-dg2: [SKIP][318] ([i915#10307] / [i915#6095]) -> [SKIP][319] ([i915#9197]) +10 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_content_protection@atomic:
- shard-dg2: [TIMEOUT][320] ([i915#7173]) -> [SKIP][321] ([i915#7118] / [i915#9424])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-10/igt@kms_content_protection@atomic.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-4/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@content-type-change:
- shard-dg2: [SKIP][322] ([i915#9424]) -> [SKIP][323] ([i915#9197])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-5/igt@kms_content_protection@content-type-change.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: [SKIP][324] ([i915#3299]) -> [SKIP][325] ([i915#9197]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-1.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][326] ([i915#9424]) -> [SKIP][327] ([i915#9433])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg1-15/igt@kms_content_protection@mei-interface.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg1-13/igt@kms_content_protection@mei-interface.html
- shard-snb: [SKIP][328] -> [INCOMPLETE][329] ([i915#9878])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-snb5/igt@kms_content_protection@mei-interface.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-snb6/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-dg2: [TIMEOUT][330] ([i915#7173]) -> [SKIP][331] ([i915#7118])
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-10/igt@kms_content_protection@srm.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-4/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2: [SKIP][332] ([i915#9197]) -> [SKIP][333] ([i915#11453]) +1 other test skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: [SKIP][334] ([i915#3555]) -> [SKIP][335] ([i915#9197]) +3 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-5/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-dg2: [SKIP][336] ([i915#5354]) -> [SKIP][337] ([i915#9197])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-dg2: [SKIP][338] ([i915#9197]) -> [SKIP][339] ([i915#5354]) +1 other test skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: [SKIP][340] ([i915#4103] / [i915#4213]) -> [SKIP][341] ([i915#9197])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: [SKIP][342] ([i915#9197]) -> [SKIP][343] ([i915#4103] / [i915#4213])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: [SKIP][344] ([i915#9197]) -> [SKIP][345] ([i915#3555] / [i915#3840])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-2/igt@kms_dsc@dsc-with-bpc-formats.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-7/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: [SKIP][346] ([i915#3555] / [i915#3840]) -> [SKIP][347] ([i915#9197])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-6/igt@kms_dsc@dsc-with-output-formats.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-dg1: [SKIP][348] ([i915#9934]) -> [SKIP][349] ([i915#4423] / [i915#9934])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg1-13/igt@kms_flip@2x-dpms-vs-vblank-race.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg1-18/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2: [SKIP][350] ([i915#2672] / [i915#3555]) -> [SKIP][351] ([i915#3555]) +1 other test skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2: [SKIP][352] ([i915#3555] / [i915#5190]) -> [SKIP][353] ([i915#2672] / [i915#3555] / [i915#5190])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-dg2: [SKIP][354] ([i915#2672] / [i915#3555] / [i915#5190]) -> [SKIP][355] ([i915#3555] / [i915#5190]) +1 other test skip
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render:
- shard-dg2: [SKIP][356] ([i915#3458]) -> [SKIP][357] ([i915#5354]) +7 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: [SKIP][358] ([i915#5354]) -> [SKIP][359] ([i915#8708]) +6 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: [SKIP][360] ([i915#8708]) -> [SKIP][361] ([i915#5354]) +17 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: [SKIP][362] ([i915#10055]) -> [SKIP][363] ([i915#5354])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt:
- shard-dg2: [SKIP][364] ([i915#5354]) -> [SKIP][365] ([i915#3458]) +4 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu:
- shard-dg2: [SKIP][366] ([i915#3458]) -> [SKIP][367] ([i915#10433] / [i915#3458]) +2 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2: [SKIP][368] ([i915#10433] / [i915#3458]) -> [SKIP][369] ([i915#3458]) +2 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-slowdraw.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2: [SKIP][370] ([i915#9197]) -> [SKIP][371] ([i915#3555] / [i915#8228])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-2/igt@kms_hdr@invalid-hdr.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-7/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: [SKIP][372] ([i915#3555] / [i915#8228]) -> [SKIP][373] ([i915#9197]) +1 other test skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-3/igt@kms_hdr@invalid-metadata-sizes.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][374] ([i915#4070] / [i915#4816]) -> [SKIP][375] ([i915#4816])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: [SKIP][376] ([i915#3555] / [i915#8821]) -> [SKIP][377] ([i915#9197])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-6/igt@kms_plane_lowres@tiling-yf.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: [SKIP][378] ([i915#9197]) -> [SKIP][379] ([i915#8806])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-2/igt@kms_plane_multiple@tiling-y.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-7/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: [FAIL][380] ([i915#8292]) -> [SKIP][381] ([i915#6953] / [i915#9423])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-8/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: [SKIP][382] ([i915#9197]) -> [SKIP][383] ([i915#4235])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-2/igt@kms_rotation_crc@exhaust-fences.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-7/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: [SKIP][384] ([i915#11131] / [i915#5190]) -> [SKIP][385] ([i915#5190] / [i915#9197])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: [SKIP][386] ([i915#9197]) -> [SKIP][387] ([i915#11131])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-7/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2: [SKIP][388] ([i915#9197]) -> [SKIP][389] ([i915#8623])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: [SKIP][390] ([i915#9197]) -> [SKIP][391] ([i915#9906])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15465/shard-dg2-2/igt@kms_vrr@seamless-rr-switch-vrr.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/shard-dg2-7/igt@kms_vrr@seamless-rr-switch-vrr.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131
[i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441
[i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11521]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11961]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11961
[i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989
[i915#12027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12027
[i915#12053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12053
[i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12308]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12308
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12317]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12317
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3558]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3558
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3966]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3966
[i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7091]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7091
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294
[i915#7297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825
[i915#8827]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8827
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9697
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9846
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* Linux: CI_DRM_15465 -> Patchwork_138406v3
CI-20190529: 20190529
CI_DRM_15465: f3f61bfc1cddded910b3916aa2c576a14bf62f71 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8047: 2a1ef45992ee7569d9fc37be875fa78ce3aa5ab8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_138406v3: f3f61bfc1cddded910b3916aa2c576a14bf62f71 @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138406v3/index.html
[-- Attachment #2: Type: text/html, Size: 124794 bytes --]
^ permalink raw reply [flat|nested] 27+ messages in thread