* [PATCH 1/3] drm/i915: rename range_overflows_end() to range_end_overflows()
@ 2025-08-29 17:45 Jani Nikula
2025-08-29 17:46 ` [PATCH 2/3] drm/i915: document range_overflows() and range_end_overflows() macros Jani Nikula
` (4 more replies)
0 siblings, 5 replies; 12+ messages in thread
From: Jani Nikula @ 2025-08-29 17:45 UTC (permalink / raw)
To: intel-gfx, dri-devel
Cc: linux-kernel, jani.nikula, Kees Cook, Gustavo A. R. Silva,
linux-hardening
Rename range_overflows_end() to range_end_overflows(), along with the _t
variant.
It's all rather subjective, but I think range_end_overflows() reads
better.
Cc: Kees Cook <kees@kernel.org>
Cc: Gustavo A. R. Silva <gustavoars@kernel.org>
Cc: linux-hardening@vger.kernel.org
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_fbc.c | 4 ++--
drivers/gpu/drm/i915/gt/intel_rc6.c | 2 +-
drivers/gpu/drm/i915/i915_utils.h | 6 +++---
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c b/drivers/gpu/drm/i915/display/intel_fbc.c
index d4c5deff9cbe..446e2ad28a70 100644
--- a/drivers/gpu/drm/i915/display/intel_fbc.c
+++ b/drivers/gpu/drm/i915/display/intel_fbc.c
@@ -383,11 +383,11 @@ static void i8xx_fbc_program_cfb(struct intel_fbc *fbc)
struct drm_i915_private *i915 = to_i915(display->drm);
drm_WARN_ON(display->drm,
- range_overflows_end_t(u64, i915_gem_stolen_area_address(i915),
+ range_end_overflows_t(u64, i915_gem_stolen_area_address(i915),
i915_gem_stolen_node_offset(&fbc->compressed_fb),
U32_MAX));
drm_WARN_ON(display->drm,
- range_overflows_end_t(u64, i915_gem_stolen_area_address(i915),
+ range_end_overflows_t(u64, i915_gem_stolen_area_address(i915),
i915_gem_stolen_node_offset(&fbc->compressed_llb),
U32_MAX));
intel_de_write(display, FBC_CFB_BASE,
diff --git a/drivers/gpu/drm/i915/gt/intel_rc6.c b/drivers/gpu/drm/i915/gt/intel_rc6.c
index 9ca42589da4d..bf38cc5fe872 100644
--- a/drivers/gpu/drm/i915/gt/intel_rc6.c
+++ b/drivers/gpu/drm/i915/gt/intel_rc6.c
@@ -341,7 +341,7 @@ static int vlv_rc6_init(struct intel_rc6 *rc6)
return PTR_ERR(pctx);
}
- GEM_BUG_ON(range_overflows_end_t(u64,
+ GEM_BUG_ON(range_end_overflows_t(u64,
i915->dsm.stolen.start,
pctx->stolen->start,
U32_MAX));
diff --git a/drivers/gpu/drm/i915/i915_utils.h b/drivers/gpu/drm/i915/i915_utils.h
index 9cb40c2c4b12..fdac9a158b53 100644
--- a/drivers/gpu/drm/i915/i915_utils.h
+++ b/drivers/gpu/drm/i915/i915_utils.h
@@ -79,7 +79,7 @@ bool i915_error_injected(void);
#define range_overflows_t(type, start, size, max) \
range_overflows((type)(start), (type)(size), (type)(max))
-#define range_overflows_end(start, size, max) ({ \
+#define range_end_overflows(start, size, max) ({ \
typeof(start) start__ = (start); \
typeof(size) size__ = (size); \
typeof(max) max__ = (max); \
@@ -88,8 +88,8 @@ bool i915_error_injected(void);
start__ > max__ || size__ > max__ - start__; \
})
-#define range_overflows_end_t(type, start, size, max) \
- range_overflows_end((type)(start), (type)(size), (type)(max))
+#define range_end_overflows_t(type, start, size, max) \
+ range_end_overflows((type)(start), (type)(size), (type)(max))
#define ptr_mask_bits(ptr, n) ({ \
unsigned long __v = (unsigned long)(ptr); \
--
2.47.2
^ permalink raw reply related [flat|nested] 12+ messages in thread* [PATCH 2/3] drm/i915: document range_overflows() and range_end_overflows() macros 2025-08-29 17:45 [PATCH 1/3] drm/i915: rename range_overflows_end() to range_end_overflows() Jani Nikula @ 2025-08-29 17:46 ` Jani Nikula 2025-09-08 12:27 ` Hogander, Jouni 2025-08-29 17:46 ` [PATCH 3/3] overflow: add range_overflows() and range_end_overflows() Jani Nikula ` (3 subsequent siblings) 4 siblings, 1 reply; 12+ messages in thread From: Jani Nikula @ 2025-08-29 17:46 UTC (permalink / raw) To: intel-gfx, dri-devel Cc: linux-kernel, jani.nikula, Kees Cook, Gustavo A. R. Silva, linux-hardening Document the macros in preparation for making them more generally available. Cc: Kees Cook <kees@kernel.org> Cc: Gustavo A. R. Silva <gustavoars@kernel.org> Cc: linux-hardening@vger.kernel.org Signed-off-by: Jani Nikula <jani.nikula@intel.com> --- drivers/gpu/drm/i915/i915_utils.h | 46 +++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/drivers/gpu/drm/i915/i915_utils.h b/drivers/gpu/drm/i915/i915_utils.h index fdac9a158b53..968dae941532 100644 --- a/drivers/gpu/drm/i915/i915_utils.h +++ b/drivers/gpu/drm/i915/i915_utils.h @@ -67,6 +67,18 @@ bool i915_error_injected(void); drm_err(&(i915)->drm, fmt, ##__VA_ARGS__); \ }) +/** + * range_overflows() - Check if a range is out of bounds + * @start: Start of the range. + * @size: Size of the range. + * @max: Exclusive upper boundary. + * + * A strict check to determine if the range [@start, @start + @size) is + * invalid with respect to the allowable range [0, @max). Any range + * starting at or beyond @max is considered an overflow, even if @size is 0. + * + * Returns: true if the range is out of bounds. + */ #define range_overflows(start, size, max) ({ \ typeof(start) start__ = (start); \ typeof(size) size__ = (size); \ @@ -76,9 +88,32 @@ bool i915_error_injected(void); start__ >= max__ || size__ > max__ - start__; \ }) +/** + * range_overflows_t() - Check if a range is out of bounds + * @type: Data type to use. + * @start: Start of the range. + * @size: Size of the range. + * @max: Exclusive upper boundary. + * + * Same as range_overflows() but forcing the parameters to @type. + * + * Returns: true if the range is out of bounds. + */ #define range_overflows_t(type, start, size, max) \ range_overflows((type)(start), (type)(size), (type)(max)) +/** + * range_end_overflows() - Check if a range's endpoint is out of bounds + * @start: Start of the range. + * @size: Size of the range. + * @max: Exclusive upper boundary. + * + * Checks only if the endpoint of a range (@start + @size) exceeds @max. + * Unlike range_overflows(), a zero-sized range at the boundary (@start == @max) + * is not considered an overflow. Useful for iterator-style checks. + * + * Returns: true if the endpoint exceeds the boundary. + */ #define range_end_overflows(start, size, max) ({ \ typeof(start) start__ = (start); \ typeof(size) size__ = (size); \ @@ -88,6 +123,17 @@ bool i915_error_injected(void); start__ > max__ || size__ > max__ - start__; \ }) +/** + * range_end_overflows_t() - Check if a range's endpoint is out of bounds + * @type: Data type to use. + * @start: Start of the range. + * @size: Size of the range. + * @max: Exclusive upper boundary. + * + * Same as range_end_overflows() but forcing the parameters to @type. + * + * Returns: true if the endpoint exceeds the boundary. + */ #define range_end_overflows_t(type, start, size, max) \ range_end_overflows((type)(start), (type)(size), (type)(max)) -- 2.47.2 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH 2/3] drm/i915: document range_overflows() and range_end_overflows() macros 2025-08-29 17:46 ` [PATCH 2/3] drm/i915: document range_overflows() and range_end_overflows() macros Jani Nikula @ 2025-09-08 12:27 ` Hogander, Jouni 0 siblings, 0 replies; 12+ messages in thread From: Hogander, Jouni @ 2025-09-08 12:27 UTC (permalink / raw) To: dri-devel@lists.freedesktop.org, Nikula, Jani, intel-gfx@lists.freedesktop.org Cc: kees@kernel.org, linux-kernel@vger.kernel.org, linux-hardening@vger.kernel.org, gustavoars@kernel.org On Fri, 2025-08-29 at 20:46 +0300, Jani Nikula wrote: > Document the macros in preparation for making them more generally > available. > > Cc: Kees Cook <kees@kernel.org> > Cc: Gustavo A. R. Silva <gustavoars@kernel.org> > Cc: linux-hardening@vger.kernel.org > Signed-off-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Jouni Högander <jouni.hogander@intel.com> > --- > drivers/gpu/drm/i915/i915_utils.h | 46 > +++++++++++++++++++++++++++++++ > 1 file changed, 46 insertions(+) > > diff --git a/drivers/gpu/drm/i915/i915_utils.h > b/drivers/gpu/drm/i915/i915_utils.h > index fdac9a158b53..968dae941532 100644 > --- a/drivers/gpu/drm/i915/i915_utils.h > +++ b/drivers/gpu/drm/i915/i915_utils.h > @@ -67,6 +67,18 @@ bool i915_error_injected(void); > drm_err(&(i915)->drm, fmt, ##__VA_ARGS__); \ > }) > > +/** > + * range_overflows() - Check if a range is out of bounds > + * @start: Start of the range. > + * @size: Size of the range. > + * @max: Exclusive upper boundary. > + * > + * A strict check to determine if the range [@start, @start + @size) > is > + * invalid with respect to the allowable range [0, @max). Any range > + * starting at or beyond @max is considered an overflow, even if > @size is 0. > + * > + * Returns: true if the range is out of bounds. > + */ > #define range_overflows(start, size, max) ({ \ > typeof(start) start__ = (start); \ > typeof(size) size__ = (size); \ > @@ -76,9 +88,32 @@ bool i915_error_injected(void); > start__ >= max__ || size__ > max__ - start__; \ > }) > > +/** > + * range_overflows_t() - Check if a range is out of bounds > + * @type: Data type to use. > + * @start: Start of the range. > + * @size: Size of the range. > + * @max: Exclusive upper boundary. > + * > + * Same as range_overflows() but forcing the parameters to @type. > + * > + * Returns: true if the range is out of bounds. > + */ > #define range_overflows_t(type, start, size, max) \ > range_overflows((type)(start), (type)(size), (type)(max)) > > +/** > + * range_end_overflows() - Check if a range's endpoint is out of > bounds > + * @start: Start of the range. > + * @size: Size of the range. > + * @max: Exclusive upper boundary. > + * > + * Checks only if the endpoint of a range (@start + @size) exceeds > @max. > + * Unlike range_overflows(), a zero-sized range at the boundary > (@start == @max) > + * is not considered an overflow. Useful for iterator-style checks. > + * > + * Returns: true if the endpoint exceeds the boundary. > + */ > #define range_end_overflows(start, size, max) ({ \ > typeof(start) start__ = (start); \ > typeof(size) size__ = (size); \ > @@ -88,6 +123,17 @@ bool i915_error_injected(void); > start__ > max__ || size__ > max__ - start__; \ > }) > > +/** > + * range_end_overflows_t() - Check if a range's endpoint is out of > bounds > + * @type: Data type to use. > + * @start: Start of the range. > + * @size: Size of the range. > + * @max: Exclusive upper boundary. > + * > + * Same as range_end_overflows() but forcing the parameters to > @type. > + * > + * Returns: true if the endpoint exceeds the boundary. > + */ > #define range_end_overflows_t(type, start, size, max) \ > range_end_overflows((type)(start), (type)(size), > (type)(max)) > ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH 3/3] overflow: add range_overflows() and range_end_overflows() 2025-08-29 17:45 [PATCH 1/3] drm/i915: rename range_overflows_end() to range_end_overflows() Jani Nikula 2025-08-29 17:46 ` [PATCH 2/3] drm/i915: document range_overflows() and range_end_overflows() macros Jani Nikula @ 2025-08-29 17:46 ` Jani Nikula 2025-09-04 2:43 ` Kees Cook 2025-09-08 12:28 ` Hogander, Jouni 2025-08-29 18:45 ` ✓ i915.CI.BAT: success for series starting with [1/3] drm/i915: rename range_overflows_end() to range_end_overflows() Patchwork ` (2 subsequent siblings) 4 siblings, 2 replies; 12+ messages in thread From: Jani Nikula @ 2025-08-29 17:46 UTC (permalink / raw) To: intel-gfx, dri-devel Cc: linux-kernel, jani.nikula, Kees Cook, Gustavo A. R. Silva, linux-hardening Move the range_overflows() and range_end_overflows() along with the _t variants over from drm/i915 and drm/buddy to overflow.h. Cc: Kees Cook <kees@kernel.org> Cc: Gustavo A. R. Silva <gustavoars@kernel.org> Cc: linux-hardening@vger.kernel.org Signed-off-by: Jani Nikula <jani.nikula@intel.com> --- drivers/gpu/drm/i915/i915_utils.h | 70 ------------------------------- include/drm/drm_buddy.h | 9 ---- include/linux/overflow.h | 70 +++++++++++++++++++++++++++++++ 3 files changed, 70 insertions(+), 79 deletions(-) diff --git a/drivers/gpu/drm/i915/i915_utils.h b/drivers/gpu/drm/i915/i915_utils.h index 968dae941532..eb4d43c40009 100644 --- a/drivers/gpu/drm/i915/i915_utils.h +++ b/drivers/gpu/drm/i915/i915_utils.h @@ -67,76 +67,6 @@ bool i915_error_injected(void); drm_err(&(i915)->drm, fmt, ##__VA_ARGS__); \ }) -/** - * range_overflows() - Check if a range is out of bounds - * @start: Start of the range. - * @size: Size of the range. - * @max: Exclusive upper boundary. - * - * A strict check to determine if the range [@start, @start + @size) is - * invalid with respect to the allowable range [0, @max). Any range - * starting at or beyond @max is considered an overflow, even if @size is 0. - * - * Returns: true if the range is out of bounds. - */ -#define range_overflows(start, size, max) ({ \ - typeof(start) start__ = (start); \ - typeof(size) size__ = (size); \ - typeof(max) max__ = (max); \ - (void)(&start__ == &size__); \ - (void)(&start__ == &max__); \ - start__ >= max__ || size__ > max__ - start__; \ -}) - -/** - * range_overflows_t() - Check if a range is out of bounds - * @type: Data type to use. - * @start: Start of the range. - * @size: Size of the range. - * @max: Exclusive upper boundary. - * - * Same as range_overflows() but forcing the parameters to @type. - * - * Returns: true if the range is out of bounds. - */ -#define range_overflows_t(type, start, size, max) \ - range_overflows((type)(start), (type)(size), (type)(max)) - -/** - * range_end_overflows() - Check if a range's endpoint is out of bounds - * @start: Start of the range. - * @size: Size of the range. - * @max: Exclusive upper boundary. - * - * Checks only if the endpoint of a range (@start + @size) exceeds @max. - * Unlike range_overflows(), a zero-sized range at the boundary (@start == @max) - * is not considered an overflow. Useful for iterator-style checks. - * - * Returns: true if the endpoint exceeds the boundary. - */ -#define range_end_overflows(start, size, max) ({ \ - typeof(start) start__ = (start); \ - typeof(size) size__ = (size); \ - typeof(max) max__ = (max); \ - (void)(&start__ == &size__); \ - (void)(&start__ == &max__); \ - start__ > max__ || size__ > max__ - start__; \ -}) - -/** - * range_end_overflows_t() - Check if a range's endpoint is out of bounds - * @type: Data type to use. - * @start: Start of the range. - * @size: Size of the range. - * @max: Exclusive upper boundary. - * - * Same as range_end_overflows() but forcing the parameters to @type. - * - * Returns: true if the endpoint exceeds the boundary. - */ -#define range_end_overflows_t(type, start, size, max) \ - range_end_overflows((type)(start), (type)(size), (type)(max)) - #define ptr_mask_bits(ptr, n) ({ \ unsigned long __v = (unsigned long)(ptr); \ (typeof(ptr))(__v & -BIT(n)); \ diff --git a/include/drm/drm_buddy.h b/include/drm/drm_buddy.h index 513837632b7d..04afd7c21a82 100644 --- a/include/drm/drm_buddy.h +++ b/include/drm/drm_buddy.h @@ -13,15 +13,6 @@ #include <drm/drm_print.h> -#define range_overflows(start, size, max) ({ \ - typeof(start) start__ = (start); \ - typeof(size) size__ = (size); \ - typeof(max) max__ = (max); \ - (void)(&start__ == &size__); \ - (void)(&start__ == &max__); \ - start__ >= max__ || size__ > max__ - start__; \ -}) - #define DRM_BUDDY_RANGE_ALLOCATION BIT(0) #define DRM_BUDDY_TOPDOWN_ALLOCATION BIT(1) #define DRM_BUDDY_CONTIGUOUS_ALLOCATION BIT(2) diff --git a/include/linux/overflow.h b/include/linux/overflow.h index 154ed0dbb43f..725f95f7e416 100644 --- a/include/linux/overflow.h +++ b/include/linux/overflow.h @@ -238,6 +238,76 @@ static inline bool __must_check __must_check_overflow(bool overflow) __overflows_type_constexpr(n, T), \ __overflows_type(n, T)) +/** + * range_overflows() - Check if a range is out of bounds + * @start: Start of the range. + * @size: Size of the range. + * @max: Exclusive upper boundary. + * + * A strict check to determine if the range [@start, @start + @size) is + * invalid with respect to the allowable range [0, @max). Any range + * starting at or beyond @max is considered an overflow, even if @size is 0. + * + * Returns: true if the range is out of bounds. + */ +#define range_overflows(start, size, max) ({ \ + typeof(start) start__ = (start); \ + typeof(size) size__ = (size); \ + typeof(max) max__ = (max); \ + (void)(&start__ == &size__); \ + (void)(&start__ == &max__); \ + start__ >= max__ || size__ > max__ - start__; \ +}) + +/** + * range_overflows_t() - Check if a range is out of bounds + * @type: Data type to use. + * @start: Start of the range. + * @size: Size of the range. + * @max: Exclusive upper boundary. + * + * Same as range_overflows() but forcing the parameters to @type. + * + * Returns: true if the range is out of bounds. + */ +#define range_overflows_t(type, start, size, max) \ + range_overflows((type)(start), (type)(size), (type)(max)) + +/** + * range_end_overflows() - Check if a range's endpoint is out of bounds + * @start: Start of the range. + * @size: Size of the range. + * @max: Exclusive upper boundary. + * + * Checks only if the endpoint of a range (@start + @size) exceeds @max. + * Unlike range_overflows(), a zero-sized range at the boundary (@start == @max) + * is not considered an overflow. Useful for iterator-style checks. + * + * Returns: true if the endpoint exceeds the boundary. + */ +#define range_end_overflows(start, size, max) ({ \ + typeof(start) start__ = (start); \ + typeof(size) size__ = (size); \ + typeof(max) max__ = (max); \ + (void)(&start__ == &size__); \ + (void)(&start__ == &max__); \ + start__ > max__ || size__ > max__ - start__; \ +}) + +/** + * range_end_overflows_t() - Check if a range's endpoint is out of bounds + * @type: Data type to use. + * @start: Start of the range. + * @size: Size of the range. + * @max: Exclusive upper boundary. + * + * Same as range_end_overflows() but forcing the parameters to @type. + * + * Returns: true if the endpoint exceeds the boundary. + */ +#define range_end_overflows_t(type, start, size, max) \ + range_end_overflows((type)(start), (type)(size), (type)(max)) + /** * castable_to_type - like __same_type(), but also allows for casted literals * -- 2.47.2 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH 3/3] overflow: add range_overflows() and range_end_overflows() 2025-08-29 17:46 ` [PATCH 3/3] overflow: add range_overflows() and range_end_overflows() Jani Nikula @ 2025-09-04 2:43 ` Kees Cook 2025-09-04 7:34 ` Jani Nikula 2025-09-08 12:28 ` Hogander, Jouni 1 sibling, 1 reply; 12+ messages in thread From: Kees Cook @ 2025-09-04 2:43 UTC (permalink / raw) To: Jani Nikula Cc: intel-gfx, dri-devel, linux-kernel, Gustavo A. R. Silva, linux-hardening On Fri, Aug 29, 2025 at 08:46:01PM +0300, Jani Nikula wrote: > Move the range_overflows() and range_end_overflows() along with the _t > variants over from drm/i915 and drm/buddy to overflow.h. > > Cc: Kees Cook <kees@kernel.org> > Cc: Gustavo A. R. Silva <gustavoars@kernel.org> > Cc: linux-hardening@vger.kernel.org > Signed-off-by: Jani Nikula <jani.nikula@intel.com> Looks good to me! :) Reviewed-by: Kees Cook <kees@kernel.org> -- Kees Cook ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 3/3] overflow: add range_overflows() and range_end_overflows() 2025-09-04 2:43 ` Kees Cook @ 2025-09-04 7:34 ` Jani Nikula 2025-09-04 16:27 ` Kees Cook 0 siblings, 1 reply; 12+ messages in thread From: Jani Nikula @ 2025-09-04 7:34 UTC (permalink / raw) To: Kees Cook Cc: intel-gfx, dri-devel, linux-kernel, Gustavo A. R. Silva, linux-hardening On Wed, 03 Sep 2025, Kees Cook <kees@kernel.org> wrote: > On Fri, Aug 29, 2025 at 08:46:01PM +0300, Jani Nikula wrote: >> Move the range_overflows() and range_end_overflows() along with the _t >> variants over from drm/i915 and drm/buddy to overflow.h. >> >> Cc: Kees Cook <kees@kernel.org> >> Cc: Gustavo A. R. Silva <gustavoars@kernel.org> >> Cc: linux-hardening@vger.kernel.org >> Signed-off-by: Jani Nikula <jani.nikula@intel.com> > > Looks good to me! :) > > Reviewed-by: Kees Cook <kees@kernel.org> Cool, thanks! How do you want to handle merging this? BR, Jani. -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 3/3] overflow: add range_overflows() and range_end_overflows() 2025-09-04 7:34 ` Jani Nikula @ 2025-09-04 16:27 ` Kees Cook 2025-09-08 12:43 ` Jani Nikula 0 siblings, 1 reply; 12+ messages in thread From: Kees Cook @ 2025-09-04 16:27 UTC (permalink / raw) To: Jani Nikula Cc: intel-gfx, dri-devel, linux-kernel, Gustavo A. R. Silva, linux-hardening On Thu, Sep 04, 2025 at 10:34:04AM +0300, Jani Nikula wrote: > On Wed, 03 Sep 2025, Kees Cook <kees@kernel.org> wrote: > > On Fri, Aug 29, 2025 at 08:46:01PM +0300, Jani Nikula wrote: > >> Move the range_overflows() and range_end_overflows() along with the _t > >> variants over from drm/i915 and drm/buddy to overflow.h. > >> > >> Cc: Kees Cook <kees@kernel.org> > >> Cc: Gustavo A. R. Silva <gustavoars@kernel.org> > >> Cc: linux-hardening@vger.kernel.org > >> Signed-off-by: Jani Nikula <jani.nikula@intel.com> > > > > Looks good to me! :) > > > > Reviewed-by: Kees Cook <kees@kernel.org> > > Cool, thanks! How do you want to handle merging this? Since it's touching drm, feel free to take it there. I'm not worried about conflict resolution in overflow.h. -- Kees Cook ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 3/3] overflow: add range_overflows() and range_end_overflows() 2025-09-04 16:27 ` Kees Cook @ 2025-09-08 12:43 ` Jani Nikula 0 siblings, 0 replies; 12+ messages in thread From: Jani Nikula @ 2025-09-08 12:43 UTC (permalink / raw) To: Kees Cook Cc: intel-gfx, dri-devel, linux-kernel, Gustavo A. R. Silva, linux-hardening, Jouni Högander, Thomas Zimmermann On Thu, 04 Sep 2025, Kees Cook <kees@kernel.org> wrote: > On Thu, Sep 04, 2025 at 10:34:04AM +0300, Jani Nikula wrote: >> On Wed, 03 Sep 2025, Kees Cook <kees@kernel.org> wrote: >> > On Fri, Aug 29, 2025 at 08:46:01PM +0300, Jani Nikula wrote: >> >> Move the range_overflows() and range_end_overflows() along with the _t >> >> variants over from drm/i915 and drm/buddy to overflow.h. >> >> >> >> Cc: Kees Cook <kees@kernel.org> >> >> Cc: Gustavo A. R. Silva <gustavoars@kernel.org> >> >> Cc: linux-hardening@vger.kernel.org >> >> Signed-off-by: Jani Nikula <jani.nikula@intel.com> >> > >> > Looks good to me! :) >> > >> > Reviewed-by: Kees Cook <kees@kernel.org> >> >> Cool, thanks! How do you want to handle merging this? > > Since it's touching drm, feel free to take it there. I'm not worried > about conflict resolution in overflow.h. Thanks a lot, series merged to drm-intel-next with Jouni's r-b and Thomas' IRC ack. BR, Jani. -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 3/3] overflow: add range_overflows() and range_end_overflows() 2025-08-29 17:46 ` [PATCH 3/3] overflow: add range_overflows() and range_end_overflows() Jani Nikula 2025-09-04 2:43 ` Kees Cook @ 2025-09-08 12:28 ` Hogander, Jouni 1 sibling, 0 replies; 12+ messages in thread From: Hogander, Jouni @ 2025-09-08 12:28 UTC (permalink / raw) To: dri-devel@lists.freedesktop.org, Nikula, Jani, intel-gfx@lists.freedesktop.org Cc: kees@kernel.org, linux-kernel@vger.kernel.org, linux-hardening@vger.kernel.org, gustavoars@kernel.org On Fri, 2025-08-29 at 20:46 +0300, Jani Nikula wrote: > Move the range_overflows() and range_end_overflows() along with the > _t > variants over from drm/i915 and drm/buddy to overflow.h. > > Cc: Kees Cook <kees@kernel.org> > Cc: Gustavo A. R. Silva <gustavoars@kernel.org> > Cc: linux-hardening@vger.kernel.org > Signed-off-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Jouni Högander <jouni.hogander@intel.com> > --- > drivers/gpu/drm/i915/i915_utils.h | 70 ----------------------------- > -- > include/drm/drm_buddy.h | 9 ---- > include/linux/overflow.h | 70 > +++++++++++++++++++++++++++++++ > 3 files changed, 70 insertions(+), 79 deletions(-) > > diff --git a/drivers/gpu/drm/i915/i915_utils.h > b/drivers/gpu/drm/i915/i915_utils.h > index 968dae941532..eb4d43c40009 100644 > --- a/drivers/gpu/drm/i915/i915_utils.h > +++ b/drivers/gpu/drm/i915/i915_utils.h > @@ -67,76 +67,6 @@ bool i915_error_injected(void); > drm_err(&(i915)->drm, fmt, ##__VA_ARGS__); \ > }) > > -/** > - * range_overflows() - Check if a range is out of bounds > - * @start: Start of the range. > - * @size: Size of the range. > - * @max: Exclusive upper boundary. > - * > - * A strict check to determine if the range [@start, @start + @size) > is > - * invalid with respect to the allowable range [0, @max). Any range > - * starting at or beyond @max is considered an overflow, even if > @size is 0. > - * > - * Returns: true if the range is out of bounds. > - */ > -#define range_overflows(start, size, max) ({ \ > - typeof(start) start__ = (start); \ > - typeof(size) size__ = (size); \ > - typeof(max) max__ = (max); \ > - (void)(&start__ == &size__); \ > - (void)(&start__ == &max__); \ > - start__ >= max__ || size__ > max__ - start__; \ > -}) > - > -/** > - * range_overflows_t() - Check if a range is out of bounds > - * @type: Data type to use. > - * @start: Start of the range. > - * @size: Size of the range. > - * @max: Exclusive upper boundary. > - * > - * Same as range_overflows() but forcing the parameters to @type. > - * > - * Returns: true if the range is out of bounds. > - */ > -#define range_overflows_t(type, start, size, max) \ > - range_overflows((type)(start), (type)(size), (type)(max)) > - > -/** > - * range_end_overflows() - Check if a range's endpoint is out of > bounds > - * @start: Start of the range. > - * @size: Size of the range. > - * @max: Exclusive upper boundary. > - * > - * Checks only if the endpoint of a range (@start + @size) exceeds > @max. > - * Unlike range_overflows(), a zero-sized range at the boundary > (@start == @max) > - * is not considered an overflow. Useful for iterator-style checks. > - * > - * Returns: true if the endpoint exceeds the boundary. > - */ > -#define range_end_overflows(start, size, max) ({ \ > - typeof(start) start__ = (start); \ > - typeof(size) size__ = (size); \ > - typeof(max) max__ = (max); \ > - (void)(&start__ == &size__); \ > - (void)(&start__ == &max__); \ > - start__ > max__ || size__ > max__ - start__; \ > -}) > - > -/** > - * range_end_overflows_t() - Check if a range's endpoint is out of > bounds > - * @type: Data type to use. > - * @start: Start of the range. > - * @size: Size of the range. > - * @max: Exclusive upper boundary. > - * > - * Same as range_end_overflows() but forcing the parameters to > @type. > - * > - * Returns: true if the endpoint exceeds the boundary. > - */ > -#define range_end_overflows_t(type, start, size, max) \ > - range_end_overflows((type)(start), (type)(size), > (type)(max)) > - > #define ptr_mask_bits(ptr, n) > ({ \ > unsigned long __v = (unsigned > long)(ptr); \ > (typeof(ptr))(__v & - > BIT(n)); \ > diff --git a/include/drm/drm_buddy.h b/include/drm/drm_buddy.h > index 513837632b7d..04afd7c21a82 100644 > --- a/include/drm/drm_buddy.h > +++ b/include/drm/drm_buddy.h > @@ -13,15 +13,6 @@ > > #include <drm/drm_print.h> > > -#define range_overflows(start, size, max) ({ \ > - typeof(start) start__ = (start); \ > - typeof(size) size__ = (size); \ > - typeof(max) max__ = (max); \ > - (void)(&start__ == &size__); \ > - (void)(&start__ == &max__); \ > - start__ >= max__ || size__ > max__ - start__; \ > -}) > - > #define DRM_BUDDY_RANGE_ALLOCATION BIT(0) > #define DRM_BUDDY_TOPDOWN_ALLOCATION BIT(1) > #define DRM_BUDDY_CONTIGUOUS_ALLOCATION BIT(2) > diff --git a/include/linux/overflow.h b/include/linux/overflow.h > index 154ed0dbb43f..725f95f7e416 100644 > --- a/include/linux/overflow.h > +++ b/include/linux/overflow.h > @@ -238,6 +238,76 @@ static inline bool __must_check > __must_check_overflow(bool overflow) > __overflows_type_constexpr(n, > T), \ > __overflows_type(n, T)) > > +/** > + * range_overflows() - Check if a range is out of bounds > + * @start: Start of the range. > + * @size: Size of the range. > + * @max: Exclusive upper boundary. > + * > + * A strict check to determine if the range [@start, @start + @size) > is > + * invalid with respect to the allowable range [0, @max). Any range > + * starting at or beyond @max is considered an overflow, even if > @size is 0. > + * > + * Returns: true if the range is out of bounds. > + */ > +#define range_overflows(start, size, max) ({ \ > + typeof(start) start__ = (start); \ > + typeof(size) size__ = (size); \ > + typeof(max) max__ = (max); \ > + (void)(&start__ == &size__); \ > + (void)(&start__ == &max__); \ > + start__ >= max__ || size__ > max__ - start__; \ > +}) > + > +/** > + * range_overflows_t() - Check if a range is out of bounds > + * @type: Data type to use. > + * @start: Start of the range. > + * @size: Size of the range. > + * @max: Exclusive upper boundary. > + * > + * Same as range_overflows() but forcing the parameters to @type. > + * > + * Returns: true if the range is out of bounds. > + */ > +#define range_overflows_t(type, start, size, max) \ > + range_overflows((type)(start), (type)(size), (type)(max)) > + > +/** > + * range_end_overflows() - Check if a range's endpoint is out of > bounds > + * @start: Start of the range. > + * @size: Size of the range. > + * @max: Exclusive upper boundary. > + * > + * Checks only if the endpoint of a range (@start + @size) exceeds > @max. > + * Unlike range_overflows(), a zero-sized range at the boundary > (@start == @max) > + * is not considered an overflow. Useful for iterator-style checks. > + * > + * Returns: true if the endpoint exceeds the boundary. > + */ > +#define range_end_overflows(start, size, max) ({ \ > + typeof(start) start__ = (start); \ > + typeof(size) size__ = (size); \ > + typeof(max) max__ = (max); \ > + (void)(&start__ == &size__); \ > + (void)(&start__ == &max__); \ > + start__ > max__ || size__ > max__ - start__; \ > +}) > + > +/** > + * range_end_overflows_t() - Check if a range's endpoint is out of > bounds > + * @type: Data type to use. > + * @start: Start of the range. > + * @size: Size of the range. > + * @max: Exclusive upper boundary. > + * > + * Same as range_end_overflows() but forcing the parameters to > @type. > + * > + * Returns: true if the endpoint exceeds the boundary. > + */ > +#define range_end_overflows_t(type, start, size, max) \ > + range_end_overflows((type)(start), (type)(size), > (type)(max)) > + > /** > * castable_to_type - like __same_type(), but also allows for casted > literals > * ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ i915.CI.BAT: success for series starting with [1/3] drm/i915: rename range_overflows_end() to range_end_overflows() 2025-08-29 17:45 [PATCH 1/3] drm/i915: rename range_overflows_end() to range_end_overflows() Jani Nikula 2025-08-29 17:46 ` [PATCH 2/3] drm/i915: document range_overflows() and range_end_overflows() macros Jani Nikula 2025-08-29 17:46 ` [PATCH 3/3] overflow: add range_overflows() and range_end_overflows() Jani Nikula @ 2025-08-29 18:45 ` Patchwork 2025-08-30 5:52 ` ✗ i915.CI.Full: failure " Patchwork 2025-09-03 10:03 ` [PATCH 1/3] " Hogander, Jouni 4 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2025-08-29 18:45 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 3376 bytes --] == Series Details == Series: series starting with [1/3] drm/i915: rename range_overflows_end() to range_end_overflows() URL : https://patchwork.freedesktop.org/series/153730/ State : success == Summary == CI Bug Log - changes from CI_DRM_17092 -> Patchwork_153730v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/index.html Participating hosts (44 -> 43) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_153730v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@dmabuf@all-tests: - bat-apl-1: [PASS][1] -> [ABORT][2] ([i915#12904]) +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/bat-apl-1/igt@dmabuf@all-tests.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/bat-apl-1/igt@dmabuf@all-tests.html * igt@i915_selftest@live: - bat-mtlp-8: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/bat-mtlp-8/igt@i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/bat-mtlp-8/igt@i915_selftest@live.html - bat-dg2-11: [PASS][5] -> [ABORT][6] ([i915#12061]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/bat-dg2-11/igt@i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/bat-dg2-11/igt@i915_selftest@live.html * igt@i915_selftest@live@client: - bat-dg2-11: [PASS][7] -> [ABORT][8] ([i915#14201]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/bat-dg2-11/igt@i915_selftest@live@client.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/bat-dg2-11/igt@i915_selftest@live@client.html * igt@i915_selftest@live@reset: - bat-twl-1: [PASS][9] -> [ABORT][10] ([i915#14365]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/bat-twl-1/igt@i915_selftest@live@reset.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/bat-twl-1/igt@i915_selftest@live@reset.html * igt@i915_selftest@live@workarounds: - bat-dg2-11: [PASS][11] -> [DMESG-FAIL][12] ([i915#12061]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/bat-dg2-11/igt@i915_selftest@live@workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/bat-dg2-11/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#14201]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14201 [i915#14365]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14365 Build changes ------------- * Linux: CI_DRM_17092 -> Patchwork_153730v1 CI-20190529: 20190529 CI_DRM_17092: 73ec1b82fc684756350c4bb8ee675158ef439bba @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8516: 8516 Patchwork_153730v1: 73ec1b82fc684756350c4bb8ee675158ef439bba @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/index.html [-- Attachment #2: Type: text/html, Size: 4236 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ i915.CI.Full: failure for series starting with [1/3] drm/i915: rename range_overflows_end() to range_end_overflows() 2025-08-29 17:45 [PATCH 1/3] drm/i915: rename range_overflows_end() to range_end_overflows() Jani Nikula ` (2 preceding siblings ...) 2025-08-29 18:45 ` ✓ i915.CI.BAT: success for series starting with [1/3] drm/i915: rename range_overflows_end() to range_end_overflows() Patchwork @ 2025-08-30 5:52 ` Patchwork 2025-09-03 10:03 ` [PATCH 1/3] " Hogander, Jouni 4 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2025-08-30 5:52 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 94678 bytes --] == Series Details == Series: series starting with [1/3] drm/i915: rename range_overflows_end() to range_end_overflows() URL : https://patchwork.freedesktop.org/series/153730/ State : failure == Summary == CI Bug Log - changes from CI_DRM_17092_full -> Patchwork_153730v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_153730v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_153730v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (12 -> 11) ------------------------------ Missing (1): pig-kbl-iris Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_153730v1_full: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@guc_hang: - shard-mtlp: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-mtlp-6/igt@i915_selftest@live@guc_hang.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-mtlp-1/igt@i915_selftest@live@guc_hang.html #### Warnings #### * igt@i915_selftest@live: - shard-mtlp: [DMESG-FAIL][3] ([i915#12061]) -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-mtlp-6/igt@i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-mtlp-1/igt@i915_selftest@live.html Known issues ------------ Here are the changes found in Patchwork_153730v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg2-9: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@fbdev@read: - shard-rkl: [PASS][6] -> [SKIP][7] ([i915#14544] / [i915#2582]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-3/igt@fbdev@read.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@fbdev@read.html * igt@gem_basic@multigpu-create-close: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#7697]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-11/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][9] ([i915#12392]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-5/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html * igt@gem_create@create-ext-set-pat: - shard-dg2-9: NOTRUN -> [SKIP][10] ([i915#8562]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg2-9: NOTRUN -> [SKIP][11] ([i915#8555]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#5882]) +7 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-7/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html * igt@gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][13] ([i915#13390]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-glk5/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_await@wide-contexts: - shard-dg2: [PASS][14] -> [DMESG-WARN][15] ([i915#14446]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-dg2-8/igt@gem_exec_await@wide-contexts.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-7/igt@gem_exec_await@wide-contexts.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#4036]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-11/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8555]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-7/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_fence@concurrent: - shard-dg2-9: NOTRUN -> [SKIP][18] ([i915#4812]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@gem_exec_fence@concurrent.html * igt@gem_exec_flush@basic-wb-pro-default: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#3539] / [i915#4852]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-11/igt@gem_exec_flush@basic-wb-pro-default.html * igt@gem_exec_flush@basic-wb-set-default: - shard-dg2-9: NOTRUN -> [SKIP][20] ([i915#3539] / [i915#4852]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@gem_exec_flush@basic-wb-set-default.html * igt@gem_exec_reloc@basic-wc-active: - shard-dg2-9: NOTRUN -> [SKIP][21] ([i915#3281]) +8 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@gem_exec_reloc@basic-wc-active.html * igt@gem_exec_reloc@basic-wc-read: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#3281]) +3 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-11/igt@gem_exec_reloc@basic-wc-read.html * igt@gem_exec_schedule@preempt-queue: - shard-dg2-9: NOTRUN -> [SKIP][23] ([i915#4537] / [i915#4812]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#4537] / [i915#4812]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_suspend@basic-s0: - shard-dg2: [PASS][25] -> [INCOMPLETE][26] ([i915#11441] / [i915#13356]) +1 other test incomplete [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-1/igt@gem_exec_suspend@basic-s0.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#4860]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-7/igt@gem_fence_thrash@bo-copy.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][28] ([i915#4613]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-glk9/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][29] -> [TIMEOUT][30] ([i915#5493]) +1 other test timeout [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap_gtt@bad-object: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4077]) +5 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-7/igt@gem_mmap_gtt@bad-object.html * igt@gem_mmap_gtt@basic-small-bo-tiledy: - shard-dg2-9: NOTRUN -> [SKIP][32] ([i915#4077]) +2 other tests skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@gem_mmap_gtt@basic-small-bo-tiledy.html * igt@gem_mmap_wc@read-write: - shard-dg2-9: NOTRUN -> [SKIP][33] ([i915#4083]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@gem_mmap_wc@read-write.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#4083]) +6 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-5/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3282]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][36] ([i915#2658]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-glk5/igt@gem_pread@exhaustion.html * igt@gem_pread@uncached: - shard-dg2-9: NOTRUN -> [SKIP][37] ([i915#3282]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@gem_pread@uncached.html * igt@gem_pwrite@basic-exhaustion: - shard-glk10: NOTRUN -> [WARN][38] ([i915#14702] / [i915#2658]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-glk10/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@display-protected-crc: - shard-rkl: [PASS][39] -> [TIMEOUT][40] ([i915#12917] / [i915#12964]) +3 other tests timeout [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@gem_pxp@display-protected-crc.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-5/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2-9: NOTRUN -> [SKIP][41] ([i915#4270]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4270]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-11/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled: - shard-dg2-9: NOTRUN -> [SKIP][43] ([i915#5190] / [i915#8428]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#5190] / [i915#8428]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-11/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg2-9: NOTRUN -> [SKIP][45] ([i915#4079]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@gem_set_tiling_vs_gtt.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3297] / [i915#4880]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@sd-probe: - shard-dg2-9: NOTRUN -> [SKIP][47] ([i915#3297] / [i915#4958]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@gem_userptr_blits@sd-probe.html * igt@gen7_exec_parse@basic-allocation: - shard-dg2-9: NOTRUN -> [SKIP][48] +10 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@gen7_exec_parse@basic-allocation.html * igt@gen7_exec_parse@basic-rejected: - shard-dg2: NOTRUN -> [SKIP][49] +8 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-1/igt@gen7_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-oversize: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#2856]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-7/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@secure-batches: - shard-dg2-9: NOTRUN -> [SKIP][51] ([i915#2856]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@gen9_exec_parse@secure-batches.html * igt@i915_drm_fdinfo@busy-hang@vecs0: - shard-dg2-9: NOTRUN -> [SKIP][52] ([i915#14073]) +23 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@i915_drm_fdinfo@busy-hang@vecs0.html * igt@i915_drm_fdinfo@isolation@rcs0: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#14073]) +7 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-11/igt@i915_drm_fdinfo@isolation@rcs0.html * igt@i915_pm_rpm@system-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][54] ([i915#13356]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-glk6/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-glk10: NOTRUN -> [INCOMPLETE][55] ([i915#13356]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-glk10/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_rps@basic-api: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#11681] / [i915#6621]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-7/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@thresholds: - shard-dg2-9: NOTRUN -> [SKIP][57] ([i915#11681]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@i915_pm_rps@thresholds.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#6188]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-7/igt@i915_query@query-topology-coherent-slice-mask.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4212]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-7/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg2-9: NOTRUN -> [SKIP][60] ([i915#4212]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][61] ([i915#12761]) +1 other test incomplete [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-glk6/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#9531]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-11/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-dg2: [PASS][63] -> [FAIL][64] ([i915#5956]) +2 other tests fail [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#1769] / [i915#3555]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-dg2: NOTRUN -> [FAIL][66] ([i915#5956]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@y-tiled-8bpp-rotate-0: - shard-dg2-9: NOTRUN -> [SKIP][67] ([i915#4538] / [i915#5190]) +5 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4538] / [i915#5190]) +3 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-11/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-270: - shard-glk10: NOTRUN -> [SKIP][69] +452 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-glk10/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#5190]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-11/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][71] ([i915#10307] / [i915#6095]) +49 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#12313]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-11/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#14098] / [i915#6095]) +33 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2-9: NOTRUN -> [SKIP][74] ([i915#12805]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-dg2-9: NOTRUN -> [SKIP][75] ([i915#6095]) +4 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][76] ([i915#12796] / [i915#14694]) +1 other test incomplete [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-glk1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#6095]) +16 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#6095]) +159 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg1-15/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-4.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#6095]) +36 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc: - shard-rkl: [PASS][80] -> [SKIP][81] ([i915#14544]) +28 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#10307] / [i915#10434] / [i915#6095]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#10307] / [i915#6095]) +113 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#13783]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#11151] / [i915#7828]) +4 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-7/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode: - shard-dg2-9: NOTRUN -> [SKIP][86] ([i915#11151] / [i915#7828]) +4 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-dg1: NOTRUN -> [SKIP][87] ([i915#11151] / [i915#7828]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg1-19/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2-9: NOTRUN -> [SKIP][88] ([i915#3299]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#3299]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-11/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@srm@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][90] ([i915#7173]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-11/igt@kms_content_protection@srm@pipe-a-dp-3.html * igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][91] ([i915#13566]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-256x85@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1: - shard-tglu: [PASS][92] -> [FAIL][93] ([i915#13566]) +1 other test fail [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-tglu-10/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-tglu-10/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#13049]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg2-9: NOTRUN -> [SKIP][95] ([i915#13049]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_edge_walk@64x64-top-bottom: - shard-dg1: [PASS][96] -> [DMESG-WARN][97] ([i915#4423]) +3 other tests dmesg-warn [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-dg1-19/igt@kms_cursor_edge_walk@64x64-top-bottom.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg1-18/igt@kms_cursor_edge_walk@64x64-top-bottom.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-glk10: NOTRUN -> [SKIP][98] ([i915#11190]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-glk10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#13046] / [i915#5354]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2-9: NOTRUN -> [SKIP][100] ([i915#13046] / [i915#5354]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: NOTRUN -> [FAIL][101] ([i915#2346]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-9: NOTRUN -> [SKIP][102] ([i915#4103] / [i915#4213]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2-9: NOTRUN -> [SKIP][103] ([i915#13691]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#3804]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#3555]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-7/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-dg2: [PASS][106] -> [SKIP][107] ([i915#13749]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-dg2-11/igt@kms_dp_link_training@non-uhbr-sst.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-3/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_link_training@uhbr-sst: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#13748]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-11/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-dg2-9: NOTRUN -> [SKIP][109] ([i915#13707]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#3555] / [i915#3840]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-11/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_feature_discovery@display-2x: - shard-dg2-9: NOTRUN -> [SKIP][111] ([i915#1839]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-dg2-9: NOTRUN -> [SKIP][112] ([i915#9934]) +5 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#9934]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-7/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][114] ([i915#12745] / [i915#4839]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][115] ([i915#4839]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-rkl: [PASS][116] -> [SKIP][117] ([i915#14544] / [i915#3637]) +4 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-rkl: [PASS][118] -> [SKIP][119] ([i915#14544] / [i915#3555]) +2 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#2672]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2-9: NOTRUN -> [SKIP][122] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode: - shard-dg2-9: NOTRUN -> [SKIP][123] ([i915#2672]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#2672]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [PASS][125] -> [SKIP][126] ([i915#14544] / [i915#1849] / [i915#5354]) +7 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#8708]) +9 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#5354]) +17 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][129] ([i915#10056]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-glk9/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2-9: NOTRUN -> [SKIP][130] ([i915#3458]) +15 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt: - shard-dg2-9: NOTRUN -> [SKIP][131] ([i915#5354]) +20 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#10055]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-dg2-9: NOTRUN -> [SKIP][133] ([i915#8708]) +10 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#3458]) +5 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2-9: NOTRUN -> [SKIP][135] ([i915#3555] / [i915#8228]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_hdr@static-toggle-suspend.html * igt@kms_invalid_mode@overflow-vrefresh: - shard-rkl: [PASS][136] -> [SKIP][137] ([i915#14544] / [i915#8826]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-3/igt@kms_invalid_mode@overflow-vrefresh.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_invalid_mode@overflow-vrefresh.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#12339]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#4816]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - shard-rkl: [PASS][140] -> [SKIP][141] ([i915#11190] / [i915#14544]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_plane_scaling@invalid-num-scalers: - shard-rkl: [PASS][142] -> [SKIP][143] ([i915#14544] / [i915#3555] / [i915#6953] / [i915#8152]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@kms_plane_scaling@invalid-num-scalers.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_plane_scaling@invalid-num-scalers.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format: - shard-rkl: [PASS][144] -> [SKIP][145] ([i915#14544] / [i915#8152]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b: - shard-rkl: [PASS][146] -> [SKIP][147] ([i915#12247] / [i915#14544] / [i915#8152]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b.html [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-b.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#12247]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25: - shard-rkl: [PASS][149] -> [SKIP][150] ([i915#14544] / [i915#6953] / [i915#8152]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a: - shard-rkl: [PASS][151] -> [SKIP][152] ([i915#12247] / [i915#14544]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a.html [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#9519]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-7/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2-9: NOTRUN -> [SKIP][154] ([i915#9519]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [PASS][155] -> [SKIP][156] ([i915#9519]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-rkl: [PASS][157] -> [SKIP][158] ([i915#9519]) +4 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_prime@basic-crc-vgem: - shard-dg2-9: NOTRUN -> [SKIP][159] ([i915#6524] / [i915#6805]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_prime@basic-crc-vgem.html - shard-rkl: [PASS][160] -> [SKIP][161] ([i915#14544] / [i915#6524]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-3/igt@kms_prime@basic-crc-vgem.html [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_prime@basic-crc-vgem.html * igt@kms_properties@plane-properties-atomic: - shard-rkl: [PASS][162] -> [SKIP][163] ([i915#11521] / [i915#14544]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-3/igt@kms_properties@plane-properties-atomic.html [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_properties@plane-properties-atomic.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-glk10: NOTRUN -> [SKIP][164] ([i915#11520]) +10 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-glk10/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-glk: NOTRUN -> [SKIP][165] ([i915#11520]) +5 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-glk5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-dg2-9: NOTRUN -> [SKIP][166] ([i915#11520]) +5 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#11520]) +4 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-11/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-psr-cursor-mmap-cpu: - shard-dg2-9: NOTRUN -> [SKIP][168] ([i915#1072] / [i915#9732]) +15 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_psr@fbc-psr-cursor-mmap-cpu.html * igt@kms_psr@fbc-psr-sprite-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#1072] / [i915#9732]) +10 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-11/igt@kms_psr@fbc-psr-sprite-mmap-gtt.html * igt@kms_psr@psr-no-drrs: - shard-glk: NOTRUN -> [SKIP][170] +175 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-glk9/igt@kms_psr@psr-no-drrs.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-9: NOTRUN -> [SKIP][171] ([i915#9685]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg2-9: NOTRUN -> [SKIP][172] ([i915#4235]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#12755]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-11/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_sequence@queue-busy@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [DMESG-WARN][174] ([i915#12964]) +1 other test dmesg-warn [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-5/igt@kms_sequence@queue-busy@pipe-b-hdmi-a-2.html * igt@kms_setmode@basic: - shard-snb: [PASS][175] -> [FAIL][176] ([i915#5465]) +2 other tests fail [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-snb1/igt@kms_setmode@basic.html [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-snb1/igt@kms_setmode@basic.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-dg2-9: NOTRUN -> [SKIP][177] ([i915#3555]) +4 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#8623]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#9906]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-7/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-fb-id: - shard-dg2-9: NOTRUN -> [SKIP][180] ([i915#2437]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-glk: NOTRUN -> [SKIP][181] ([i915#2437]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-glk5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#2437]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-7/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@gen12-group-concurrent-oa-buffer-read: - shard-rkl: [PASS][183] -> [DMESG-WARN][184] ([i915#12964]) +16 other tests dmesg-warn [183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@perf@gen12-group-concurrent-oa-buffer-read.html [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-4/igt@perf@gen12-group-concurrent-oa-buffer-read.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#2436]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-7/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config: - shard-dg2-9: NOTRUN -> [SKIP][186] ([i915#7387]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@perf@global-sseu-config.html * igt@perf@mi-rpc: - shard-dg2-9: NOTRUN -> [SKIP][187] ([i915#2434]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@perf@mi-rpc.html * igt@perf@polling-small-buf: - shard-rkl: [PASS][188] -> [FAIL][189] ([i915#14550]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-3/igt@perf@polling-small-buf.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@perf@polling-small-buf.html * igt@perf_pmu@module-unload: - shard-glk10: NOTRUN -> [FAIL][190] ([i915#14433]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-glk10/igt@perf_pmu@module-unload.html * igt@prime_vgem@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#3708] / [i915#4077]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-7/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - shard-dg2-9: NOTRUN -> [SKIP][192] ([i915#3291] / [i915#3708]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@prime_vgem@basic-write.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-dg2-9: NOTRUN -> [SKIP][193] ([i915#9917]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-9/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][194] ([i915#12392] / [i915#13356]) -> [PASS][195] [194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-dg2-7/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-5/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][196] ([i915#5784]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-dg1-14/igt@gem_eio@reset-stress.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg1-16/igt@gem_eio@reset-stress.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-rkl: [TIMEOUT][198] ([i915#12917] / [i915#12964]) -> [PASS][199] [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-7/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html - shard-tglu: [SKIP][200] ([i915#4270]) -> [PASS][201] [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-tglu-5/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-tglu-2/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [DMESG-FAIL][202] ([i915#12061]) -> [PASS][203] [202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-mtlp-6/igt@i915_selftest@live@workarounds.html [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-mtlp-1/igt@i915_selftest@live@workarounds.html * igt@kms_color@ctm-max: - shard-rkl: [SKIP][204] ([i915#12655] / [i915#14544]) -> [PASS][205] [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_color@ctm-max.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_color@ctm-max.html * igt@kms_cursor_edge_walk@64x64-left-edge: - shard-rkl: [SKIP][206] ([i915#14544]) -> [PASS][207] +17 other tests pass [206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_cursor_edge_walk@64x64-left-edge.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_cursor_edge_walk@64x64-left-edge.html * igt@kms_fbcon_fbt@fbc: - shard-rkl: [SKIP][208] ([i915#14544] / [i915#14561]) -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_fbcon_fbt@fbc.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_fbcon_fbt@fbc.html * igt@kms_flip@basic-flip-vs-wf_vblank: - shard-rkl: [SKIP][210] ([i915#14544] / [i915#3637]) -> [PASS][211] +2 other tests pass [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_flip@basic-flip-vs-wf_vblank.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling: - shard-rkl: [SKIP][212] ([i915#14544] / [i915#3555]) -> [PASS][213] [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-rkl: [SKIP][214] ([i915#14544] / [i915#1849] / [i915#5354]) -> [PASS][215] [214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt: - shard-dg1: [DMESG-WARN][216] ([i915#4423]) -> [PASS][217] [216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html * igt@kms_plane_scaling@planes-scaler-unity-scaling: - shard-rkl: [SKIP][218] ([i915#14544] / [i915#3555] / [i915#8152]) -> [PASS][219] [218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_plane_scaling@planes-scaler-unity-scaling.html [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_plane_scaling@planes-scaler-unity-scaling.html * igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a: - shard-rkl: [SKIP][220] ([i915#12247] / [i915#14544]) -> [PASS][221] +1 other test pass [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a.html * igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-b: - shard-rkl: [SKIP][222] ([i915#12247] / [i915#14544] / [i915#8152]) -> [PASS][223] +2 other tests pass [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-b.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-b.html * igt@kms_pm_rpm@pm-caching: - shard-rkl: [DMESG-WARN][224] ([i915#12964]) -> [PASS][225] +22 other tests pass [224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_pm_rpm@pm-caching.html [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_pm_rpm@pm-caching.html #### Warnings #### * igt@gem_ccs@block-copy-compressed: - shard-rkl: [SKIP][226] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][227] ([i915#3555] / [i915#9323]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@gem_ccs@block-copy-compressed.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: [SKIP][228] ([i915#6335]) -> [SKIP][229] ([i915#14544] / [i915#6335]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-3/igt@gem_create@create-ext-cpu-access-sanity-check.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-rkl: [SKIP][230] ([i915#8562]) -> [SKIP][231] ([i915#14544] / [i915#8562]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@gem_create@create-ext-set-pat.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@gem_create@create-ext-set-pat.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: [SKIP][232] ([i915#14544] / [i915#4525]) -> [SKIP][233] ([i915#4525]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@gem_exec_balancer@parallel-bb-first.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-rkl: [SKIP][234] ([i915#3281]) -> [SKIP][235] ([i915#14544] / [i915#3281]) +4 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-cpu.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-rkl: [SKIP][236] ([i915#14544] / [i915#3281]) -> [SKIP][237] ([i915#3281]) +3 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-active.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: [SKIP][238] ([i915#14544] / [i915#4613] / [i915#7582]) -> [SKIP][239] ([i915#4613] / [i915#7582]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: [SKIP][240] ([i915#14544] / [i915#4613]) -> [SKIP][241] ([i915#4613]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: [SKIP][242] ([i915#4613]) -> [SKIP][243] ([i915#14544] / [i915#4613]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-verify.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-rkl: [SKIP][244] ([i915#3282]) -> [SKIP][245] ([i915#14544] / [i915#3282]) +2 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@gem_partial_pwrite_pread@reads-uncached.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-rkl: [TIMEOUT][246] ([i915#12917] / [i915#12964]) -> [SKIP][247] ([i915#13717]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-context.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gen9_exec_parse@bb-start-out: - shard-rkl: [SKIP][248] ([i915#14544] / [i915#2527]) -> [SKIP][249] ([i915#2527]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@gen9_exec_parse@bb-start-out.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@secure-batches: - shard-rkl: [SKIP][250] ([i915#2527]) -> [SKIP][251] ([i915#14544] / [i915#2527]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-3/igt@gen9_exec_parse@secure-batches.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@gen9_exec_parse@secure-batches.html * igt@i915_module_load@resize-bar: - shard-rkl: [SKIP][252] ([i915#14544] / [i915#6412]) -> [SKIP][253] ([i915#6412]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@i915_module_load@resize-bar.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@i915_module_load@resize-bar.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-rkl: [SKIP][254] ([i915#14498] / [i915#14544]) -> [SKIP][255] ([i915#14498]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@i915_pm_rc6_residency@rc6-idle.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-rkl: [SKIP][256] ([i915#5286]) -> [SKIP][257] ([i915#14544]) +2 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-3/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][258] ([i915#14544]) -> [SKIP][259] ([i915#5286]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: [SKIP][260] ([i915#3638]) -> [SKIP][261] ([i915#14544]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@kms_big_fb@linear-8bpp-rotate-270.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][262] -> [SKIP][263] ([i915#14544]) +6 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-3/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-rkl: [SKIP][264] ([i915#14544]) -> [SKIP][265] ([i915#14098] / [i915#6095]) +2 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs: - shard-rkl: [SKIP][266] ([i915#14098] / [i915#6095]) -> [SKIP][267] ([i915#14544]) +7 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-rkl: [SKIP][268] ([i915#14544]) -> [SKIP][269] ([i915#12313]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][270] ([i915#6095]) -> [SKIP][271] ([i915#14098] / [i915#6095]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][272] ([i915#14098] / [i915#6095]) -> [SKIP][273] ([i915#6095]) +3 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-5/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-rkl: [SKIP][274] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][275] ([i915#11151] / [i915#7828]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-read.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: [SKIP][276] ([i915#11151] / [i915#7828]) -> [SKIP][277] ([i915#11151] / [i915#14544] / [i915#7828]) +4 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@kms_chamelium_hpd@vga-hpd-fast.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@atomic: - shard-rkl: [SKIP][278] ([i915#14544]) -> [SKIP][279] ([i915#7118] / [i915#9424]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_content_protection@atomic.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: [SKIP][280] ([i915#3116]) -> [SKIP][281] ([i915#14544]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@kms_content_protection@dp-mst-type-0.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@srm: - shard-dg2: [SKIP][282] ([i915#7118]) -> [FAIL][283] ([i915#7173]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-dg2-8/igt@kms_content_protection@srm.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-11/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: [SKIP][284] ([i915#3555]) -> [SKIP][285] ([i915#14544]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-rkl: [SKIP][286] ([i915#14544]) -> [SKIP][287] +7 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-rkl: [SKIP][288] ([i915#13691]) -> [SKIP][289] ([i915#14544]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@kms_display_modes@extended-mode-basic.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_aux_dev: - shard-rkl: [SKIP][290] ([i915#1257] / [i915#14544]) -> [SKIP][291] ([i915#1257]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_dp_aux_dev.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_dp_aux_dev.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-rkl: [SKIP][292] ([i915#13707]) -> [SKIP][293] ([i915#14544]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-rkl: [SKIP][294] ([i915#9934]) -> [SKIP][295] ([i915#14544] / [i915#9934]) +3 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@kms_flip@2x-dpms-vs-vblank-race.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-rkl: [SKIP][296] ([i915#14544] / [i915#9934]) -> [SKIP][297] ([i915#9934]) +4 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-rkl: [SKIP][298] ([i915#14544] / [i915#3555]) -> [SKIP][299] ([i915#2672] / [i915#3555]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-rkl: [SKIP][300] ([i915#2672] / [i915#3555]) -> [SKIP][301] ([i915#14544] / [i915#3555]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: [SKIP][302] ([i915#1825]) -> [SKIP][303] ([i915#14544] / [i915#1849] / [i915#5354]) +15 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-dg2: [SKIP][304] ([i915#10433] / [i915#3458]) -> [SKIP][305] ([i915#3458]) +7 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: [SKIP][306] ([i915#5439]) -> [SKIP][307] ([i915#14544] / [i915#1849] / [i915#5354]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: [SKIP][308] ([i915#3458]) -> [SKIP][309] ([i915#10433] / [i915#3458]) +2 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: [SKIP][310] ([i915#3023]) -> [SKIP][311] ([i915#14544] / [i915#1849] / [i915#5354]) +12 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-rte: - shard-dg1: [SKIP][312] -> [SKIP][313] ([i915#4423]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-rte.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt: - shard-rkl: [SKIP][314] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][315] ([i915#1825]) +11 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: [SKIP][316] ([i915#8708]) -> [SKIP][317] ([i915#4423] / [i915#8708]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-rkl: [SKIP][318] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][319] ([i915#3023]) +6 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-suspend.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@brightness-with-hdr: - shard-rkl: [SKIP][320] ([i915#14544]) -> [SKIP][321] ([i915#12713]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_hdr@brightness-with-hdr.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: [SKIP][322] ([i915#3555] / [i915#8228]) -> [SKIP][323] ([i915#14544]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@kms_hdr@invalid-metadata-sizes.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_joiner@basic-big-joiner: - shard-dg1: [SKIP][324] ([i915#10656]) -> [SKIP][325] ([i915#10656] / [i915#4423]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-dg1-19/igt@kms_joiner@basic-big-joiner.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg1-18/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-rkl: [SKIP][326] ([i915#13522] / [i915#14544]) -> [SKIP][327] ([i915#13522]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_plane_multiple@2x-tiling-4: - shard-rkl: [SKIP][328] ([i915#14544]) -> [SKIP][329] ([i915#13958]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-4.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@tiling-4: - shard-rkl: [SKIP][330] ([i915#14544]) -> [SKIP][331] ([i915#14259]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_plane_multiple@tiling-4.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_plane_multiple@tiling-4.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: [SKIP][332] ([i915#5354]) -> [SKIP][333] ([i915#14544] / [i915#5354]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@kms_pm_backlight@fade-with-dpms.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][334] ([i915#14544] / [i915#4281]) -> [SKIP][335] ([i915#3361]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][336] ([i915#3828]) -> [SKIP][337] ([i915#9340]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [SKIP][338] ([i915#9519]) -> [SKIP][339] ([i915#14544] / [i915#9519]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [SKIP][340] ([i915#14544] / [i915#9519]) -> [SKIP][341] ([i915#9519]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@pm-caching: - shard-dg1: [SKIP][342] ([i915#4077] / [i915#4423]) -> [SKIP][343] ([i915#4077]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-dg1-17/igt@kms_pm_rpm@pm-caching.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg1-16/igt@kms_pm_rpm@pm-caching.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf: - shard-dg1: [SKIP][344] ([i915#11520]) -> [SKIP][345] ([i915#11520] / [i915#4423]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-dg1-19/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-dg1-18/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-rkl: [SKIP][346] ([i915#11520] / [i915#14544]) -> [SKIP][347] ([i915#11520]) +2 other tests skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-rkl: [SKIP][348] ([i915#11520]) -> [SKIP][349] ([i915#11520] / [i915#14544]) +3 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr@fbc-psr-cursor-plane-move: - shard-rkl: [SKIP][350] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][351] ([i915#1072] / [i915#9732]) +6 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-plane-move.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@kms_psr@fbc-psr-cursor-plane-move.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-rkl: [SKIP][352] ([i915#1072] / [i915#9732]) -> [SKIP][353] ([i915#1072] / [i915#14544] / [i915#9732]) +10 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-3/igt@kms_psr@fbc-psr2-primary-blt.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: [SKIP][354] ([i915#9685]) -> [SKIP][355] ([i915#14544] / [i915#9685]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-rkl: [SKIP][356] ([i915#3555]) -> [SKIP][357] ([i915#14544] / [i915#3555]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-3/igt@kms_setmode@invalid-clone-exclusive-crtc.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_writeback@writeback-fb-id: - shard-rkl: [SKIP][358] ([i915#2437]) -> [SKIP][359] ([i915#14544] / [i915#2437]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-3/igt@kms_writeback@writeback-fb-id.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@kms_writeback@writeback-fb-id.html * igt@perf@mi-rpc: - shard-rkl: [SKIP][360] ([i915#2434]) -> [SKIP][361] ([i915#14544] / [i915#2434]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-3/igt@perf@mi-rpc.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@perf@mi-rpc.html * igt@prime_vgem@basic-write: - shard-rkl: [SKIP][362] ([i915#3291] / [i915#3708]) -> [SKIP][363] ([i915#14544] / [i915#3291] / [i915#3708]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-3/igt@prime_vgem@basic-write.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-6/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-flip-hang: - shard-rkl: [SKIP][364] ([i915#14544] / [i915#3708]) -> [SKIP][365] ([i915#3708]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17092/shard-rkl-6/igt@prime_vgem@fence-flip-hang.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/shard-rkl-8/igt@prime_vgem@fence-flip-hang.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190 [i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11521]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433 [i915#14446]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14446 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14550]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14550 [i915#14561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14561 [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694 [i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * Linux: CI_DRM_17092 -> Patchwork_153730v1 CI-20190529: 20190529 CI_DRM_17092: 73ec1b82fc684756350c4bb8ee675158ef439bba @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8516: 8516 Patchwork_153730v1: 73ec1b82fc684756350c4bb8ee675158ef439bba @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_153730v1/index.html [-- Attachment #2: Type: text/html, Size: 124086 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 1/3] drm/i915: rename range_overflows_end() to range_end_overflows() 2025-08-29 17:45 [PATCH 1/3] drm/i915: rename range_overflows_end() to range_end_overflows() Jani Nikula ` (3 preceding siblings ...) 2025-08-30 5:52 ` ✗ i915.CI.Full: failure " Patchwork @ 2025-09-03 10:03 ` Hogander, Jouni 4 siblings, 0 replies; 12+ messages in thread From: Hogander, Jouni @ 2025-09-03 10:03 UTC (permalink / raw) To: dri-devel@lists.freedesktop.org, Nikula, Jani, intel-gfx@lists.freedesktop.org Cc: kees@kernel.org, linux-kernel@vger.kernel.org, linux-hardening@vger.kernel.org, gustavoars@kernel.org On Fri, 2025-08-29 at 20:45 +0300, Jani Nikula wrote: > Rename range_overflows_end() to range_end_overflows(), along with the > _t > variant. > > It's all rather subjective, but I think range_end_overflows() reads > better. > > Cc: Kees Cook <kees@kernel.org> > Cc: Gustavo A. R. Silva <gustavoars@kernel.org> > Cc: linux-hardening@vger.kernel.org > Signed-off-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Jouni Högander <jouni.hogander@intel.com> > --- > drivers/gpu/drm/i915/display/intel_fbc.c | 4 ++-- > drivers/gpu/drm/i915/gt/intel_rc6.c | 2 +- > drivers/gpu/drm/i915/i915_utils.h | 6 +++--- > 3 files changed, 6 insertions(+), 6 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_fbc.c > b/drivers/gpu/drm/i915/display/intel_fbc.c > index d4c5deff9cbe..446e2ad28a70 100644 > --- a/drivers/gpu/drm/i915/display/intel_fbc.c > +++ b/drivers/gpu/drm/i915/display/intel_fbc.c > @@ -383,11 +383,11 @@ static void i8xx_fbc_program_cfb(struct > intel_fbc *fbc) > struct drm_i915_private *i915 = to_i915(display->drm); > > drm_WARN_ON(display->drm, > - range_overflows_end_t(u64, > i915_gem_stolen_area_address(i915), > + range_end_overflows_t(u64, > i915_gem_stolen_area_address(i915), > > i915_gem_stolen_node_offset(&fbc->compressed_fb), > U32_MAX)); > drm_WARN_ON(display->drm, > - range_overflows_end_t(u64, > i915_gem_stolen_area_address(i915), > + range_end_overflows_t(u64, > i915_gem_stolen_area_address(i915), > > i915_gem_stolen_node_offset(&fbc->compressed_llb), > U32_MAX)); > intel_de_write(display, FBC_CFB_BASE, > diff --git a/drivers/gpu/drm/i915/gt/intel_rc6.c > b/drivers/gpu/drm/i915/gt/intel_rc6.c > index 9ca42589da4d..bf38cc5fe872 100644 > --- a/drivers/gpu/drm/i915/gt/intel_rc6.c > +++ b/drivers/gpu/drm/i915/gt/intel_rc6.c > @@ -341,7 +341,7 @@ static int vlv_rc6_init(struct intel_rc6 *rc6) > return PTR_ERR(pctx); > } > > - GEM_BUG_ON(range_overflows_end_t(u64, > + GEM_BUG_ON(range_end_overflows_t(u64, > i915->dsm.stolen.start, > pctx->stolen->start, > U32_MAX)); > diff --git a/drivers/gpu/drm/i915/i915_utils.h > b/drivers/gpu/drm/i915/i915_utils.h > index 9cb40c2c4b12..fdac9a158b53 100644 > --- a/drivers/gpu/drm/i915/i915_utils.h > +++ b/drivers/gpu/drm/i915/i915_utils.h > @@ -79,7 +79,7 @@ bool i915_error_injected(void); > #define range_overflows_t(type, start, size, max) \ > range_overflows((type)(start), (type)(size), (type)(max)) > > -#define range_overflows_end(start, size, max) ({ \ > +#define range_end_overflows(start, size, max) ({ \ > typeof(start) start__ = (start); \ > typeof(size) size__ = (size); \ > typeof(max) max__ = (max); \ > @@ -88,8 +88,8 @@ bool i915_error_injected(void); > start__ > max__ || size__ > max__ - start__; \ > }) > > -#define range_overflows_end_t(type, start, size, max) \ > - range_overflows_end((type)(start), (type)(size), > (type)(max)) > +#define range_end_overflows_t(type, start, size, max) \ > + range_end_overflows((type)(start), (type)(size), > (type)(max)) > > #define ptr_mask_bits(ptr, n) > ({ \ > unsigned long __v = (unsigned > long)(ptr); \ ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2025-09-08 12:44 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-08-29 17:45 [PATCH 1/3] drm/i915: rename range_overflows_end() to range_end_overflows() Jani Nikula 2025-08-29 17:46 ` [PATCH 2/3] drm/i915: document range_overflows() and range_end_overflows() macros Jani Nikula 2025-09-08 12:27 ` Hogander, Jouni 2025-08-29 17:46 ` [PATCH 3/3] overflow: add range_overflows() and range_end_overflows() Jani Nikula 2025-09-04 2:43 ` Kees Cook 2025-09-04 7:34 ` Jani Nikula 2025-09-04 16:27 ` Kees Cook 2025-09-08 12:43 ` Jani Nikula 2025-09-08 12:28 ` Hogander, Jouni 2025-08-29 18:45 ` ✓ i915.CI.BAT: success for series starting with [1/3] drm/i915: rename range_overflows_end() to range_end_overflows() Patchwork 2025-08-30 5:52 ` ✗ i915.CI.Full: failure " Patchwork 2025-09-03 10:03 ` [PATCH 1/3] " Hogander, Jouni
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox