* [PATCH 0/3] Fixed-type GENMASK/BIT
@ 2024-01-24 5:02 Lucas De Marchi
2024-01-24 5:02 ` [PATCH 1/3] bits: introduce fixed-type genmasks Lucas De Marchi
` (6 more replies)
0 siblings, 7 replies; 17+ messages in thread
From: Lucas De Marchi @ 2024-01-24 5:02 UTC (permalink / raw)
To: Yury Norov
Cc: intel-gfx, Lucas De Marchi, linux-kernel, dri-devel,
Andy Shevchenko, intel-xe
Move the implementation of REG_GENMASK/REG_BIT to a more appropriate
place to be shared by i915, xe and possibly other parts of the kernel.
For now this re-defines the old macros. In future we may start using the
new macros directly, but that's a more intrusive search-and-replace.
Yury, I added a little bit more information to the commit message in
patch 1. First 2 patches may go through your tree. For the last one we
may have potential conflicts, so I'm not sure. +Jani from i915 side to
chime in.
v1: https://lore.kernel.org/intel-xe/20230509051403.2748545-1-lucas.demarchi@intel.com/
Lucas De Marchi (2):
bits: Introduce fixed-type BIT
drm/i915: Convert REG_GENMASK* to fixed-width GENMASK_*
Yury Norov (1):
bits: introduce fixed-type genmasks
drivers/gpu/drm/i915/i915_reg_defs.h | 108 +++------------------------
include/linux/bitops.h | 1 -
include/linux/bits.h | 33 +++++---
3 files changed, 33 insertions(+), 109 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH 1/3] bits: introduce fixed-type genmasks
2024-01-24 5:02 [PATCH 0/3] Fixed-type GENMASK/BIT Lucas De Marchi
@ 2024-01-24 5:02 ` Lucas De Marchi
2024-01-24 7:58 ` Jani Nikula
2024-01-24 5:02 ` [PATCH 2/3] bits: Introduce fixed-type BIT Lucas De Marchi
` (5 subsequent siblings)
6 siblings, 1 reply; 17+ messages in thread
From: Lucas De Marchi @ 2024-01-24 5:02 UTC (permalink / raw)
To: Yury Norov; +Cc: intel-gfx, linux-kernel, dri-devel, Andy Shevchenko, intel-xe
From: Yury Norov <yury.norov@gmail.com>
Generalize __GENMASK() to support different types, and implement
fixed-types versions of GENMASK() based on it. The fixed-type version
allows more strict checks to the min/max values accepted, which is
useful for defining registers like implemented by i915 and xe drivers
with their REG_GENMASK*() macros.
Signed-off-by: Yury Norov <yury.norov@gmail.com>
---
include/linux/bitops.h | 1 -
include/linux/bits.h | 22 ++++++++++++----------
2 files changed, 12 insertions(+), 11 deletions(-)
diff --git a/include/linux/bitops.h b/include/linux/bitops.h
index 2ba557e067fe..1db50c69cfdb 100644
--- a/include/linux/bitops.h
+++ b/include/linux/bitops.h
@@ -15,7 +15,6 @@
# define aligned_byte_mask(n) (~0xffUL << (BITS_PER_LONG - 8 - 8*(n)))
#endif
-#define BITS_PER_TYPE(type) (sizeof(type) * BITS_PER_BYTE)
#define BITS_TO_LONGS(nr) __KERNEL_DIV_ROUND_UP(nr, BITS_PER_TYPE(long))
#define BITS_TO_U64(nr) __KERNEL_DIV_ROUND_UP(nr, BITS_PER_TYPE(u64))
#define BITS_TO_U32(nr) __KERNEL_DIV_ROUND_UP(nr, BITS_PER_TYPE(u32))
diff --git a/include/linux/bits.h b/include/linux/bits.h
index 7c0cf5031abe..cb94128171b2 100644
--- a/include/linux/bits.h
+++ b/include/linux/bits.h
@@ -6,6 +6,8 @@
#include <vdso/bits.h>
#include <asm/bitsperlong.h>
+#define BITS_PER_TYPE(type) (sizeof(type) * BITS_PER_BYTE)
+
#define BIT_MASK(nr) (UL(1) << ((nr) % BITS_PER_LONG))
#define BIT_WORD(nr) ((nr) / BITS_PER_LONG)
#define BIT_ULL_MASK(nr) (ULL(1) << ((nr) % BITS_PER_LONG_LONG))
@@ -30,16 +32,16 @@
#define GENMASK_INPUT_CHECK(h, l) 0
#endif
-#define __GENMASK(h, l) \
- (((~UL(0)) - (UL(1) << (l)) + 1) & \
- (~UL(0) >> (BITS_PER_LONG - 1 - (h))))
-#define GENMASK(h, l) \
- (GENMASK_INPUT_CHECK(h, l) + __GENMASK(h, l))
+#define __GENMASK(t, h, l) \
+ (GENMASK_INPUT_CHECK(h, l) + \
+ (((t)~0ULL - ((t)(1) << (l)) + 1) & \
+ ((t)~0ULL >> (BITS_PER_TYPE(t) - 1 - (h)))))
-#define __GENMASK_ULL(h, l) \
- (((~ULL(0)) - (ULL(1) << (l)) + 1) & \
- (~ULL(0) >> (BITS_PER_LONG_LONG - 1 - (h))))
-#define GENMASK_ULL(h, l) \
- (GENMASK_INPUT_CHECK(h, l) + __GENMASK_ULL(h, l))
+#define GENMASK(h, l) __GENMASK(unsigned long, h, l)
+#define GENMASK_ULL(h, l) __GENMASK(unsigned long long, h, l)
+#define GENMASK_U8(h, l) __GENMASK(u8, h, l)
+#define GENMASK_U16(h, l) __GENMASK(u16, h, l)
+#define GENMASK_U32(h, l) __GENMASK(u32, h, l)
+#define GENMASK_U64(h, l) __GENMASK(u64, h, l)
#endif /* __LINUX_BITS_H */
--
2.43.0
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [PATCH 2/3] bits: Introduce fixed-type BIT
2024-01-24 5:02 [PATCH 0/3] Fixed-type GENMASK/BIT Lucas De Marchi
2024-01-24 5:02 ` [PATCH 1/3] bits: introduce fixed-type genmasks Lucas De Marchi
@ 2024-01-24 5:02 ` Lucas De Marchi
2024-02-09 16:48 ` Yury Norov
2024-01-24 5:02 ` [PATCH 3/3] drm/i915: Convert REG_GENMASK* to fixed-width GENMASK_* Lucas De Marchi
` (4 subsequent siblings)
6 siblings, 1 reply; 17+ messages in thread
From: Lucas De Marchi @ 2024-01-24 5:02 UTC (permalink / raw)
To: Yury Norov
Cc: intel-gfx, Lucas De Marchi, linux-kernel, dri-devel,
Andy Shevchenko, intel-xe
Implement fixed-type BIT() to help drivers add stricter checks, like was
done for GENMASK.
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
include/linux/bits.h | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/include/linux/bits.h b/include/linux/bits.h
index cb94128171b2..5754a1251078 100644
--- a/include/linux/bits.h
+++ b/include/linux/bits.h
@@ -24,12 +24,16 @@
#define GENMASK_INPUT_CHECK(h, l) \
(BUILD_BUG_ON_ZERO(__builtin_choose_expr( \
__is_constexpr((l) > (h)), (l) > (h), 0)))
+#define BIT_INPUT_CHECK(type, b) \
+ ((BUILD_BUG_ON_ZERO(__builtin_choose_expr( \
+ __is_constexpr(b), (b) >= BITS_PER_TYPE(type), 0))))
#else
/*
* BUILD_BUG_ON_ZERO is not available in h files included from asm files,
* disable the input check if that is the case.
*/
#define GENMASK_INPUT_CHECK(h, l) 0
+#define BIT_INPUT_CHECK(type, b) 0
#endif
#define __GENMASK(t, h, l) \
@@ -44,4 +48,9 @@
#define GENMASK_U32(h, l) __GENMASK(u32, h, l)
#define GENMASK_U64(h, l) __GENMASK(u64, h, l)
+#define BIT_U8(b) ((u8)(BIT_INPUT_CHECK(u8, b) + BIT(b)))
+#define BIT_U16(b) ((u16)(BIT_INPUT_CHECK(u16, b) + BIT(b)))
+#define BIT_U32(b) ((u32)(BIT_INPUT_CHECK(u32, b) + BIT(b)))
+#define BIT_U64(b) ((u64)(BIT_INPUT_CHECK(u64, b) + BIT(b)))
+
#endif /* __LINUX_BITS_H */
--
2.43.0
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [PATCH 3/3] drm/i915: Convert REG_GENMASK* to fixed-width GENMASK_*
2024-01-24 5:02 [PATCH 0/3] Fixed-type GENMASK/BIT Lucas De Marchi
2024-01-24 5:02 ` [PATCH 1/3] bits: introduce fixed-type genmasks Lucas De Marchi
2024-01-24 5:02 ` [PATCH 2/3] bits: Introduce fixed-type BIT Lucas De Marchi
@ 2024-01-24 5:02 ` Lucas De Marchi
2024-01-24 8:04 ` Jani Nikula
2024-01-24 6:15 ` ✗ Fi.CI.CHECKPATCH: warning for Fixed-type GENMASK/BIT Patchwork
` (3 subsequent siblings)
6 siblings, 1 reply; 17+ messages in thread
From: Lucas De Marchi @ 2024-01-24 5:02 UTC (permalink / raw)
To: Yury Norov
Cc: intel-gfx, Lucas De Marchi, linux-kernel, dri-devel,
Andy Shevchenko, intel-xe
Now that include/linux/bits.h implements fixed-width GENMASK_*, use them
to implement the i915/xe specific macros. Converting each driver to use
the generic macros are left for later, when/if other driver-specific
macros are also generalized.
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
drivers/gpu/drm/i915/i915_reg_defs.h | 108 +++------------------------
1 file changed, 11 insertions(+), 97 deletions(-)
diff --git a/drivers/gpu/drm/i915/i915_reg_defs.h b/drivers/gpu/drm/i915/i915_reg_defs.h
index a685db1e815d..52f99eb96f86 100644
--- a/drivers/gpu/drm/i915/i915_reg_defs.h
+++ b/drivers/gpu/drm/i915/i915_reg_defs.h
@@ -9,76 +9,19 @@
#include <linux/bitfield.h>
#include <linux/bits.h>
-/**
- * REG_BIT() - Prepare a u32 bit value
- * @__n: 0-based bit number
- *
- * Local wrapper for BIT() to force u32, with compile time checks.
- *
- * @return: Value with bit @__n set.
- */
-#define REG_BIT(__n) \
- ((u32)(BIT(__n) + \
- BUILD_BUG_ON_ZERO(__is_constexpr(__n) && \
- ((__n) < 0 || (__n) > 31))))
-
-/**
- * REG_BIT8() - Prepare a u8 bit value
- * @__n: 0-based bit number
- *
- * Local wrapper for BIT() to force u8, with compile time checks.
- *
- * @return: Value with bit @__n set.
- */
-#define REG_BIT8(__n) \
- ((u8)(BIT(__n) + \
- BUILD_BUG_ON_ZERO(__is_constexpr(__n) && \
- ((__n) < 0 || (__n) > 7))))
-
-/**
- * REG_GENMASK() - Prepare a continuous u32 bitmask
- * @__high: 0-based high bit
- * @__low: 0-based low bit
- *
- * Local wrapper for GENMASK() to force u32, with compile time checks.
- *
- * @return: Continuous bitmask from @__high to @__low, inclusive.
- */
-#define REG_GENMASK(__high, __low) \
- ((u32)(GENMASK(__high, __low) + \
- BUILD_BUG_ON_ZERO(__is_constexpr(__high) && \
- __is_constexpr(__low) && \
- ((__low) < 0 || (__high) > 31 || (__low) > (__high)))))
-
-/**
- * REG_GENMASK64() - Prepare a continuous u64 bitmask
- * @__high: 0-based high bit
- * @__low: 0-based low bit
- *
- * Local wrapper for GENMASK_ULL() to force u64, with compile time checks.
- *
- * @return: Continuous bitmask from @__high to @__low, inclusive.
+/*
+ * Wrappers over the generic BIT_* and GENMASK_* implementations,
+ * for compatibility reasons with previous implementation
*/
-#define REG_GENMASK64(__high, __low) \
- ((u64)(GENMASK_ULL(__high, __low) + \
- BUILD_BUG_ON_ZERO(__is_constexpr(__high) && \
- __is_constexpr(__low) && \
- ((__low) < 0 || (__high) > 63 || (__low) > (__high)))))
+#define REG_GENMASK(__high, __low) GENMASK_U32(__high, __low)
+#define REG_GENMASK64(__high, __low) GENMASK_U64(__high, __low)
+#define REG_GENMASK16(__high, __low) GENMASK_U16(__high, __low)
+#define REG_GENMASK8(__high, __low) GENMASK_U8(__high, __low)
-/**
- * REG_GENMASK8() - Prepare a continuous u8 bitmask
- * @__high: 0-based high bit
- * @__low: 0-based low bit
- *
- * Local wrapper for GENMASK() to force u8, with compile time checks.
- *
- * @return: Continuous bitmask from @__high to @__low, inclusive.
- */
-#define REG_GENMASK8(__high, __low) \
- ((u8)(GENMASK(__high, __low) + \
- BUILD_BUG_ON_ZERO(__is_constexpr(__high) && \
- __is_constexpr(__low) && \
- ((__low) < 0 || (__high) > 7 || (__low) > (__high)))))
+#define REG_BIT(__n) BIT_U32(__n)
+#define REG_BIT64(__n) BIT_U64(__n)
+#define REG_BIT16(__n) BIT_U16(__n)
+#define REG_BIT8(__n) BIT_U8(__n)
/*
* Local integer constant expression version of is_power_of_2().
@@ -143,35 +86,6 @@
*/
#define REG_FIELD_GET64(__mask, __val) ((u64)FIELD_GET(__mask, __val))
-/**
- * REG_BIT16() - Prepare a u16 bit value
- * @__n: 0-based bit number
- *
- * Local wrapper for BIT() to force u16, with compile time
- * checks.
- *
- * @return: Value with bit @__n set.
- */
-#define REG_BIT16(__n) \
- ((u16)(BIT(__n) + \
- BUILD_BUG_ON_ZERO(__is_constexpr(__n) && \
- ((__n) < 0 || (__n) > 15))))
-
-/**
- * REG_GENMASK16() - Prepare a continuous u8 bitmask
- * @__high: 0-based high bit
- * @__low: 0-based low bit
- *
- * Local wrapper for GENMASK() to force u16, with compile time
- * checks.
- *
- * @return: Continuous bitmask from @__high to @__low, inclusive.
- */
-#define REG_GENMASK16(__high, __low) \
- ((u16)(GENMASK(__high, __low) + \
- BUILD_BUG_ON_ZERO(__is_constexpr(__high) && \
- __is_constexpr(__low) && \
- ((__low) < 0 || (__high) > 15 || (__low) > (__high)))))
/**
* REG_FIELD_PREP16() - Prepare a u16 bitfield value
--
2.43.0
^ permalink raw reply related [flat|nested] 17+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for Fixed-type GENMASK/BIT
2024-01-24 5:02 [PATCH 0/3] Fixed-type GENMASK/BIT Lucas De Marchi
` (2 preceding siblings ...)
2024-01-24 5:02 ` [PATCH 3/3] drm/i915: Convert REG_GENMASK* to fixed-width GENMASK_* Lucas De Marchi
@ 2024-01-24 6:15 ` Patchwork
2024-01-24 6:15 ` ✗ Fi.CI.SPARSE: " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2024-01-24 6:15 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: intel-gfx
== Series Details ==
Series: Fixed-type GENMASK/BIT
URL : https://patchwork.freedesktop.org/series/129116/
State : warning
== Summary ==
Error: dim checkpatch failed
8ab0681c6133 bits: introduce fixed-type genmasks
-:48: CHECK:MACRO_ARG_REUSE: Macro argument reuse 't' - possible side-effects?
#48: FILE: include/linux/bits.h:35:
+#define __GENMASK(t, h, l) \
+ (GENMASK_INPUT_CHECK(h, l) + \
+ (((t)~0ULL - ((t)(1) << (l)) + 1) & \
+ ((t)~0ULL >> (BITS_PER_TYPE(t) - 1 - (h)))))
-:48: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'h' - possible side-effects?
#48: FILE: include/linux/bits.h:35:
+#define __GENMASK(t, h, l) \
+ (GENMASK_INPUT_CHECK(h, l) + \
+ (((t)~0ULL - ((t)(1) << (l)) + 1) & \
+ ((t)~0ULL >> (BITS_PER_TYPE(t) - 1 - (h)))))
-:48: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'l' - possible side-effects?
#48: FILE: include/linux/bits.h:35:
+#define __GENMASK(t, h, l) \
+ (GENMASK_INPUT_CHECK(h, l) + \
+ (((t)~0ULL - ((t)(1) << (l)) + 1) & \
+ ((t)~0ULL >> (BITS_PER_TYPE(t) - 1 - (h)))))
total: 0 errors, 0 warnings, 3 checks, 41 lines checked
8a3bc4a2a64a bits: Introduce fixed-type BIT
-:19: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'b' - possible side-effects?
#19: FILE: include/linux/bits.h:27:
+#define BIT_INPUT_CHECK(type, b) \
+ ((BUILD_BUG_ON_ZERO(__builtin_choose_expr( \
+ __is_constexpr(b), (b) >= BITS_PER_TYPE(type), 0))))
-:36: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'b' - possible side-effects?
#36: FILE: include/linux/bits.h:51:
+#define BIT_U8(b) ((u8)(BIT_INPUT_CHECK(u8, b) + BIT(b)))
-:37: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'b' - possible side-effects?
#37: FILE: include/linux/bits.h:52:
+#define BIT_U16(b) ((u16)(BIT_INPUT_CHECK(u16, b) + BIT(b)))
-:38: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'b' - possible side-effects?
#38: FILE: include/linux/bits.h:53:
+#define BIT_U32(b) ((u32)(BIT_INPUT_CHECK(u32, b) + BIT(b)))
-:39: CHECK:MACRO_ARG_REUSE: Macro argument reuse 'b' - possible side-effects?
#39: FILE: include/linux/bits.h:54:
+#define BIT_U64(b) ((u64)(BIT_INPUT_CHECK(u64, b) + BIT(b)))
total: 0 errors, 0 warnings, 5 checks, 25 lines checked
0b741f2d90b2 drm/i915: Convert REG_GENMASK* to fixed-width GENMASK_*
^ permalink raw reply [flat|nested] 17+ messages in thread
* ✗ Fi.CI.SPARSE: warning for Fixed-type GENMASK/BIT
2024-01-24 5:02 [PATCH 0/3] Fixed-type GENMASK/BIT Lucas De Marchi
` (3 preceding siblings ...)
2024-01-24 6:15 ` ✗ Fi.CI.CHECKPATCH: warning for Fixed-type GENMASK/BIT Patchwork
@ 2024-01-24 6:15 ` Patchwork
2024-01-24 6:15 ` ✓ Fi.CI.BAT: success " Patchwork
2024-01-24 13:46 ` ✗ Fi.CI.IGT: failure " Patchwork
6 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2024-01-24 6:15 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: intel-gfx
== Series Details ==
Series: Fixed-type GENMASK/BIT
URL : https://patchwork.freedesktop.org/series/129116/
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] 17+ messages in thread
* ✓ Fi.CI.BAT: success for Fixed-type GENMASK/BIT
2024-01-24 5:02 [PATCH 0/3] Fixed-type GENMASK/BIT Lucas De Marchi
` (4 preceding siblings ...)
2024-01-24 6:15 ` ✗ Fi.CI.SPARSE: " Patchwork
@ 2024-01-24 6:15 ` Patchwork
2024-01-24 13:46 ` ✗ Fi.CI.IGT: failure " Patchwork
6 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2024-01-24 6:15 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 7436 bytes --]
== Series Details ==
Series: Fixed-type GENMASK/BIT
URL : https://patchwork.freedesktop.org/series/129116/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14168 -> Patchwork_129116v1
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/index.html
Participating hosts (38 -> 38)
------------------------------
Additional (1): bat-kbl-2
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_129116v1 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@info:
- bat-kbl-2: NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#1849])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/bat-kbl-2/igt@fbdev@info.html
* igt@gem_lmem_swapping@basic:
- fi-apl-guc: NOTRUN -> [SKIP][2] ([fdo#109271] / [i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/fi-apl-guc/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-kbl-2: NOTRUN -> [SKIP][3] ([fdo#109271]) +35 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@verify-random:
- bat-mtlp-8: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/bat-mtlp-8/igt@gem_lmem_swapping@verify-random.html
* igt@gem_tiled_blits@basic:
- fi-pnv-d510: [PASS][5] -> [SKIP][6] ([fdo#109271]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/fi-pnv-d510/igt@gem_tiled_blits@basic.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/fi-pnv-d510/igt@gem_tiled_blits@basic.html
* igt@i915_pm_rps@basic-api:
- bat-mtlp-8: NOTRUN -> [SKIP][7] ([i915#6621])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/bat-mtlp-8/igt@i915_pm_rps@basic-api.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][8] ([i915#5190])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][9] ([i915#4212]) +8 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-mtlp-8: NOTRUN -> [SKIP][10] ([i915#4213]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-mtlp-8: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#3840] / [i915#9159])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/bat-mtlp-8/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-mtlp-8: NOTRUN -> [SKIP][12] ([fdo#109285])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-mtlp-8: NOTRUN -> [SKIP][13] ([i915#5274])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_hdmi_inject@inject-audio:
- fi-apl-guc: NOTRUN -> [SKIP][14] ([fdo#109271]) +13 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/fi-apl-guc/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-adlp-9: NOTRUN -> [SKIP][15] ([i915#9826]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/bat-adlp-9/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-mtlp-8: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#8809])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-mmap:
- bat-mtlp-8: NOTRUN -> [SKIP][17] ([i915#3708] / [i915#4077]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/bat-mtlp-8/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- bat-mtlp-8: NOTRUN -> [SKIP][18] ([i915#3708]) +2 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html
#### Possible fixes ####
* igt@i915_hangman@error-state-basic:
- bat-mtlp-8: [ABORT][19] ([i915#9414]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/bat-mtlp-8/igt@i915_hangman@error-state-basic.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/bat-mtlp-8/igt@i915_hangman@error-state-basic.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159
[i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414
[i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688
[i915#9826]: https://gitlab.freedesktop.org/drm/intel/issues/9826
Build changes
-------------
* Linux: CI_DRM_14168 -> Patchwork_129116v1
CI-20190529: 20190529
CI_DRM_14168: 0496fe20d8ed5e73ed186d293ef67e7bae4658eb @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7690: aa45298ff675abbe6bf8f04ae186e2388c35f03a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_129116v1: 0496fe20d8ed5e73ed186d293ef67e7bae4658eb @ git://anongit.freedesktop.org/gfx-ci/linux
### Linux commits
9cd1fcedb6d3 drm/i915: Convert REG_GENMASK* to fixed-width GENMASK_*
76522c8aa509 bits: Introduce fixed-type BIT
5758d521a774 bits: introduce fixed-type genmasks
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/index.html
[-- Attachment #2: Type: text/html, Size: 8843 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH 1/3] bits: introduce fixed-type genmasks
2024-01-24 5:02 ` [PATCH 1/3] bits: introduce fixed-type genmasks Lucas De Marchi
@ 2024-01-24 7:58 ` Jani Nikula
2024-01-24 14:03 ` Lucas De Marchi
0 siblings, 1 reply; 17+ messages in thread
From: Jani Nikula @ 2024-01-24 7:58 UTC (permalink / raw)
To: Lucas De Marchi, Yury Norov
Cc: intel-gfx, Andy Shevchenko, linux-kernel, dri-devel, intel-xe
On Tue, 23 Jan 2024, Lucas De Marchi <lucas.demarchi@intel.com> wrote:
> From: Yury Norov <yury.norov@gmail.com>
>
> Generalize __GENMASK() to support different types, and implement
> fixed-types versions of GENMASK() based on it. The fixed-type version
> allows more strict checks to the min/max values accepted, which is
> useful for defining registers like implemented by i915 and xe drivers
> with their REG_GENMASK*() macros.
Mmh, the commit message says the fixed-type version allows more strict
checks, but none are actually added. GENMASK_INPUT_CHECK() remains the
same.
Compared to the i915 and xe versions, this is more lax now. You could
specify GENMASK_U32(63,32) without complaints.
BR,
Jani.
>
> Signed-off-by: Yury Norov <yury.norov@gmail.com>
> ---
> include/linux/bitops.h | 1 -
> include/linux/bits.h | 22 ++++++++++++----------
> 2 files changed, 12 insertions(+), 11 deletions(-)
>
> diff --git a/include/linux/bitops.h b/include/linux/bitops.h
> index 2ba557e067fe..1db50c69cfdb 100644
> --- a/include/linux/bitops.h
> +++ b/include/linux/bitops.h
> @@ -15,7 +15,6 @@
> # define aligned_byte_mask(n) (~0xffUL << (BITS_PER_LONG - 8 - 8*(n)))
> #endif
>
> -#define BITS_PER_TYPE(type) (sizeof(type) * BITS_PER_BYTE)
> #define BITS_TO_LONGS(nr) __KERNEL_DIV_ROUND_UP(nr, BITS_PER_TYPE(long))
> #define BITS_TO_U64(nr) __KERNEL_DIV_ROUND_UP(nr, BITS_PER_TYPE(u64))
> #define BITS_TO_U32(nr) __KERNEL_DIV_ROUND_UP(nr, BITS_PER_TYPE(u32))
> diff --git a/include/linux/bits.h b/include/linux/bits.h
> index 7c0cf5031abe..cb94128171b2 100644
> --- a/include/linux/bits.h
> +++ b/include/linux/bits.h
> @@ -6,6 +6,8 @@
> #include <vdso/bits.h>
> #include <asm/bitsperlong.h>
>
> +#define BITS_PER_TYPE(type) (sizeof(type) * BITS_PER_BYTE)
> +
> #define BIT_MASK(nr) (UL(1) << ((nr) % BITS_PER_LONG))
> #define BIT_WORD(nr) ((nr) / BITS_PER_LONG)
> #define BIT_ULL_MASK(nr) (ULL(1) << ((nr) % BITS_PER_LONG_LONG))
> @@ -30,16 +32,16 @@
> #define GENMASK_INPUT_CHECK(h, l) 0
> #endif
>
> -#define __GENMASK(h, l) \
> - (((~UL(0)) - (UL(1) << (l)) + 1) & \
> - (~UL(0) >> (BITS_PER_LONG - 1 - (h))))
> -#define GENMASK(h, l) \
> - (GENMASK_INPUT_CHECK(h, l) + __GENMASK(h, l))
> +#define __GENMASK(t, h, l) \
> + (GENMASK_INPUT_CHECK(h, l) + \
> + (((t)~0ULL - ((t)(1) << (l)) + 1) & \
> + ((t)~0ULL >> (BITS_PER_TYPE(t) - 1 - (h)))))
>
> -#define __GENMASK_ULL(h, l) \
> - (((~ULL(0)) - (ULL(1) << (l)) + 1) & \
> - (~ULL(0) >> (BITS_PER_LONG_LONG - 1 - (h))))
> -#define GENMASK_ULL(h, l) \
> - (GENMASK_INPUT_CHECK(h, l) + __GENMASK_ULL(h, l))
> +#define GENMASK(h, l) __GENMASK(unsigned long, h, l)
> +#define GENMASK_ULL(h, l) __GENMASK(unsigned long long, h, l)
> +#define GENMASK_U8(h, l) __GENMASK(u8, h, l)
> +#define GENMASK_U16(h, l) __GENMASK(u16, h, l)
> +#define GENMASK_U32(h, l) __GENMASK(u32, h, l)
> +#define GENMASK_U64(h, l) __GENMASK(u64, h, l)
>
> #endif /* __LINUX_BITS_H */
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH 3/3] drm/i915: Convert REG_GENMASK* to fixed-width GENMASK_*
2024-01-24 5:02 ` [PATCH 3/3] drm/i915: Convert REG_GENMASK* to fixed-width GENMASK_* Lucas De Marchi
@ 2024-01-24 8:04 ` Jani Nikula
0 siblings, 0 replies; 17+ messages in thread
From: Jani Nikula @ 2024-01-24 8:04 UTC (permalink / raw)
To: Lucas De Marchi, Yury Norov
Cc: intel-gfx, Lucas De Marchi, linux-kernel, dri-devel,
Andy Shevchenko, intel-xe
On Tue, 23 Jan 2024, Lucas De Marchi <lucas.demarchi@intel.com> wrote:
> Now that include/linux/bits.h implements fixed-width GENMASK_*, use them
> to implement the i915/xe specific macros. Converting each driver to use
> the generic macros are left for later, when/if other driver-specific
> macros are also generalized.
With the type-specific max checks added to GENMASK_*, this would be
great.
BR,
Jani.
>
> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
> ---
> drivers/gpu/drm/i915/i915_reg_defs.h | 108 +++------------------------
> 1 file changed, 11 insertions(+), 97 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_reg_defs.h b/drivers/gpu/drm/i915/i915_reg_defs.h
> index a685db1e815d..52f99eb96f86 100644
> --- a/drivers/gpu/drm/i915/i915_reg_defs.h
> +++ b/drivers/gpu/drm/i915/i915_reg_defs.h
> @@ -9,76 +9,19 @@
> #include <linux/bitfield.h>
> #include <linux/bits.h>
>
> -/**
> - * REG_BIT() - Prepare a u32 bit value
> - * @__n: 0-based bit number
> - *
> - * Local wrapper for BIT() to force u32, with compile time checks.
> - *
> - * @return: Value with bit @__n set.
> - */
> -#define REG_BIT(__n) \
> - ((u32)(BIT(__n) + \
> - BUILD_BUG_ON_ZERO(__is_constexpr(__n) && \
> - ((__n) < 0 || (__n) > 31))))
> -
> -/**
> - * REG_BIT8() - Prepare a u8 bit value
> - * @__n: 0-based bit number
> - *
> - * Local wrapper for BIT() to force u8, with compile time checks.
> - *
> - * @return: Value with bit @__n set.
> - */
> -#define REG_BIT8(__n) \
> - ((u8)(BIT(__n) + \
> - BUILD_BUG_ON_ZERO(__is_constexpr(__n) && \
> - ((__n) < 0 || (__n) > 7))))
> -
> -/**
> - * REG_GENMASK() - Prepare a continuous u32 bitmask
> - * @__high: 0-based high bit
> - * @__low: 0-based low bit
> - *
> - * Local wrapper for GENMASK() to force u32, with compile time checks.
> - *
> - * @return: Continuous bitmask from @__high to @__low, inclusive.
> - */
> -#define REG_GENMASK(__high, __low) \
> - ((u32)(GENMASK(__high, __low) + \
> - BUILD_BUG_ON_ZERO(__is_constexpr(__high) && \
> - __is_constexpr(__low) && \
> - ((__low) < 0 || (__high) > 31 || (__low) > (__high)))))
> -
> -/**
> - * REG_GENMASK64() - Prepare a continuous u64 bitmask
> - * @__high: 0-based high bit
> - * @__low: 0-based low bit
> - *
> - * Local wrapper for GENMASK_ULL() to force u64, with compile time checks.
> - *
> - * @return: Continuous bitmask from @__high to @__low, inclusive.
> +/*
> + * Wrappers over the generic BIT_* and GENMASK_* implementations,
> + * for compatibility reasons with previous implementation
> */
> -#define REG_GENMASK64(__high, __low) \
> - ((u64)(GENMASK_ULL(__high, __low) + \
> - BUILD_BUG_ON_ZERO(__is_constexpr(__high) && \
> - __is_constexpr(__low) && \
> - ((__low) < 0 || (__high) > 63 || (__low) > (__high)))))
> +#define REG_GENMASK(__high, __low) GENMASK_U32(__high, __low)
> +#define REG_GENMASK64(__high, __low) GENMASK_U64(__high, __low)
> +#define REG_GENMASK16(__high, __low) GENMASK_U16(__high, __low)
> +#define REG_GENMASK8(__high, __low) GENMASK_U8(__high, __low)
>
> -/**
> - * REG_GENMASK8() - Prepare a continuous u8 bitmask
> - * @__high: 0-based high bit
> - * @__low: 0-based low bit
> - *
> - * Local wrapper for GENMASK() to force u8, with compile time checks.
> - *
> - * @return: Continuous bitmask from @__high to @__low, inclusive.
> - */
> -#define REG_GENMASK8(__high, __low) \
> - ((u8)(GENMASK(__high, __low) + \
> - BUILD_BUG_ON_ZERO(__is_constexpr(__high) && \
> - __is_constexpr(__low) && \
> - ((__low) < 0 || (__high) > 7 || (__low) > (__high)))))
> +#define REG_BIT(__n) BIT_U32(__n)
> +#define REG_BIT64(__n) BIT_U64(__n)
> +#define REG_BIT16(__n) BIT_U16(__n)
> +#define REG_BIT8(__n) BIT_U8(__n)
>
> /*
> * Local integer constant expression version of is_power_of_2().
> @@ -143,35 +86,6 @@
> */
> #define REG_FIELD_GET64(__mask, __val) ((u64)FIELD_GET(__mask, __val))
>
> -/**
> - * REG_BIT16() - Prepare a u16 bit value
> - * @__n: 0-based bit number
> - *
> - * Local wrapper for BIT() to force u16, with compile time
> - * checks.
> - *
> - * @return: Value with bit @__n set.
> - */
> -#define REG_BIT16(__n) \
> - ((u16)(BIT(__n) + \
> - BUILD_BUG_ON_ZERO(__is_constexpr(__n) && \
> - ((__n) < 0 || (__n) > 15))))
> -
> -/**
> - * REG_GENMASK16() - Prepare a continuous u8 bitmask
> - * @__high: 0-based high bit
> - * @__low: 0-based low bit
> - *
> - * Local wrapper for GENMASK() to force u16, with compile time
> - * checks.
> - *
> - * @return: Continuous bitmask from @__high to @__low, inclusive.
> - */
> -#define REG_GENMASK16(__high, __low) \
> - ((u16)(GENMASK(__high, __low) + \
> - BUILD_BUG_ON_ZERO(__is_constexpr(__high) && \
> - __is_constexpr(__low) && \
> - ((__low) < 0 || (__high) > 15 || (__low) > (__high)))))
>
> /**
> * REG_FIELD_PREP16() - Prepare a u16 bitfield value
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 17+ messages in thread
* ✗ Fi.CI.IGT: failure for Fixed-type GENMASK/BIT
2024-01-24 5:02 [PATCH 0/3] Fixed-type GENMASK/BIT Lucas De Marchi
` (5 preceding siblings ...)
2024-01-24 6:15 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-01-24 13:46 ` Patchwork
6 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2024-01-24 13:46 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 100249 bytes --]
== Series Details ==
Series: Fixed-type GENMASK/BIT
URL : https://patchwork.freedesktop.org/series/129116/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14168_full -> Patchwork_129116v1_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_129116v1_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_129116v1_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.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/index.html
Participating hosts (9 -> 8)
------------------------------
Missing (1): shard-snb-0
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_129116v1_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_suspend@sysfs-reader:
- shard-tglu: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-tglu-3/igt@i915_suspend@sysfs-reader.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-9/igt@i915_suspend@sysfs-reader.html
* igt@kms_plane_alpha_blend@alpha-7efc:
- shard-dg2: NOTRUN -> [INCOMPLETE][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-10/igt@kms_plane_alpha_blend@alpha-7efc.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_psr@psr2-primary-blt@edp-1}:
- shard-mtlp: [DMESG-WARN][4] ([i915#9157]) -> [DMESG-WARN][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-mtlp-2/igt@kms_psr@psr2-primary-blt@edp-1.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-6/igt@kms_psr@psr2-primary-blt@edp-1.html
Known issues
------------
Here are the changes found in Patchwork_129116v1_full that come from known issues:
### CI changes ###
#### Issues hit ####
* boot:
- shard-glk: ([PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26]) -> ([PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33], [FAIL][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46]) ([i915#8293])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-glk1/boot.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-glk1/boot.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-glk1/boot.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-glk3/boot.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-glk3/boot.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-glk3/boot.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-glk3/boot.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-glk4/boot.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-glk4/boot.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-glk4/boot.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-glk5/boot.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-glk7/boot.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-glk7/boot.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-glk7/boot.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-glk8/boot.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-glk8/boot.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-glk8/boot.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-glk8/boot.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-glk9/boot.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-glk9/boot.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-glk9/boot.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk9/boot.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk9/boot.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk9/boot.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk9/boot.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk8/boot.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk8/boot.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk8/boot.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk7/boot.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk7/boot.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk7/boot.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk5/boot.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk5/boot.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk4/boot.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk4/boot.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk3/boot.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk3/boot.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk3/boot.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk1/boot.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk1/boot.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk1/boot.html
#### Possible fixes ####
* boot:
- shard-rkl: ([PASS][47], [PASS][48], [PASS][49], [PASS][50], [PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56], [PASS][57], [PASS][58], [PASS][59], [PASS][60], [PASS][61], [PASS][62], [FAIL][63], [FAIL][64], [PASS][65], [PASS][66], [PASS][67], [PASS][68]) ([i915#8293]) -> ([PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74], [PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-1/boot.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-1/boot.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-1/boot.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-2/boot.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-3/boot.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-3/boot.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-4/boot.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-4/boot.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-4/boot.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-4/boot.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-4/boot.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-5/boot.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-5/boot.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-5/boot.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-5/boot.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-5/boot.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-6/boot.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-6/boot.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-7/boot.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-7/boot.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-7/boot.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-7/boot.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-7/boot.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-7/boot.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-7/boot.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-7/boot.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-6/boot.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-6/boot.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-6/boot.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-6/boot.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/boot.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/boot.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/boot.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-4/boot.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-4/boot.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-4/boot.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-4/boot.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-3/boot.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-3/boot.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-3/boot.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-3/boot.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-2/boot.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/boot.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/boot.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/boot.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/boot.html
- shard-snb: ([PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [FAIL][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117]) ([i915#8293]) -> ([PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb1/boot.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb1/boot.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb1/boot.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb1/boot.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb1/boot.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb2/boot.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb2/boot.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb4/boot.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb4/boot.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb4/boot.html
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb4/boot.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb4/boot.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb5/boot.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb5/boot.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb5/boot.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb5/boot.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb5/boot.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb6/boot.html
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb6/boot.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb6/boot.html
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb6/boot.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb7/boot.html
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb7/boot.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb7/boot.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb7/boot.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb7/boot.html
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb7/boot.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb7/boot.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb6/boot.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb6/boot.html
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb6/boot.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb6/boot.html
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb5/boot.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb5/boot.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb5/boot.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb5/boot.html
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb4/boot.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb4/boot.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb4/boot.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb4/boot.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb2/boot.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb2/boot.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb2/boot.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb2/boot.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb2/boot.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb1/boot.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb1/boot.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb1/boot.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb1/boot.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb1/boot.html
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#8411]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@drm_fdinfo@busy-check-all@ccs3:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#8414]) +11 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-2/igt@drm_fdinfo@busy-check-all@ccs3.html
* igt@drm_fdinfo@isolation@rcs0:
- shard-mtlp: NOTRUN -> [SKIP][145] ([i915#8414]) +5 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@drm_fdinfo@isolation@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [PASS][146] -> [FAIL][147] ([i915#7742])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-7/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#7697])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@gem_basic@multigpu-create-close.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg1: NOTRUN -> [SKIP][149] ([i915#7697])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#6335])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#8562])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-2/igt@gem_create@create-ext-set-pat.html
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#8562])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@gem_create@create-ext-set-pat.html
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#8562])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-7/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_param@set-priority-not-supported:
- shard-rkl: NOTRUN -> [SKIP][154] ([fdo#109314])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@gem_ctx_param@set-priority-not-supported.html
* igt@gem_ctx_persistence@engines-hostile-preempt:
- shard-snb: NOTRUN -> [SKIP][155] ([fdo#109271] / [i915#1099])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb4/igt@gem_ctx_persistence@engines-hostile-preempt.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#8555])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#280])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-8/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#280])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][159] ([i915#10030] / [i915#7975] / [i915#8213])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@gem_eio@hibernate.html
- shard-rkl: NOTRUN -> [ABORT][160] ([i915#7975] / [i915#8213])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-4/igt@gem_eio@hibernate.html
* igt@gem_exec_balancer@bonded-sync:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#4771]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@gem_exec_balancer@bonded-sync.html
* igt@gem_exec_balancer@sliced:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#4812])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#6334]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#6334])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-4/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@many-4k-incremental:
- shard-dg2: NOTRUN -> [FAIL][165] ([i915#9606])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-2/igt@gem_exec_capture@many-4k-incremental.html
- shard-rkl: NOTRUN -> [FAIL][166] ([i915#9606])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@gem_exec_capture@many-4k-incremental.html
- shard-tglu: NOTRUN -> [FAIL][167] ([i915#9606])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-7/igt@gem_exec_capture@many-4k-incremental.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#3539] / [i915#4852])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-tglu: [PASS][169] -> [FAIL][170] ([i915#2842]) +1 other test fail
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-tglu-6/igt@gem_exec_fair@basic-none-share@rcs0.html
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-4/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-tglu: NOTRUN -> [FAIL][171] ([i915#2842])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-8/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-none@vecs0:
- shard-rkl: [PASS][172] -> [FAIL][173] ([i915#2842])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-3/igt@gem_exec_fair@basic-none@vecs0.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-6/igt@gem_exec_fair@basic-none@vecs0.html
* igt@gem_exec_fence@submit67:
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#4812])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#3539] / [i915#4852]) +3 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_gttfill@multigpu-basic:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#7697])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@gem_exec_gttfill@multigpu-basic.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][177] ([fdo#109283] / [i915#5107])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_params@secure-non-master:
- shard-dg1: NOTRUN -> [SKIP][178] ([fdo#112283])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_reloc@basic-cpu-read:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#3281]) +11 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@gem_exec_reloc@basic-cpu-read.html
* igt@gem_exec_reloc@basic-gtt-read:
- shard-dg1: NOTRUN -> [SKIP][180] ([i915#3281]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@gem_exec_reloc@basic-gtt-read.html
* igt@gem_exec_reloc@basic-wc-cpu-active:
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3281]) +2 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@gem_exec_reloc@basic-wc-cpu-active.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#3281]) +13 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#4537] / [i915#4812]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-3/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#7276])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg2: NOTRUN -> [ABORT][185] ([i915#7975] / [i915#8213])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-10/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#4860]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#4613] / [i915#7582])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#4613]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#4613]) +3 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-4/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][190] ([fdo#109271] / [i915#4613]) +4 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk7/igt@gem_lmem_swapping@random-engines.html
* igt@gem_mmap_gtt@coherency:
- shard-rkl: NOTRUN -> [SKIP][191] ([fdo#111656])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy:
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#4077]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@gem_mmap_gtt@cpuset-basic-small-copy.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#4077]) +15 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-10/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_wc@fault-concurrent:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#4083])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@gem_mmap_wc@fault-concurrent.html
* igt@gem_mmap_wc@invalid-flags:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#4083]) +7 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-3/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#3282]) +7 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-10/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_pread@bench:
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#3282]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@gem_pread@bench.html
* igt@gem_pread@display:
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#3282])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@gem_pread@display.html
* igt@gem_pxp@create-regular-context-2:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#4270])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@gem_pxp@create-regular-context-2.html
* igt@gem_pxp@create-valid-protected-context:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#4270]) +3 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#4270]) +3 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-tglu: NOTRUN -> [SKIP][202] ([i915#4270]) +2 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-7/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@x-tiled-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#8428]) +1 other test skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@gem_render_copy@x-tiled-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][204] ([i915#4079])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#4079]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@gem_set_tiling_vs_gtt.html
* igt@gem_tiled_pread_basic:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#4079]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-3/igt@gem_tiled_pread_basic.html
* igt@gem_tiled_wb:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#4077]) +2 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@gem_tiled_wb.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: NOTRUN -> [SKIP][208] ([fdo#110542])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#3297]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#3282]) +3 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#3297]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#3297]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-tglu: NOTRUN -> [SKIP][213] ([i915#3297])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-5/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen3_render_mixed_blits:
- shard-rkl: NOTRUN -> [SKIP][214] ([fdo#109289]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@gen3_render_mixed_blits.html
* igt@gen3_render_tiledy_blits:
- shard-tglu: NOTRUN -> [SKIP][215] ([fdo#109289])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-8/igt@gen3_render_tiledy_blits.html
* igt@gen7_exec_parse@basic-allowed:
- shard-mtlp: NOTRUN -> [SKIP][216] ([fdo#109289])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@gen7_exec_parse@basic-allowed.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][217] ([fdo#109289]) +4 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-3/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu: NOTRUN -> [SKIP][218] ([i915#2527] / [i915#2856]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-7/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-mtlp: NOTRUN -> [SKIP][219] ([i915#2856])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-out:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#2527]) +2 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#2856]) +2 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-10/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_fb_tiling:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#4881])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@i915_fb_tiling.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [PASS][223] -> [ABORT][224] ([i915#9820])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html
- shard-glk: [PASS][225] -> [INCOMPLETE][226] ([i915#10137] / [i915#9200] / [i915#9849])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-glk7/igt@i915_module_load@reload-with-fault-injection.html
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk9/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: [PASS][227] -> [ABORT][228] ([i915#10131] / [i915#9697])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-mtlp-4/igt@i915_module_load@reload-with-fault-injection.html
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#8436])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#8399]) +1 other test skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-dg1: [PASS][231] -> [FAIL][232] ([i915#3591])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-glk: NOTRUN -> [SKIP][233] ([fdo#109271]) +196 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk4/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
- shard-mtlp: NOTRUN -> [SKIP][234] ([fdo#109293])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#8925])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_pm_rps@thresholds-idle@gt1:
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8925])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@i915_pm_rps@thresholds-idle@gt1.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: NOTRUN -> [SKIP][237] ([i915#4387])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#6188])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@query-topology-unsupported:
- shard-rkl: NOTRUN -> [SKIP][239] ([fdo#109302])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@i915_query@query-topology-unsupported.html
* igt@i915_selftest@mock@memory_region:
- shard-glk: NOTRUN -> [DMESG-WARN][240] ([i915#9311])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk3/igt@i915_selftest@mock@memory_region.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#4212]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#4212])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#4212])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#3826])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#8709]) +7 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-13/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#1769] / [i915#3555])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#1769] / [i915#3555])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][248] ([fdo#111614]) +4 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#5286])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][250] ([fdo#111615] / [i915#5286]) +2 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#5286]) +8 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][252] -> [FAIL][253] ([i915#5138])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#3638])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][255] ([fdo#111614] / [i915#3638]) +3 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][256] ([fdo#111614]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-5/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][257] ([fdo#111614])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: [PASS][258] -> [FAIL][259] ([i915#3743])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-tglu-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [SKIP][260] ([fdo#111615]) +2 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][261] ([i915#5190]) +12 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][262] ([fdo#110723]) +7 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][263] ([fdo#111615]) +2 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][264] ([i915#4538] / [i915#5190]) +6 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg1: NOTRUN -> [SKIP][265] ([i915#4538])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-rc-ccs:
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#5354]) +86 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-3/igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@pipe-b-crc-primary-basic-4-tiled-mtl-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#5354] / [i915#6095]) +23 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@kms_ccs@pipe-b-crc-primary-basic-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y-tiled-gen12-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][268] ([i915#5354] / [i915#6095]) +7 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@kms_ccs@pipe-c-bad-rotation-90-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-d-bad-aux-stride-y-tiled-gen12-mc-ccs:
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#5354]) +32 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@kms_ccs@pipe-d-bad-aux-stride-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@pipe-d-ccs-on-another-bo-4-tiled-mtl-mc-ccs:
- shard-dg1: NOTRUN -> [SKIP][270] ([i915#5354] / [i915#6095]) +7 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@kms_ccs@pipe-d-ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@pipe-d-missing-ccs-buffer-4-tiled-mtl-rc-ccs:
- shard-tglu: NOTRUN -> [SKIP][271] ([i915#5354] / [i915#6095]) +19 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-5/igt@kms_ccs@pipe-d-missing-ccs-buffer-4-tiled-mtl-rc-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#3742]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#4087] / [i915#7213])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#7213]) +3 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#4087]) +3 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-3/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-tglu: NOTRUN -> [SKIP][276] ([fdo#111827])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-5/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2: NOTRUN -> [SKIP][277] ([fdo#111827]) +1 other test skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@kms_chamelium_color@ctm-green-to-red.html
- shard-rkl: NOTRUN -> [SKIP][278] ([fdo#111827]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-4/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-mtlp: NOTRUN -> [SKIP][279] ([fdo#111827])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-dg1: NOTRUN -> [SKIP][280] ([i915#7828]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#7828]) +11 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-tglu: NOTRUN -> [SKIP][282] ([i915#7828]) +3 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-7/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#7828]) +7 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-mtlp: NOTRUN -> [SKIP][284] ([i915#7828]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_color@deep-color:
- shard-dg1: NOTRUN -> [SKIP][285] ([i915#3555]) +2 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@kms_color@deep-color.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#3299])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][287] ([i915#3299])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@uevent:
- shard-rkl: NOTRUN -> [SKIP][288] ([i915#7118]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#3555]) +4 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#3359])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][291] ([i915#3359]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#3359])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#3359]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#3555] / [i915#8814])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-mtlp: NOTRUN -> [SKIP][295] ([i915#3359])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][296] ([fdo#111767])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-tglu: NOTRUN -> [SKIP][297] ([fdo#109274]) +2 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][298] ([i915#4103])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-dg2: NOTRUN -> [SKIP][299] ([fdo#109274] / [i915#5354]) +6 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][300] ([fdo#109274] / [fdo#111767] / [i915#5354])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-tglu: NOTRUN -> [SKIP][301] ([fdo#109274] / [fdo#111767])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-8/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [PASS][302] -> [FAIL][303] ([i915#2346])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#9067])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#4103] / [i915#4213]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#9723]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-mtlp: NOTRUN -> [SKIP][307] ([i915#3555] / [i915#8827])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_display_modes@extended-mode-basic@pipe-a-hdmi-a-1-pipe-b-vga-1:
- shard-snb: NOTRUN -> [FAIL][308] ([i915#9841]) +3 other tests fail
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb7/igt@kms_display_modes@extended-mode-basic@pipe-a-hdmi-a-1-pipe-b-vga-1.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#8588])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][310] ([i915#3804])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_aux_dev:
- shard-dg2: NOTRUN -> [SKIP][311] ([i915#1257])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-2/igt@kms_dp_aux_dev.html
- shard-rkl: NOTRUN -> [SKIP][312] ([i915#1257])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@kms_dp_aux_dev.html
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#1257])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-7/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-tglu: NOTRUN -> [SKIP][314] ([i915#3840])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-5/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][315] ([i915#3840])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#3555] / [i915#3840])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-3/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][317] ([i915#3840] / [i915#9053])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu: NOTRUN -> [SKIP][318] ([i915#3469])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-5/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2: NOTRUN -> [SKIP][319] ([i915#4854])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-rkl: NOTRUN -> [SKIP][320] ([i915#1839])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][321] ([i915#658])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-2/igt@kms_feature_discovery@psr1.html
- shard-rkl: NOTRUN -> [SKIP][322] ([i915#658])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][323] ([i915#658])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-dg2: NOTRUN -> [SKIP][324] ([fdo#109274] / [fdo#111767])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: NOTRUN -> [SKIP][325] ([fdo#111825]) +12 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][326] ([i915#8381])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][327] ([i915#8381])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-3/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][328] ([fdo#111767] / [i915#3637])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-tglu: NOTRUN -> [SKIP][329] ([fdo#109274] / [i915#3637]) +2 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-5/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][330] ([fdo#109274]) +8 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-3/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][331] ([i915#3637]) +1 other test skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][332] ([i915#2672]) +4 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][333] ([i915#3555] / [i915#8810])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][334] ([i915#2672]) +2 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-snb: [PASS][335] -> [SKIP][336] ([fdo#109271]) +19 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][337] ([fdo#111825] / [i915#1825]) +38 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][338] ([i915#3458])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
- shard-dg1: NOTRUN -> [SKIP][339] ([fdo#111825]) +7 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-snb: NOTRUN -> [SKIP][340] ([fdo#109271]) +77 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][341] ([i915#1825]) +5 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][342] ([fdo#109280]) +14 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][343] ([i915#8708]) +23 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][344] ([fdo#110189]) +13 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][345] ([i915#3023]) +27 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg1: NOTRUN -> [SKIP][346] ([i915#5439])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2: NOTRUN -> [SKIP][347] ([i915#10070])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][348] ([i915#8708]) +5 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][349] ([i915#3458]) +17 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][350] ([i915#8708]) +3 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_hdr@static-swap:
- shard-tglu: NOTRUN -> [SKIP][351] ([i915#3555] / [i915#8228])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-5/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle:
- shard-mtlp: NOTRUN -> [SKIP][352] ([i915#3555] / [i915#8228])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@kms_hdr@static-toggle.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg1: NOTRUN -> [SKIP][353] ([i915#1839])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: NOTRUN -> [SKIP][354] ([i915#6301])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][355] ([i915#4573]) +1 other test fail
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][356] ([i915#3555] / [i915#8821])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][357] ([i915#8292])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][358] ([i915#9423]) +3 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][359] ([i915#5176]) +3 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][360] ([i915#9423]) +11 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-17/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][361] ([i915#9423]) +5 other tests skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][362] ([i915#5176] / [i915#9423]) +3 other tests skip
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][363] ([i915#5235]) +7 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][364] ([i915#5235]) +3 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][365] ([i915#5235]) +2 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-edp-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][366] ([i915#5235] / [i915#9423]) +19 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][367] ([i915#3555] / [i915#5235])
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][368] ([i915#5235]) +19 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-13/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-hdmi-a-3.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][369] ([i915#9340])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: NOTRUN -> [SKIP][370] ([i915#9519])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: NOTRUN -> [SKIP][371] ([i915#9519]) +2 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@pc8-residency:
- shard-rkl: NOTRUN -> [SKIP][372] ([fdo#109293] / [fdo#109506])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@kms_pm_rpm@pc8-residency.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu: NOTRUN -> [SKIP][373] ([i915#6524])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-8/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@d3hot:
- shard-mtlp: NOTRUN -> [SKIP][374] ([i915#6524])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][375] ([i915#9683])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-5/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-mtlp: NOTRUN -> [SKIP][376] ([i915#4348])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][377] ([i915#9683]) +3 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-2/igt@kms_psr2_su@page_flip-p010.html
- shard-rkl: NOTRUN -> [SKIP][378] ([fdo#111068] / [i915#9683])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@kms_psr2_su@page_flip-p010.html
- shard-tglu: NOTRUN -> [SKIP][379] ([fdo#109642] / [fdo#111068] / [i915#9683])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-7/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg1: NOTRUN -> [SKIP][380] ([i915#9685])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu: NOTRUN -> [SKIP][381] ([i915#9685])
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-dg2: NOTRUN -> [SKIP][382] ([i915#9685])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-rkl: NOTRUN -> [SKIP][383] ([i915#9685])
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][384] ([i915#5289])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][385] ([fdo#111615] / [i915#5289])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-mtlp: NOTRUN -> [SKIP][386] ([i915#4235])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][387] ([i915#4235] / [i915#5190])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list:
- shard-rkl: NOTRUN -> [DMESG-FAIL][388] ([i915#10143])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
- shard-snb: NOTRUN -> [DMESG-FAIL][389] ([i915#10143])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb4/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
- shard-glk: NOTRUN -> [DMESG-FAIL][390] ([i915#10143])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset:
- shard-rkl: NOTRUN -> [DMESG-WARN][391] ([i915#10143])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html
- shard-snb: NOTRUN -> [DMESG-WARN][392] ([i915#10143])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb4/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html
- shard-glk: NOTRUN -> [DMESG-WARN][393] ([i915#10143])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888:
- shard-dg1: [PASS][394] -> [DMESG-WARN][395] ([i915#10143])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-dg1-14/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-12/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-dg2: NOTRUN -> [SKIP][396] ([i915#3555]) +4 other tests skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tv_load_detect@load-detect:
- shard-tglu: NOTRUN -> [SKIP][397] ([fdo#109309])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-7/igt@kms_tv_load_detect@load-detect.html
- shard-dg2: NOTRUN -> [SKIP][398] ([fdo#109309])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-2/igt@kms_tv_load_detect@load-detect.html
- shard-rkl: NOTRUN -> [SKIP][399] ([fdo#109309])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flip-suspend:
- shard-tglu: NOTRUN -> [SKIP][400] ([i915#3555])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-8/igt@kms_vrr@flip-suspend.html
* igt@kms_writeback@writeback-check-output:
- shard-glk: NOTRUN -> [SKIP][401] ([fdo#109271] / [i915#2437])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk3/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2: NOTRUN -> [SKIP][402] ([i915#2437]) +1 other test skip
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@kms_writeback@writeback-fb-id.html
- shard-rkl: NOTRUN -> [SKIP][403] ([i915#2437]) +1 other test skip
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-4/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-tglu: NOTRUN -> [SKIP][404] ([i915#2437])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-7/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@global-sseu-config:
- shard-dg2: NOTRUN -> [SKIP][405] ([i915#7387])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@perf@global-sseu-config.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [PASS][406] -> [FAIL][407] ([i915#7484])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-6/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf_pmu@busy-double-start@ccs0:
- shard-mtlp: [PASS][408] -> [FAIL][409] ([i915#4349])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-mtlp-8/igt@perf_pmu@busy-double-start@ccs0.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@perf_pmu@busy-double-start@ccs0.html
* igt@perf_pmu@event-wait@rcs0:
- shard-tglu: NOTRUN -> [SKIP][410] ([fdo#112283])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-8/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg1: NOTRUN -> [SKIP][411] ([i915#8516])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-rkl: NOTRUN -> [SKIP][412] ([i915#8516])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg2: NOTRUN -> [SKIP][413] ([i915#3708])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: NOTRUN -> [SKIP][414] ([fdo#109295] / [i915#3291] / [i915#3708])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][415] ([i915#3291] / [i915#3708])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-3/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-write-hang:
- shard-rkl: NOTRUN -> [SKIP][416] ([fdo#109295] / [i915#3708]) +1 other test skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: NOTRUN -> [SKIP][417] ([i915#9917])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg1: NOTRUN -> [SKIP][418] ([i915#9917])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-rkl: NOTRUN -> [FAIL][419] ([i915#9781])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@v3d/v3d_submit_cl@bad-bo:
- shard-dg1: NOTRUN -> [SKIP][420] ([i915#2575]) +1 other test skip
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@v3d/v3d_submit_cl@bad-bo.html
* igt@v3d/v3d_submit_cl@bad-perfmon:
- shard-dg2: NOTRUN -> [SKIP][421] ([i915#2575]) +12 other tests skip
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-1/igt@v3d/v3d_submit_cl@bad-perfmon.html
* igt@v3d/v3d_submit_cl@multiple-job-submission:
- shard-mtlp: NOTRUN -> [SKIP][422] ([i915#2575]) +1 other test skip
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@v3d/v3d_submit_cl@multiple-job-submission.html
* igt@v3d/v3d_submit_cl@single-out-sync:
- shard-tglu: NOTRUN -> [SKIP][423] ([fdo#109315] / [i915#2575]) +6 other tests skip
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-8/igt@v3d/v3d_submit_cl@single-out-sync.html
* igt@v3d/v3d_submit_csd@valid-multisync-submission:
- shard-rkl: NOTRUN -> [SKIP][424] ([fdo#109315]) +14 other tests skip
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@v3d/v3d_submit_csd@valid-multisync-submission.html
* igt@vc4/vc4_perfmon@create-single-perfmon:
- shard-mtlp: NOTRUN -> [SKIP][425] ([i915#7711]) +1 other test skip
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-3/igt@vc4/vc4_perfmon@create-single-perfmon.html
* igt@vc4/vc4_perfmon@get-values-valid-perfmon:
- shard-rkl: NOTRUN -> [SKIP][426] ([i915#7711]) +6 other tests skip
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-5/igt@vc4/vc4_perfmon@get-values-valid-perfmon.html
* igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem:
- shard-tglu: NOTRUN -> [SKIP][427] ([i915#2575]) +5 other tests skip
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-7/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html
* igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained:
- shard-dg2: NOTRUN -> [SKIP][428] ([i915#7711]) +8 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-3/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html
* igt@vc4/vc4_tiling@get-bad-handle:
- shard-dg1: NOTRUN -> [SKIP][429] ([i915#7711]) +1 other test skip
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@vc4/vc4_tiling@get-bad-handle.html
#### Possible fixes ####
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [FAIL][430] ([i915#6268]) -> [PASS][431]
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-tglu-4/igt@gem_ctx_exec@basic-nohangcheck.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][432] ([i915#5784]) -> [PASS][433]
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-dg1-12/igt@gem_eio@reset-stress.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-15/igt@gem_eio@reset-stress.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-rkl: [FAIL][434] ([i915#2842]) -> [PASS][435] +1 other test pass
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-3/igt@gem_exec_fair@basic-none@vcs0.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-6/igt@gem_exec_fair@basic-none@vcs0.html
- shard-glk: [FAIL][436] ([i915#2842]) -> [PASS][437]
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-glk3/igt@gem_exec_fair@basic-none@vcs0.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-glk8/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_suspend@basic-s4-devices@smem:
- shard-tglu: [ABORT][438] ([i915#7975] / [i915#8213]) -> [PASS][439]
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-8/igt@gem_exec_suspend@basic-s4-devices@smem.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [INCOMPLETE][440] ([i915#10137] / [i915#9820] / [i915#9849]) -> [PASS][441]
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-dg1: [FAIL][442] ([i915#3591]) -> [PASS][443] +1 other test pass
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [FAIL][444] ([i915#5138]) -> [PASS][445] +1 other test pass
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-tglu: [FAIL][446] ([i915#3743]) -> [PASS][447]
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-snb: [SKIP][448] ([fdo#109271] / [fdo#111767]) -> [PASS][449]
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-snb: [SKIP][450] ([fdo#109271]) -> [PASS][451] +9 other tests pass
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [SKIP][452] ([i915#9519]) -> [PASS][453]
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][454] ([i915#9519]) -> [PASS][455] +1 other test pass
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-tglu: [ABORT][456] -> [PASS][457] +1 other test pass
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-tglu-9/igt@kms_pm_rpm@system-suspend-modeset.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-5/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888:
- shard-tglu: [DMESG-WARN][458] ([i915#10143]) -> [PASS][459]
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-tglu-2/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-6/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1:
- shard-snb: [FAIL][460] ([i915#9196]) -> [PASS][461]
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb4/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- shard-tglu: [FAIL][462] ([i915#9196]) -> [PASS][463]
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-tglu-4/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
* igt@perf_pmu@busy-idle-check-all@vecs0:
- shard-dg1: [FAIL][464] ([i915#4349]) -> [PASS][465]
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-dg1-18/igt@perf_pmu@busy-idle-check-all@vecs0.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-17/igt@perf_pmu@busy-idle-check-all@vecs0.html
#### Warnings ####
* igt@kms_content_protection@atomic:
- shard-snb: [INCOMPLETE][466] ([i915#8816]) -> [SKIP][467] ([fdo#109271]) +1 other test skip
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-snb7/igt@kms_content_protection@atomic.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-snb1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][468] ([i915#9433]) -> [SKIP][469] ([i915#9424])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-dg1-13/igt@kms_content_protection@mei-interface.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-17/igt@kms_content_protection@mei-interface.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][470] ([i915#3955]) -> [SKIP][471] ([fdo#110189] / [i915#3955])
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-7/igt@kms_fbcon_fbt@psr.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][472] ([fdo#110189] / [i915#3955]) -> [SKIP][473] ([i915#3955])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: [FAIL][474] ([i915#9295]) -> [SKIP][475] ([i915#3361])
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-rkl-2/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list:
- shard-dg1: [DMESG-FAIL][476] ([i915#10143]) -> [FAIL][477] ([i915#10136])
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14168/shard-dg1-14/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/shard-dg1-12/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#10030]: https://gitlab.freedesktop.org/drm/intel/issues/10030
[i915#10070]: https://gitlab.freedesktop.org/drm/intel/issues/10070
[i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131
[i915#10136]: https://gitlab.freedesktop.org/drm/intel/issues/10136
[i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137
[i915#10143]: https://gitlab.freedesktop.org/drm/intel/issues/10143
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/inte
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_129116v1/index.html
[-- Attachment #2: Type: text/html, Size: 115206 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Re: [PATCH 1/3] bits: introduce fixed-type genmasks
2024-01-24 7:58 ` Jani Nikula
@ 2024-01-24 14:03 ` Lucas De Marchi
2024-01-24 15:27 ` Yury Norov
0 siblings, 1 reply; 17+ messages in thread
From: Lucas De Marchi @ 2024-01-24 14:03 UTC (permalink / raw)
To: Jani Nikula
Cc: Yury Norov, intel-gfx, linux-kernel, dri-devel, Andy Shevchenko,
intel-xe
On Wed, Jan 24, 2024 at 09:58:26AM +0200, Jani Nikula wrote:
>On Tue, 23 Jan 2024, Lucas De Marchi <lucas.demarchi@intel.com> wrote:
>> From: Yury Norov <yury.norov@gmail.com>
>>
>> Generalize __GENMASK() to support different types, and implement
>> fixed-types versions of GENMASK() based on it. The fixed-type version
>> allows more strict checks to the min/max values accepted, which is
>> useful for defining registers like implemented by i915 and xe drivers
>> with their REG_GENMASK*() macros.
>
>Mmh, the commit message says the fixed-type version allows more strict
>checks, but none are actually added. GENMASK_INPUT_CHECK() remains the
>same.
>
>Compared to the i915 and xe versions, this is more lax now. You could
>specify GENMASK_U32(63,32) without complaints.
Doing this on top of the this series:
-#define XELPDP_PORT_M2P_COMMAND_TYPE_MASK REG_GENMASK(30, 27)
+#define XELPDP_PORT_M2P_COMMAND_TYPE_MASK REG_GENMASK(62, 32)
and I do get a build failure:
../drivers/gpu/drm/i915/display/intel_cx0_phy.c: In function ‘__intel_cx0_read_once’:
../include/linux/bits.h:41:31: error: left shift count >= width of type [-Werror=shift-count-overflow]
41 | (((t)~0ULL - ((t)(1) << (l)) + 1) & \
| ^~
I also tested them individually. All of these fail to build for me:
1)
-#define XELPDP_PORT_M2P_COMMAND_TYPE_MASK REG_GENMASK(30, 27)
+#define XELPDP_PORT_M2P_COMMAND_TYPE_MASK REG_GENMASK(32, 27)
2)
-#define XELPDP_PORT_M2P_COMMAND_TYPE_MASK REG_GENMASK(30, 27)
+#define XELPDP_PORT_M2P_COMMAND_TYPE_MASK REG_GENMASK(30, 31)
3)
-#define XELPDP_PORT_M2P_COMMAND_TYPE_MASK REG_GENMASK(30, 27)
+#define XELPDP_PORT_M2P_COMMAND_TYPE_MASK REG_GENMASK(30, -1)
Lucas De Marchi
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Re: [PATCH 1/3] bits: introduce fixed-type genmasks
2024-01-24 14:03 ` Lucas De Marchi
@ 2024-01-24 15:27 ` Yury Norov
2024-01-24 15:49 ` Gustavo Sousa
2024-01-29 14:49 ` Lucas De Marchi
0 siblings, 2 replies; 17+ messages in thread
From: Yury Norov @ 2024-01-24 15:27 UTC (permalink / raw)
To: Lucas De Marchi
Cc: intel-gfx, linux-kernel, dri-devel, Andy Shevchenko, intel-xe
On Wed, Jan 24, 2024 at 08:03:53AM -0600, Lucas De Marchi wrote:
> On Wed, Jan 24, 2024 at 09:58:26AM +0200, Jani Nikula wrote:
> > On Tue, 23 Jan 2024, Lucas De Marchi <lucas.demarchi@intel.com> wrote:
> > > From: Yury Norov <yury.norov@gmail.com>
> > >
> > > Generalize __GENMASK() to support different types, and implement
> > > fixed-types versions of GENMASK() based on it. The fixed-type version
> > > allows more strict checks to the min/max values accepted, which is
> > > useful for defining registers like implemented by i915 and xe drivers
> > > with their REG_GENMASK*() macros.
> >
> > Mmh, the commit message says the fixed-type version allows more strict
> > checks, but none are actually added. GENMASK_INPUT_CHECK() remains the
> > same.
> >
> > Compared to the i915 and xe versions, this is more lax now. You could
> > specify GENMASK_U32(63,32) without complaints.
>
> Doing this on top of the this series:
>
> -#define XELPDP_PORT_M2P_COMMAND_TYPE_MASK REG_GENMASK(30, 27)
> +#define XELPDP_PORT_M2P_COMMAND_TYPE_MASK REG_GENMASK(62, 32)
>
> and I do get a build failure:
>
> ../drivers/gpu/drm/i915/display/intel_cx0_phy.c: In function ‘__intel_cx0_read_once’:
> ../include/linux/bits.h:41:31: error: left shift count >= width of type [-Werror=shift-count-overflow]
> 41 | (((t)~0ULL - ((t)(1) << (l)) + 1) & \
> | ^~
I would better include this in commit message to avoid people's
confusion. If it comes to v2, can you please do it and mention that
this trick relies on shift-count-overflow compiler check?
Thanks,
Yury
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Re: [PATCH 1/3] bits: introduce fixed-type genmasks
2024-01-24 15:27 ` Yury Norov
@ 2024-01-24 15:49 ` Gustavo Sousa
2024-01-25 9:56 ` Jani Nikula
2024-01-29 14:49 ` Lucas De Marchi
1 sibling, 1 reply; 17+ messages in thread
From: Gustavo Sousa @ 2024-01-24 15:49 UTC (permalink / raw)
To: Lucas De Marchi, Yury Norov
Cc: Jani Nikula, intel-gfx, linux-kernel, dri-devel, Andy Shevchenko,
intel-xe
Quoting Yury Norov (2024-01-24 12:27:58-03:00)
>On Wed, Jan 24, 2024 at 08:03:53AM -0600, Lucas De Marchi wrote:
>> On Wed, Jan 24, 2024 at 09:58:26AM +0200, Jani Nikula wrote:
>> > On Tue, 23 Jan 2024, Lucas De Marchi <lucas.demarchi@intel.com> wrote:
>> > > From: Yury Norov <yury.norov@gmail.com>
>> > >
>> > > Generalize __GENMASK() to support different types, and implement
>> > > fixed-types versions of GENMASK() based on it. The fixed-type version
>> > > allows more strict checks to the min/max values accepted, which is
>> > > useful for defining registers like implemented by i915 and xe drivers
>> > > with their REG_GENMASK*() macros.
>> >
>> > Mmh, the commit message says the fixed-type version allows more strict
>> > checks, but none are actually added. GENMASK_INPUT_CHECK() remains the
>> > same.
>> >
>> > Compared to the i915 and xe versions, this is more lax now. You could
>> > specify GENMASK_U32(63,32) without complaints.
>>
>> Doing this on top of the this series:
>>
>> -#define XELPDP_PORT_M2P_COMMAND_TYPE_MASK REG_GENMASK(30, 27)
>> +#define XELPDP_PORT_M2P_COMMAND_TYPE_MASK REG_GENMASK(62, 32)
>>
>> and I do get a build failure:
>>
>> ../drivers/gpu/drm/i915/display/intel_cx0_phy.c: In function ‘__intel_cx0_read_once’:
>> ../include/linux/bits.h:41:31: error: left shift count >= width of type [-Werror=shift-count-overflow]
>> 41 | (((t)~0ULL - ((t)(1) << (l)) + 1) & \
>> | ^~
>
>I would better include this in commit message to avoid people's
>confusion. If it comes to v2, can you please do it and mention that
>this trick relies on shift-count-overflow compiler check?
Wouldn't it be better to have explicit check that l and h are not out of bounds
based on BITS_PER_TYPE() than relying on a compiler flag that could be turned
off (maybe for some questionable reason, but even so)?
--
Gustavo Sousa
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Re: [PATCH 1/3] bits: introduce fixed-type genmasks
2024-01-24 15:49 ` Gustavo Sousa
@ 2024-01-25 9:56 ` Jani Nikula
0 siblings, 0 replies; 17+ messages in thread
From: Jani Nikula @ 2024-01-25 9:56 UTC (permalink / raw)
To: Gustavo Sousa, Lucas De Marchi, Yury Norov
Cc: intel-gfx, Andy Shevchenko, linux-kernel, dri-devel, intel-xe
On Wed, 24 Jan 2024, Gustavo Sousa <gustavo.sousa@intel.com> wrote:
> Quoting Yury Norov (2024-01-24 12:27:58-03:00)
>>On Wed, Jan 24, 2024 at 08:03:53AM -0600, Lucas De Marchi wrote:
>>> On Wed, Jan 24, 2024 at 09:58:26AM +0200, Jani Nikula wrote:
>>> > On Tue, 23 Jan 2024, Lucas De Marchi <lucas.demarchi@intel.com> wrote:
>>> > > From: Yury Norov <yury.norov@gmail.com>
>>> > >
>>> > > Generalize __GENMASK() to support different types, and implement
>>> > > fixed-types versions of GENMASK() based on it. The fixed-type version
>>> > > allows more strict checks to the min/max values accepted, which is
>>> > > useful for defining registers like implemented by i915 and xe drivers
>>> > > with their REG_GENMASK*() macros.
>>> >
>>> > Mmh, the commit message says the fixed-type version allows more strict
>>> > checks, but none are actually added. GENMASK_INPUT_CHECK() remains the
>>> > same.
>>> >
>>> > Compared to the i915 and xe versions, this is more lax now. You could
>>> > specify GENMASK_U32(63,32) without complaints.
>>>
>>> Doing this on top of the this series:
>>>
>>> -#define XELPDP_PORT_M2P_COMMAND_TYPE_MASK REG_GENMASK(30, 27)
>>> +#define XELPDP_PORT_M2P_COMMAND_TYPE_MASK REG_GENMASK(62, 32)
>>>
>>> and I do get a build failure:
>>>
>>> ../drivers/gpu/drm/i915/display/intel_cx0_phy.c: In function ‘__intel_cx0_read_once’:
>>> ../include/linux/bits.h:41:31: error: left shift count >= width of type [-Werror=shift-count-overflow]
>>> 41 | (((t)~0ULL - ((t)(1) << (l)) + 1) & \
>>> | ^~
I stand corrected.
>>
>>I would better include this in commit message to avoid people's
>>confusion. If it comes to v2, can you please do it and mention that
>>this trick relies on shift-count-overflow compiler check?
>
> Wouldn't it be better to have explicit check that l and h are not out of bounds
> based on BITS_PER_TYPE() than relying on a compiler flag that could be turned
> off (maybe for some questionable reason, but even so)?
My preference would be the explicit check, a comment in code, or an
explanation in the commit message, in this order. Because honestly, none
of this is obvious, and a future refactoring of GENMASK might just
inadvertently thwart the whole check.
Regardless, my main concern was moot, on the series,
Acked-by: Jani Nikula <jani.nikula@intel.com>
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Re: Re: [PATCH 1/3] bits: introduce fixed-type genmasks
2024-01-24 15:27 ` Yury Norov
2024-01-24 15:49 ` Gustavo Sousa
@ 2024-01-29 14:49 ` Lucas De Marchi
2024-01-29 15:11 ` Yury Norov
1 sibling, 1 reply; 17+ messages in thread
From: Lucas De Marchi @ 2024-01-29 14:49 UTC (permalink / raw)
To: Yury Norov; +Cc: intel-gfx, Andy Shevchenko, linux-kernel, dri-devel, intel-xe
On Wed, Jan 24, 2024 at 07:27:58AM -0800, Yury Norov wrote:
>On Wed, Jan 24, 2024 at 08:03:53AM -0600, Lucas De Marchi wrote:
>> On Wed, Jan 24, 2024 at 09:58:26AM +0200, Jani Nikula wrote:
>> > On Tue, 23 Jan 2024, Lucas De Marchi <lucas.demarchi@intel.com> wrote:
>> > > From: Yury Norov <yury.norov@gmail.com>
>> > >
>> > > Generalize __GENMASK() to support different types, and implement
>> > > fixed-types versions of GENMASK() based on it. The fixed-type version
>> > > allows more strict checks to the min/max values accepted, which is
>> > > useful for defining registers like implemented by i915 and xe drivers
>> > > with their REG_GENMASK*() macros.
>> >
>> > Mmh, the commit message says the fixed-type version allows more strict
>> > checks, but none are actually added. GENMASK_INPUT_CHECK() remains the
>> > same.
>> >
>> > Compared to the i915 and xe versions, this is more lax now. You could
>> > specify GENMASK_U32(63,32) without complaints.
>>
>> Doing this on top of the this series:
>>
>> -#define XELPDP_PORT_M2P_COMMAND_TYPE_MASK REG_GENMASK(30, 27)
>> +#define XELPDP_PORT_M2P_COMMAND_TYPE_MASK REG_GENMASK(62, 32)
>>
>> and I do get a build failure:
>>
>> ../drivers/gpu/drm/i915/display/intel_cx0_phy.c: In function ‘__intel_cx0_read_once’:
>> ../include/linux/bits.h:41:31: error: left shift count >= width of type [-Werror=shift-count-overflow]
>> 41 | (((t)~0ULL - ((t)(1) << (l)) + 1) & \
>> | ^~
>
>I would better include this in commit message to avoid people's
>confusion. If it comes to v2, can you please do it and mention that
>this trick relies on shift-count-overflow compiler check?
either that or an explicit check as it was suggested. What's your
preference?
Lucas De Marchi
>
>Thanks,
>Yury
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: Re: Re: [PATCH 1/3] bits: introduce fixed-type genmasks
2024-01-29 14:49 ` Lucas De Marchi
@ 2024-01-29 15:11 ` Yury Norov
0 siblings, 0 replies; 17+ messages in thread
From: Yury Norov @ 2024-01-29 15:11 UTC (permalink / raw)
To: Lucas De Marchi
Cc: intel-gfx, linux-kernel, dri-devel, Andy Shevchenko, intel-xe
On Mon, Jan 29, 2024 at 08:49:35AM -0600, Lucas De Marchi wrote:
> On Wed, Jan 24, 2024 at 07:27:58AM -0800, Yury Norov wrote:
> > On Wed, Jan 24, 2024 at 08:03:53AM -0600, Lucas De Marchi wrote:
> > > On Wed, Jan 24, 2024 at 09:58:26AM +0200, Jani Nikula wrote:
> > > > On Tue, 23 Jan 2024, Lucas De Marchi <lucas.demarchi@intel.com> wrote:
> > > > > From: Yury Norov <yury.norov@gmail.com>
> > > > >
> > > > > Generalize __GENMASK() to support different types, and implement
> > > > > fixed-types versions of GENMASK() based on it. The fixed-type version
> > > > > allows more strict checks to the min/max values accepted, which is
> > > > > useful for defining registers like implemented by i915 and xe drivers
> > > > > with their REG_GENMASK*() macros.
> > > >
> > > > Mmh, the commit message says the fixed-type version allows more strict
> > > > checks, but none are actually added. GENMASK_INPUT_CHECK() remains the
> > > > same.
> > > >
> > > > Compared to the i915 and xe versions, this is more lax now. You could
> > > > specify GENMASK_U32(63,32) without complaints.
> > >
> > > Doing this on top of the this series:
> > >
> > > -#define XELPDP_PORT_M2P_COMMAND_TYPE_MASK REG_GENMASK(30, 27)
> > > +#define XELPDP_PORT_M2P_COMMAND_TYPE_MASK REG_GENMASK(62, 32)
> > >
> > > and I do get a build failure:
> > >
> > > ../drivers/gpu/drm/i915/display/intel_cx0_phy.c: In function ‘__intel_cx0_read_once’:
> > > ../include/linux/bits.h:41:31: error: left shift count >= width of type [-Werror=shift-count-overflow]
> > > 41 | (((t)~0ULL - ((t)(1) << (l)) + 1) & \
> > > | ^~
> >
> > I would better include this in commit message to avoid people's
> > confusion. If it comes to v2, can you please do it and mention that
> > this trick relies on shift-count-overflow compiler check?
>
> either that or an explicit check as it was suggested. What's your
> preference?
Let's put a comment in the code. An argument that shift-count-overflow
may be disabled sounds more like a speculation unless we have a solid
example of a build system where the error is disabled for a good sane
reason, but possible GENMASK() overflow is still considered dangerous.
GENMASK() is all about bit shifts, so shift-related error is something
I'd expect when using GENMASK().
Also, the macro is widely used in the kernel:
yury:linux$ git grep GENMASK | wc -l
26879
Explicit check would add pressure on the compiler for nothing.
Thanks,
Yury
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH 2/3] bits: Introduce fixed-type BIT
2024-01-24 5:02 ` [PATCH 2/3] bits: Introduce fixed-type BIT Lucas De Marchi
@ 2024-02-09 16:48 ` Yury Norov
0 siblings, 0 replies; 17+ messages in thread
From: Yury Norov @ 2024-02-09 16:48 UTC (permalink / raw)
To: Lucas De Marchi
Cc: linux-kernel, dri-devel, Andy Shevchenko, Jani Nikula, intel-xe,
intel-gfx
On Tue, Jan 23, 2024 at 09:02:04PM -0800, Lucas De Marchi wrote:
> Implement fixed-type BIT() to help drivers add stricter checks, like was
> done for GENMASK.
>
> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: Yury Norov <yury.norov@gmail.com>
> ---
> include/linux/bits.h | 9 +++++++++
> 1 file changed, 9 insertions(+)
>
> diff --git a/include/linux/bits.h b/include/linux/bits.h
> index cb94128171b2..5754a1251078 100644
> --- a/include/linux/bits.h
> +++ b/include/linux/bits.h
> @@ -24,12 +24,16 @@
> #define GENMASK_INPUT_CHECK(h, l) \
> (BUILD_BUG_ON_ZERO(__builtin_choose_expr( \
> __is_constexpr((l) > (h)), (l) > (h), 0)))
> +#define BIT_INPUT_CHECK(type, b) \
> + ((BUILD_BUG_ON_ZERO(__builtin_choose_expr( \
> + __is_constexpr(b), (b) >= BITS_PER_TYPE(type), 0))))
> #else
> /*
> * BUILD_BUG_ON_ZERO is not available in h files included from asm files,
> * disable the input check if that is the case.
> */
> #define GENMASK_INPUT_CHECK(h, l) 0
> +#define BIT_INPUT_CHECK(type, b) 0
> #endif
>
> #define __GENMASK(t, h, l) \
> @@ -44,4 +48,9 @@
> #define GENMASK_U32(h, l) __GENMASK(u32, h, l)
> #define GENMASK_U64(h, l) __GENMASK(u64, h, l)
>
> +#define BIT_U8(b) ((u8)(BIT_INPUT_CHECK(u8, b) + BIT(b)))
> +#define BIT_U16(b) ((u16)(BIT_INPUT_CHECK(u16, b) + BIT(b)))
> +#define BIT_U32(b) ((u32)(BIT_INPUT_CHECK(u32, b) + BIT(b)))
> +#define BIT_U64(b) ((u64)(BIT_INPUT_CHECK(u64, b) + BIT(b)))
> +
> #endif /* __LINUX_BITS_H */
> --
> 2.43.0
^ permalink raw reply [flat|nested] 17+ messages in thread
end of thread, other threads:[~2024-02-12 13:01 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-24 5:02 [PATCH 0/3] Fixed-type GENMASK/BIT Lucas De Marchi
2024-01-24 5:02 ` [PATCH 1/3] bits: introduce fixed-type genmasks Lucas De Marchi
2024-01-24 7:58 ` Jani Nikula
2024-01-24 14:03 ` Lucas De Marchi
2024-01-24 15:27 ` Yury Norov
2024-01-24 15:49 ` Gustavo Sousa
2024-01-25 9:56 ` Jani Nikula
2024-01-29 14:49 ` Lucas De Marchi
2024-01-29 15:11 ` Yury Norov
2024-01-24 5:02 ` [PATCH 2/3] bits: Introduce fixed-type BIT Lucas De Marchi
2024-02-09 16:48 ` Yury Norov
2024-01-24 5:02 ` [PATCH 3/3] drm/i915: Convert REG_GENMASK* to fixed-width GENMASK_* Lucas De Marchi
2024-01-24 8:04 ` Jani Nikula
2024-01-24 6:15 ` ✗ Fi.CI.CHECKPATCH: warning for Fixed-type GENMASK/BIT Patchwork
2024-01-24 6:15 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-01-24 6:15 ` ✓ Fi.CI.BAT: success " Patchwork
2024-01-24 13:46 ` ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).