* [PATCH v2 0/3] Improve drm printer code
@ 2024-05-17 16:34 Michal Wajdeczko
2024-05-17 16:34 ` [PATCH v2 1/3] drm/print: Add generic drm dev printk function Michal Wajdeczko
` (7 more replies)
0 siblings, 8 replies; 10+ messages in thread
From: Michal Wajdeczko @ 2024-05-17 16:34 UTC (permalink / raw)
To: dri-devel, intel-gfx; +Cc: Michal Wajdeczko
We already have some drm printk functions that need to duplicate
a code to get a similar format of the final result, for example:
[ ] 0000:00:00.0: [drm:foo] bar
[ ] 0000:00:00.0: [drm] foo bar
[ ] 0000:00:00.0: [drm] *ERROR* foo
Add a generic __drm_dev_vprintk() function that can format the
final message like all other existing function do and allows us
to keep the formatting code in one place.
Above also allows to improve drm_dbg_printer() that today lacks
of outputing symbolic name of the caller, like drm_dbg() does.
v1: https://patchwork.freedesktop.org/series/133749/
v2: make it static, keep it simple and use braces (Jani)
Michal Wajdeczko (3):
drm/print: Add generic drm dev printk function
drm/print: Improve drm_dbg_printer
drm/i915: Don't use __func__ as prefix for drm_dbg_printer
drivers/gpu/drm/drm_print.c | 53 ++++++++++++----------
drivers/gpu/drm/i915/gt/intel_reset.c | 2 +-
drivers/gpu/drm/i915/gt/selftest_context.c | 2 +-
include/drm/drm_print.h | 2 +
4 files changed, 34 insertions(+), 25 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v2 1/3] drm/print: Add generic drm dev printk function
2024-05-17 16:34 [PATCH v2 0/3] Improve drm printer code Michal Wajdeczko
@ 2024-05-17 16:34 ` Michal Wajdeczko
2024-05-20 8:48 ` Jani Nikula
2024-05-17 16:34 ` [PATCH v2 2/3] drm/print: Improve drm_dbg_printer Michal Wajdeczko
` (6 subsequent siblings)
7 siblings, 1 reply; 10+ messages in thread
From: Michal Wajdeczko @ 2024-05-17 16:34 UTC (permalink / raw)
To: dri-devel, intel-gfx; +Cc: Michal Wajdeczko, Jani Nikula
We already have some drm printk functions that need to duplicate
a code to get a similar format of the final result, for example:
[ ] 0000:00:00.0: [drm:foo] bar
[ ] 0000:00:00.0: [drm] foo bar
[ ] 0000:00:00.0: [drm] *ERROR* foo
Add a generic __drm_dev_vprintk() function that can format the
final message like all other existing function do and allows us
to keep the formatting code in one place.
Cc: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
v2: make it static, keep it simple and use braces (Jani)
---
drivers/gpu/drm/drm_print.c | 52 +++++++++++++++++++++----------------
1 file changed, 30 insertions(+), 22 deletions(-)
diff --git a/drivers/gpu/drm/drm_print.c b/drivers/gpu/drm/drm_print.c
index cf2efb44722c..41892491a12c 100644
--- a/drivers/gpu/drm/drm_print.c
+++ b/drivers/gpu/drm/drm_print.c
@@ -176,6 +176,32 @@ void __drm_printfn_seq_file(struct drm_printer *p, struct va_format *vaf)
}
EXPORT_SYMBOL(__drm_printfn_seq_file);
+static void __drm_dev_vprintk(const struct device *dev, const char *level,
+ const void *origin, const char *prefix,
+ struct va_format *vaf)
+{
+ const char *prefix_pad = prefix ? " " : "";
+
+ if (!prefix)
+ prefix = "";
+
+ if (dev) {
+ if (origin)
+ dev_printk(level, dev, "[" DRM_NAME ":%ps]%s%s %pV",
+ origin, prefix_pad, prefix, vaf);
+ else
+ dev_printk(level, dev, "[" DRM_NAME "]%s%s %pV",
+ prefix_pad, prefix, vaf);
+ } else {
+ if (origin)
+ printk("%s" "[" DRM_NAME ":%ps]%s%s %pV",
+ level, origin, prefix_pad, prefix, vaf);
+ else
+ printk("%s" "[" DRM_NAME "]%s%s %pV",
+ level, prefix_pad, prefix, vaf);
+ }
+}
+
void __drm_printfn_info(struct drm_printer *p, struct va_format *vaf)
{
dev_info(p->arg, "[" DRM_NAME "] %pV", vaf);
@@ -187,19 +213,12 @@ void __drm_printfn_dbg(struct drm_printer *p, struct va_format *vaf)
const struct drm_device *drm = p->arg;
const struct device *dev = drm ? drm->dev : NULL;
enum drm_debug_category category = p->category;
- const char *prefix = p->prefix ?: "";
- const char *prefix_pad = p->prefix ? " " : "";
if (!__drm_debug_enabled(category))
return;
/* Note: __builtin_return_address(0) is useless here. */
- if (dev)
- dev_printk(KERN_DEBUG, dev, "[" DRM_NAME "]%s%s %pV",
- prefix_pad, prefix, vaf);
- else
- printk(KERN_DEBUG "[" DRM_NAME "]%s%s %pV",
- prefix_pad, prefix, vaf);
+ __drm_dev_vprintk(dev, KERN_DEBUG, NULL, p->prefix, vaf);
}
EXPORT_SYMBOL(__drm_printfn_dbg);
@@ -287,12 +306,7 @@ void drm_dev_printk(const struct device *dev, const char *level,
vaf.fmt = format;
vaf.va = &args;
- if (dev)
- dev_printk(level, dev, "[" DRM_NAME ":%ps] %pV",
- __builtin_return_address(0), &vaf);
- else
- printk("%s" "[" DRM_NAME ":%ps] %pV",
- level, __builtin_return_address(0), &vaf);
+ __drm_dev_vprintk(dev, level, __builtin_return_address(0), NULL, &vaf);
va_end(args);
}
@@ -312,12 +326,7 @@ void __drm_dev_dbg(struct _ddebug *desc, const struct device *dev,
vaf.fmt = format;
vaf.va = &args;
- if (dev)
- dev_printk(KERN_DEBUG, dev, "[" DRM_NAME ":%ps] %pV",
- __builtin_return_address(0), &vaf);
- else
- printk(KERN_DEBUG "[" DRM_NAME ":%ps] %pV",
- __builtin_return_address(0), &vaf);
+ __drm_dev_vprintk(dev, KERN_DEBUG, __builtin_return_address(0), NULL, &vaf);
va_end(args);
}
@@ -351,8 +360,7 @@ void __drm_err(const char *format, ...)
vaf.fmt = format;
vaf.va = &args;
- printk(KERN_ERR "[" DRM_NAME ":%ps] *ERROR* %pV",
- __builtin_return_address(0), &vaf);
+ __drm_dev_vprintk(NULL, KERN_ERR, __builtin_return_address(0), "*ERROR*", &vaf);
va_end(args);
}
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH v2 2/3] drm/print: Improve drm_dbg_printer
2024-05-17 16:34 [PATCH v2 0/3] Improve drm printer code Michal Wajdeczko
2024-05-17 16:34 ` [PATCH v2 1/3] drm/print: Add generic drm dev printk function Michal Wajdeczko
@ 2024-05-17 16:34 ` Michal Wajdeczko
2024-05-17 16:34 ` [PATCH v2 3/3] drm/i915: Don't use __func__ as prefix for drm_dbg_printer Michal Wajdeczko
` (5 subsequent siblings)
7 siblings, 0 replies; 10+ messages in thread
From: Michal Wajdeczko @ 2024-05-17 16:34 UTC (permalink / raw)
To: dri-devel, intel-gfx; +Cc: Michal Wajdeczko, Jani Nikula
With recent introduction of a generic drm dev printk function, we
can now store and use location where drm_dbg_printer was invoked
and output it's symbolic name like we do for all drm debug prints.
Cc: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
v2: use full cast to match member (Jani)
---
drivers/gpu/drm/drm_print.c | 3 +--
include/drm/drm_print.h | 2 ++
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/drm_print.c b/drivers/gpu/drm/drm_print.c
index 41892491a12c..35d00f0c6d64 100644
--- a/drivers/gpu/drm/drm_print.c
+++ b/drivers/gpu/drm/drm_print.c
@@ -217,8 +217,7 @@ void __drm_printfn_dbg(struct drm_printer *p, struct va_format *vaf)
if (!__drm_debug_enabled(category))
return;
- /* Note: __builtin_return_address(0) is useless here. */
- __drm_dev_vprintk(dev, KERN_DEBUG, NULL, p->prefix, vaf);
+ __drm_dev_vprintk(dev, KERN_DEBUG, p->origin, p->prefix, vaf);
}
EXPORT_SYMBOL(__drm_printfn_dbg);
diff --git a/include/drm/drm_print.h b/include/drm/drm_print.h
index 089950ad8681..bfc5641c6025 100644
--- a/include/drm/drm_print.h
+++ b/include/drm/drm_print.h
@@ -175,6 +175,7 @@ struct drm_printer {
void (*printfn)(struct drm_printer *p, struct va_format *vaf);
void (*puts)(struct drm_printer *p, const char *str);
void *arg;
+ const void *origin;
const char *prefix;
enum drm_debug_category category;
};
@@ -332,6 +333,7 @@ static inline struct drm_printer drm_dbg_printer(struct drm_device *drm,
struct drm_printer p = {
.printfn = __drm_printfn_dbg,
.arg = drm,
+ .origin = (const void *)_THIS_IP_, /* it's fine as we will be inlined */
.prefix = prefix,
.category = category,
};
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH v2 3/3] drm/i915: Don't use __func__ as prefix for drm_dbg_printer
2024-05-17 16:34 [PATCH v2 0/3] Improve drm printer code Michal Wajdeczko
2024-05-17 16:34 ` [PATCH v2 1/3] drm/print: Add generic drm dev printk function Michal Wajdeczko
2024-05-17 16:34 ` [PATCH v2 2/3] drm/print: Improve drm_dbg_printer Michal Wajdeczko
@ 2024-05-17 16:34 ` Michal Wajdeczko
2024-05-17 17:05 ` ✗ Fi.CI.CHECKPATCH: warning for Improve drm printer code (rev2) Patchwork
` (4 subsequent siblings)
7 siblings, 0 replies; 10+ messages in thread
From: Michal Wajdeczko @ 2024-05-17 16:34 UTC (permalink / raw)
To: dri-devel, intel-gfx; +Cc: Michal Wajdeczko, Jani Nikula
Updated code of drm_dbg_printer() is already printing symbolic
name of the caller like drm_dbg() does.
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
---
drivers/gpu/drm/i915/gt/intel_reset.c | 2 +-
drivers/gpu/drm/i915/gt/selftest_context.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/gt/intel_reset.c b/drivers/gpu/drm/i915/gt/intel_reset.c
index 6161f7a3ff70..735cd23a43c6 100644
--- a/drivers/gpu/drm/i915/gt/intel_reset.c
+++ b/drivers/gpu/drm/i915/gt/intel_reset.c
@@ -1025,7 +1025,7 @@ void intel_gt_set_wedged(struct intel_gt *gt)
if (GEM_SHOW_DEBUG()) {
struct drm_printer p = drm_dbg_printer(>->i915->drm,
- DRM_UT_DRIVER, __func__);
+ DRM_UT_DRIVER, NULL);
struct intel_engine_cs *engine;
enum intel_engine_id id;
diff --git a/drivers/gpu/drm/i915/gt/selftest_context.c b/drivers/gpu/drm/i915/gt/selftest_context.c
index 12eca750f7d0..5eb46700dc4e 100644
--- a/drivers/gpu/drm/i915/gt/selftest_context.c
+++ b/drivers/gpu/drm/i915/gt/selftest_context.c
@@ -286,7 +286,7 @@ static int __live_active_context(struct intel_engine_cs *engine)
if (intel_engine_pm_is_awake(engine)) {
struct drm_printer p = drm_dbg_printer(&engine->i915->drm,
- DRM_UT_DRIVER, __func__);
+ DRM_UT_DRIVER, NULL);
intel_engine_dump(engine, &p,
"%s is still awake:%d after idle-barriers\n",
--
2.43.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for Improve drm printer code (rev2)
2024-05-17 16:34 [PATCH v2 0/3] Improve drm printer code Michal Wajdeczko
` (2 preceding siblings ...)
2024-05-17 16:34 ` [PATCH v2 3/3] drm/i915: Don't use __func__ as prefix for drm_dbg_printer Michal Wajdeczko
@ 2024-05-17 17:05 ` Patchwork
2024-05-17 17:05 ` ✗ Fi.CI.SPARSE: " Patchwork
` (3 subsequent siblings)
7 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-05-17 17:05 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-gfx
== Series Details ==
Series: Improve drm printer code (rev2)
URL : https://patchwork.freedesktop.org/series/133749/
State : warning
== Summary ==
Error: dim checkpatch failed
3274a9b5ce18 drm/print: Add generic drm dev printk function
-:46: WARNING:PRINTK_WITHOUT_KERN_LEVEL: printk() should include KERN_<LEVEL> facility level
#46: FILE: drivers/gpu/drm/drm_print.c:197:
+ printk("%s" "[" DRM_NAME ":%ps]%s%s %pV",
-:46: WARNING:STRING_FRAGMENTS: Consecutive strings are generally better as a single string
#46: FILE: drivers/gpu/drm/drm_print.c:197:
+ printk("%s" "[" DRM_NAME ":%ps]%s%s %pV",
-:49: WARNING:PRINTK_WITHOUT_KERN_LEVEL: printk() should include KERN_<LEVEL> facility level
#49: FILE: drivers/gpu/drm/drm_print.c:200:
+ printk("%s" "[" DRM_NAME "]%s%s %pV",
-:49: WARNING:STRING_FRAGMENTS: Consecutive strings are generally better as a single string
#49: FILE: drivers/gpu/drm/drm_print.c:200:
+ printk("%s" "[" DRM_NAME "]%s%s %pV",
total: 0 errors, 4 warnings, 0 checks, 87 lines checked
3432db1c2de2 drm/print: Improve drm_dbg_printer
e7d37f80fdc1 drm/i915: Don't use __func__ as prefix for drm_dbg_printer
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Fi.CI.SPARSE: warning for Improve drm printer code (rev2)
2024-05-17 16:34 [PATCH v2 0/3] Improve drm printer code Michal Wajdeczko
` (3 preceding siblings ...)
2024-05-17 17:05 ` ✗ Fi.CI.CHECKPATCH: warning for Improve drm printer code (rev2) Patchwork
@ 2024-05-17 17:05 ` Patchwork
2024-05-17 17:17 ` ✓ Fi.CI.BAT: success " Patchwork
` (2 subsequent siblings)
7 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-05-17 17:05 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-gfx
== Series Details ==
Series: Improve drm printer code (rev2)
URL : https://patchwork.freedesktop.org/series/133749/
State : warning
== Summary ==
Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✓ Fi.CI.BAT: success for Improve drm printer code (rev2)
2024-05-17 16:34 [PATCH v2 0/3] Improve drm printer code Michal Wajdeczko
` (4 preceding siblings ...)
2024-05-17 17:05 ` ✗ Fi.CI.SPARSE: " Patchwork
@ 2024-05-17 17:17 ` Patchwork
2024-05-18 3:36 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-05-22 9:02 ` [PATCH v2 0/3] Improve drm printer code Michal Wajdeczko
7 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-05-17 17:17 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 9701 bytes --]
== Series Details ==
Series: Improve drm printer code (rev2)
URL : https://patchwork.freedesktop.org/series/133749/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_14782 -> Patchwork_133749v2
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/index.html
Participating hosts (44 -> 42)
------------------------------
Additional (1): bat-mtlp-6
Missing (3): bat-arls-1 fi-snb-2520m fi-kbl-8809g
Known issues
------------
Here are the changes found in Patchwork_133749v2 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-mtlp-6: NOTRUN -> [SKIP][1] ([i915#9318])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/bat-mtlp-6/igt@debugfs_test@basic-hwmon.html
* igt@fbdev@info:
- bat-mtlp-6: NOTRUN -> [SKIP][2] ([i915#1849] / [i915#2582])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/bat-mtlp-6/igt@fbdev@info.html
* igt@fbdev@write:
- bat-mtlp-6: NOTRUN -> [SKIP][3] ([i915#2582]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/bat-mtlp-6/igt@fbdev@write.html
* igt@gem_lmem_swapping@verify-random:
- bat-mtlp-6: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/bat-mtlp-6/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- bat-mtlp-6: NOTRUN -> [SKIP][5] ([i915#4083])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/bat-mtlp-6/igt@gem_mmap@basic.html
* igt@gem_tiled_blits@basic:
- bat-mtlp-6: NOTRUN -> [SKIP][6] ([i915#4077]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/bat-mtlp-6/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-mtlp-6: NOTRUN -> [SKIP][7] ([i915#4079]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/bat-mtlp-6/igt@gem_tiled_pread_basic.html
* igt@i915_module_load@load:
- bat-arls-3: [PASS][8] -> [ABORT][9] ([i915#11041])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/bat-arls-3/igt@i915_module_load@load.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/bat-arls-3/igt@i915_module_load@load.html
* igt@i915_pm_rps@basic-api:
- bat-mtlp-6: NOTRUN -> [SKIP][10] ([i915#6621])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/bat-mtlp-6/igt@i915_pm_rps@basic-api.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- bat-mtlp-6: NOTRUN -> [SKIP][11] ([i915#4212] / [i915#9792]) +8 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/bat-mtlp-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-mtlp-6: NOTRUN -> [SKIP][12] ([i915#5190] / [i915#9792])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/bat-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-mtlp-6: NOTRUN -> [SKIP][13] ([i915#9792]) +17 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/bat-mtlp-6/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_flip@basic-flip-vs-dpms:
- bat-mtlp-6: NOTRUN -> [SKIP][14] ([i915#3637] / [i915#9792]) +3 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/bat-mtlp-6/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-mtlp-6: NOTRUN -> [SKIP][15] ([i915#5274] / [i915#9792])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/bat-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@basic:
- bat-mtlp-6: NOTRUN -> [SKIP][16] ([i915#4342] / [i915#5354] / [i915#9792])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/bat-mtlp-6/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pm_backlight@basic-brightness:
- bat-mtlp-6: NOTRUN -> [SKIP][17] ([i915#5354] / [i915#9792])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/bat-mtlp-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-cursor-plane-move:
- bat-mtlp-6: NOTRUN -> [SKIP][18] ([i915#1072] / [i915#9673] / [i915#9732] / [i915#9792]) +3 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/bat-mtlp-6/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-mtlp-6: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#8809] / [i915#9792])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/bat-mtlp-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-mtlp-6: NOTRUN -> [SKIP][20] ([i915#3708] / [i915#9792])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/bat-mtlp-6/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-mtlp-6: NOTRUN -> [SKIP][21] ([i915#3708] / [i915#4077]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/bat-mtlp-6/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-read:
- bat-mtlp-6: NOTRUN -> [SKIP][22] ([i915#3708]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/bat-mtlp-6/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- bat-mtlp-6: NOTRUN -> [SKIP][23] ([i915#10216] / [i915#3708])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/bat-mtlp-6/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@gem_lmem_swapping@basic@lmem0:
- bat-dg2-8: [FAIL][24] ([i915#10378]) -> [PASS][25]
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/bat-dg2-8/igt@gem_lmem_swapping@basic@lmem0.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/bat-dg2-8/igt@gem_lmem_swapping@basic@lmem0.html
* igt@i915_selftest@live@execlists:
- fi-bsw-n3050: [ABORT][26] ([i915#10594]) -> [PASS][27]
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/fi-bsw-n3050/igt@i915_selftest@live@execlists.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/fi-bsw-n3050/igt@i915_selftest@live@execlists.html
* igt@kms_flip@basic-flip-vs-dpms@b-dp7:
- {bat-mtlp-9}: [DMESG-WARN][28] ([i915#10435]) -> [PASS][29]
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/bat-mtlp-9/igt@kms_flip@basic-flip-vs-dpms@b-dp7.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/bat-mtlp-9/igt@kms_flip@basic-flip-vs-dpms@b-dp7.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378
[i915#10435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10435
[i915#10436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10436
[i915#10594]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10594
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11041]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11041
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[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#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4342
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9792]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9792
Build changes
-------------
* Linux: CI_DRM_14782 -> Patchwork_133749v2
CI-20190529: 20190529
CI_DRM_14782: 9a1e34ab96d15667fe73b7ada197ee295f003f86 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7861: 7861
Patchwork_133749v2: 9a1e34ab96d15667fe73b7ada197ee295f003f86 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/index.html
[-- Attachment #2: Type: text/html, Size: 11962 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* ✗ Fi.CI.IGT: failure for Improve drm printer code (rev2)
2024-05-17 16:34 [PATCH v2 0/3] Improve drm printer code Michal Wajdeczko
` (5 preceding siblings ...)
2024-05-17 17:17 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2024-05-18 3:36 ` Patchwork
2024-05-22 9:02 ` [PATCH v2 0/3] Improve drm printer code Michal Wajdeczko
7 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2024-05-18 3:36 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 85581 bytes --]
== Series Details ==
Series: Improve drm printer code (rev2)
URL : https://patchwork.freedesktop.org/series/133749/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_14782_full -> Patchwork_133749v2_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_133749v2_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_133749v2_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 (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_133749v2_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-glk1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg1: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-17/igt@kms_vrr@seamless-rr-switch-virtual.html
New tests
---------
New tests have been introduced between CI_DRM_14782_full and Patchwork_133749v2_full:
### New IGT tests (5) ###
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@d-hdmi-a3:
- Statuses : 2 pass(s)
- Exec time: [7.93, 8.09] s
* igt@kms_flip@flip-vs-suspend@d-hdmi-a3:
- Statuses : 1 pass(s)
- Exec time: [6.67] s
* igt@kms_hdr@bpc-switch-dpms@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [4.80] s
* igt@kms_hdr@bpc-switch@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [3.58] s
* igt@perf@buffer-fill@1-vcs0:
- Statuses : 1 pass(s)
- Exec time: [4.21] s
Known issues
------------
Here are the changes found in Patchwork_133749v2_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8411])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@drm_fdinfo@busy-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8414]) +5 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@drm_fdinfo@busy-check-all@ccs0.html
* igt@drm_fdinfo@idle@rcs0:
- shard-rkl: NOTRUN -> [FAIL][5] ([i915#7742])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-6/igt@drm_fdinfo@idle@rcs0.html
* igt@drm_fdinfo@most-busy-check-all@bcs0:
- shard-dg2: NOTRUN -> [SKIP][6] ([i915#8414]) +8 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-7/igt@drm_fdinfo@most-busy-check-all@bcs0.html
* igt@drm_fdinfo@virtual-busy-idle-all:
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#8414]) +4 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-16/igt@drm_fdinfo@virtual-busy-idle-all.html
* igt@gem_bad_reloc@negative-reloc:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#3281]) +3 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-5/igt@gem_bad_reloc@negative-reloc.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#7697])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-6/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-5/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-15/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][12] ([i915#7697])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-7/igt@gem_close_race@multigpu-basic-process.html
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#7697]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@gem_close_race@multigpu-basic-process.html
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-4/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#6335])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-set-pat:
- shard-tglu: NOTRUN -> [SKIP][16] ([i915#8562])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-5/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-mtlp: NOTRUN -> [SKIP][17] ([i915#8555])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_sseu@engines:
- shard-dg1: NOTRUN -> [SKIP][18] ([i915#280]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-16/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#280]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-5/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@reset-stress:
- shard-dg1: NOTRUN -> [FAIL][20] ([i915#5784])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-15/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#4812]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-7/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#4036])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-14/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_capture@capture-invisible@lmem0:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#6334]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-4/igt@gem_exec_capture@capture-invisible@lmem0.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][24] ([i915#6334])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-glk5/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#6334])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-tglu: NOTRUN -> [SKIP][26] ([i915#6334])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-7/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@many-4k-zero:
- shard-dg1: NOTRUN -> [FAIL][27] ([i915#9606])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-18/igt@gem_exec_capture@many-4k-zero.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: NOTRUN -> [FAIL][28] ([i915#2846])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none:
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852]) +5 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-17/igt@gem_exec_fair@basic-none.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-glk: NOTRUN -> [FAIL][30] ([i915#2842])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-glk6/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-none-share:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) +6 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-5/igt@gem_exec_fair@basic-none-share.html
* igt@gem_exec_fair@basic-none@bcs0:
- shard-rkl: [PASS][32] -> [FAIL][33] ([i915#2842])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-rkl-3/igt@gem_exec_fair@basic-none@bcs0.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-2/igt@gem_exec_fair@basic-none@bcs0.html
* igt@gem_exec_fence@submit:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#4812]) +6 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-16/igt@gem_exec_fence@submit.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#3711])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#3281]) +4 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-3/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_reloc@basic-gtt-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#3281]) +4 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@gem_exec_reloc@basic-gtt-noreloc.html
* igt@gem_exec_reloc@basic-scanout:
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#3281]) +10 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-17/igt@gem_exec_reloc@basic-scanout.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#4537] / [i915#4812])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-3/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_fenced_exec_thrash@2-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#4860])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-14/igt@gem_fenced_exec_thrash@2-spare-fences.html
* igt@gem_lmem_swapping@basic@lmem0:
- shard-dg2: [PASS][41] -> [FAIL][42] ([i915#10378])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-dg2-2/igt@gem_lmem_swapping@basic@lmem0.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-2/igt@gem_lmem_swapping@basic@lmem0.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4613]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg1: [PASS][44] -> [TIMEOUT][45] ([i915#5493])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_lmem_swapping@verify:
- shard-rkl: NOTRUN -> [SKIP][46] ([i915#4613])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-5/igt@gem_lmem_swapping@verify.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][47] ([i915#4613]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-glk8/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_mmap_gtt@bad-object:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4077]) +7 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-7/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#4077]) +21 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-15/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4077]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_wc@bad-size:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4083]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-4/igt@gem_mmap_wc@bad-size.html
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4083]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@gem_mmap_wc@bad-size.html
* igt@gem_mmap_wc@write-read:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4083]) +4 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-15/igt@gem_mmap_wc@write-read.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#3282]) +6 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-7/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#3282])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-5/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_pread@exhaustion:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#3282]) +8 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-14/igt@gem_pread@exhaustion.html
* igt@gem_pxp@display-protected-crc:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4270]) +2 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-3/igt@gem_pxp@display-protected-crc.html
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#4270]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-16/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-tglu: NOTRUN -> [SKIP][59] ([i915#4270]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-7/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-rkl: NOTRUN -> [SKIP][60] ([i915#4270])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-6/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4270]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#5190] / [i915#8428]) +6 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#8428]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4079])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-16/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4885])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-16/igt@gem_softpin@evict-snoop.html
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#4885])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-3/igt@gem_softpin@evict-snoop.html
* igt@gem_tiled_pread_basic:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4079]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-7/igt@gem_tiled_pread_basic.html
* igt@gem_unfence_active_buffers:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4879])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-17/igt@gem_unfence_active_buffers.html
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4879])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-5/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@access-control:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#3297]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-5/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglu: NOTRUN -> [SKIP][71] ([i915#3297])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-5/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#3297] / [i915#4880])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#3297] / [i915#4880])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@mmap-offset-banned@gtt:
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3297]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@gem_userptr_blits@mmap-offset-banned@gtt.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#3297]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-5/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#3297]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-17/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen7_exec_parse@oacontrol-tracking:
- shard-snb: NOTRUN -> [SKIP][77] +34 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-snb4/igt@gen7_exec_parse@oacontrol-tracking.html
* igt@gen9_exec_parse@allowed-all:
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#2527]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-5/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@bb-large:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#2527]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-17/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#2856]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-7/igt@gen9_exec_parse@secure-batches.html
* igt@i915_module_load@load:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#6227])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-15/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: NOTRUN -> [ABORT][82] ([i915#9820])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-6/igt@i915_module_load@reload-with-fault-injection.html
- shard-tglu: [PASS][83] -> [INCOMPLETE][84] ([i915#10047] / [i915#9820])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: NOTRUN -> [ABORT][85] ([i915#10131] / [i915#10887] / [i915#9820])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#7178])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-17/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rc6_residency@rc6-fence@gt0:
- shard-tglu: NOTRUN -> [WARN][87] ([i915#2681])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-fence@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
- shard-dg1: [PASS][88] -> [FAIL][89] ([i915#3591])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-mtlp: NOTRUN -> [SKIP][90] +13 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#6621])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-3/igt@i915_pm_rps@min-max-config-idle.html
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#6621])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-16/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds-park@gt0:
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#8925])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@i915_pm_rps@thresholds-park@gt0.html
* igt@i915_pm_rps@thresholds-park@gt1:
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#3555] / [i915#8925])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@i915_pm_rps@thresholds-park@gt1.html
* igt@i915_query@hwconfig_table:
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#6245])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-5/igt@i915_query@hwconfig_table.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#6188])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-3/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [PASS][97] -> [FAIL][98] ([i915#10031])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html
- shard-tglu: NOTRUN -> [INCOMPLETE][99] ([i915#7443])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-5/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@forcewake:
- shard-rkl: [PASS][100] -> [INCOMPLETE][101] ([i915#4817])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-rkl-6/igt@i915_suspend@forcewake.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-3/igt@i915_suspend@forcewake.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#4212])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#4212]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-3/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#4212]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-16/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#8709]) +3 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-6/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#8709]) +11 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#10333])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#9531])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-15/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][109] ([i915#5286]) +2 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-7/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#5286]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#5286]) +2 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#4538] / [i915#5286]) +5 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#3638]) +3 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-15/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#3638])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#5190])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-3/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#4538] / [i915#5190]) +7 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#4538]) +9 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_joiner@basic:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#10656])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-14/igt@kms_big_joiner@basic.html
* igt@kms_big_joiner@invalid-modeset-force-joiner:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#10656])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-4/igt@kms_big_joiner@invalid-modeset-force-joiner.html
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#10656])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-7/igt@kms_big_joiner@invalid-modeset-force-joiner.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#6095]) +59 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][122] ([i915#6095]) +11 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-5/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#10307] / [i915#6095]) +170 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-1/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#6095]) +7 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#10278])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#6095]) +37 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-4/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#10307] / [i915#10434] / [i915#6095])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-10/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#7213]) +3 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-7/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#3742])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-14/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg1: NOTRUN -> [SKIP][130] ([i915#7828]) +9 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-15/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#7828]) +2 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-mtlp: NOTRUN -> [SKIP][132] ([i915#7828]) +4 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
- shard-tglu: NOTRUN -> [SKIP][133] ([i915#7828])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-7/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-after-suspend:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#7828]) +6 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-3/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg1: NOTRUN -> [SKIP][135] ([i915#3299])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-17/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#9424]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-7/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#9424])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-17/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#7116])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-15/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#7116] / [i915#9424])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-14/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#3555]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#3359]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-tglu: NOTRUN -> [SKIP][142] ([i915#3359]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#3359])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#8814]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#4103] / [i915#4213]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#4103] / [i915#4213]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-16/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#4213])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][148] ([i915#9809]) +1 other test skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: NOTRUN -> [FAIL][149] ([i915#2346])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#4103])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@torture-move@pipe-a:
- shard-snb: [PASS][151] -> [DMESG-WARN][152] ([i915#10166])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-snb4/igt@kms_cursor_legacy@torture-move@pipe-a.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-snb6/igt@kms_cursor_legacy@torture-move@pipe-a.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#9723])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#9227])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html
* igt@kms_dp_aux_dev:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#1257])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-14/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#3840])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#3555] / [i915#3840])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-5/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#3469]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-5/igt@kms_fbcon_fbt@psr.html
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#3469])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-17/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu: NOTRUN -> [SKIP][160] ([i915#3469])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-7/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-3x:
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#1839])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-5/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#1839])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-14/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#9337])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-15/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#658])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-6/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg1: NOTRUN -> [SKIP][165] ([i915#8381])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-16/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg2: NOTRUN -> [SKIP][166] +19 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-4/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip:
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#3637]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-5/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#9934]) +7 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-14/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#3637]) +3 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#8381])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@kms_flip@flip-vs-fences.html
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#8381]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-4/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][172] ([i915#2672])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#2672])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][174] ([i915#2672] / [i915#3555])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#3555] / [i915#8810])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][176] ([i915#2587] / [i915#2672]) +4 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#5274])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-3/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt:
- shard-dg2: [PASS][178] -> [FAIL][179] ([i915#6880]) +1 other test fail
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-dg1: NOTRUN -> [SKIP][180] +59 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-dg2: NOTRUN -> [SKIP][181] ([i915#5354]) +30 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#3023]) +6 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#8708]) +15 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#1825]) +11 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#8708]) +23 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#3458]) +19 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][187] ([i915#8708]) +6 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][188] +22 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#1825]) +14 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#3458]) +12 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdr@static-toggle:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#8228])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#8228])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-7/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#8228])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-17/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][194] ([i915#7862]) +1 other test fail
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-glk5/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#9423]) +7 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-c-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#9423]) +7 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#5176] / [i915#9423]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][198] ([i915#9423]) +3 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#5235]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#5235]) +11 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-15/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#5235] / [i915#9423]) +7 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-11/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-dp-4.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#5235] / [i915#9423] / [i915#9728]) +3 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [SKIP][203] +214 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-glk6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#9685])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-4/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#9292])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#9685]) +1 other test skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-5/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#9340])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-17/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [PASS][208] -> [SKIP][209] ([i915#9519]) +2 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-dg2-10/igt@kms_pm_rpm@dpms-lpsp.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#9519])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp.html
- shard-rkl: [PASS][211] -> [SKIP][212] ([i915#9519])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2-pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#9808]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2-pipe-a-edp-1.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#9683]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#9683])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-16/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@pr-cursor-blt:
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#9688]) +3 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@kms_psr@pr-cursor-blt.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#1072] / [i915#9732]) +4 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-5/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#1072] / [i915#9732]) +17 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-4/igt@kms_psr@psr2-cursor-blt.html
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#9732]) +3 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-7/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-sprite-blt:
- shard-dg1: NOTRUN -> [SKIP][220] ([i915#1072] / [i915#9732]) +27 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-14/igt@kms_psr@psr2-sprite-blt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#9685])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-18/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#4884])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-15/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#4235]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-7/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#5289])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#3555]) +6 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-15/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#3555]) +3 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-5/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-tglu: NOTRUN -> [SKIP][227] ([i915#3555])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-7/igt@kms_setmode@clone-exclusive-crtc.html
- shard-mtlp: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#8809])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_sysfs_edid_timing:
- shard-dg1: NOTRUN -> [FAIL][229] ([IGT#2] / [i915#6493])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-15/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu: NOTRUN -> [SKIP][230] ([i915#8623])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-5/igt@kms_tiled_display@basic-test-pattern.html
- shard-glk: NOTRUN -> [FAIL][231] ([i915#10959])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-glk6/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1:
- shard-tglu: [PASS][232] -> [FAIL][233] ([i915#9196])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html
* igt@kms_vblank@ts-continuation-idle-hang@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [INCOMPLETE][234] ([i915#9508])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-6/igt@kms_vblank@ts-continuation-idle-hang@pipe-d-hdmi-a-3.html
* igt@kms_vrr@flip-dpms:
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#3555] / [i915#8808])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@kms_vrr@flip-dpms.html
* igt@kms_writeback@writeback-fb-id:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#2437])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-5/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-glk: NOTRUN -> [SKIP][237] ([i915#2437]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-glk3/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#2437] / [i915#9412])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-7/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf_pmu@faulting-read@gtt:
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#8440])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@perf_pmu@faulting-read@gtt.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#8516])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-7/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#3708] / [i915#4077])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-3/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#3708]) +3 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-17/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#3708])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-3/igt@prime_vgem@fence-read-hang.html
* igt@syncobj_timeline@invalid-wait-zero-handles:
- shard-rkl: NOTRUN -> [FAIL][244] ([i915#9781])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-5/igt@syncobj_timeline@invalid-wait-zero-handles.html
* igt@tools_test@sysfs_l3_parity:
- shard-rkl: NOTRUN -> [SKIP][245] +12 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-5/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_get_bo_offset@create-get-offsets:
- shard-dg1: NOTRUN -> [SKIP][246] ([i915#2575]) +14 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-17/igt@v3d/v3d_get_bo_offset@create-get-offsets.html
* igt@v3d/v3d_perfmon@create-single-perfmon:
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#2575]) +10 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-7/igt@v3d/v3d_perfmon@create-single-perfmon.html
* igt@v3d/v3d_perfmon@get-values-invalid-pointer:
- shard-tglu: NOTRUN -> [SKIP][248] ([i915#2575]) +7 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-7/igt@v3d/v3d_perfmon@get-values-invalid-pointer.html
* igt@v3d/v3d_wait_bo@used-bo:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#2575]) +3 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@v3d/v3d_wait_bo@used-bo.html
* igt@vc4/vc4_create_bo@create-bo-0:
- shard-mtlp: NOTRUN -> [SKIP][250] ([i915#7711]) +4 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@vc4/vc4_create_bo@create-bo-0.html
* igt@vc4/vc4_label_bo@set-kernel-name:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#7711])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-5/igt@vc4/vc4_label_bo@set-kernel-name.html
* igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem:
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#7711]) +10 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-14/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html
* igt@vc4/vc4_wait_bo@bad-bo:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#7711]) +6 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-4/igt@vc4/vc4_wait_bo@bad-bo.html
#### Possible fixes ####
* igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_clear:
- shard-dg2: [ABORT][254] -> [PASS][255]
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-dg2-3/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_clear.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-4/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_clear.html
- shard-mtlp: [ABORT][256] -> [PASS][257]
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-mtlp-1/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_clear.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_clear.html
* igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_range_bias:
- shard-dg2: [DMESG-FAIL][258] -> [PASS][259]
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-dg2-3/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_range_bias.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-4/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_range_bias.html
- shard-mtlp: [DMESG-FAIL][260] -> [PASS][261]
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-mtlp-1/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_range_bias.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-4/igt@drm_buddy@drm_buddy@drm_test_buddy_alloc_range_bias.html
* igt@gem_eio@kms:
- shard-tglu: [INCOMPLETE][262] ([i915#10513]) -> [PASS][263]
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-tglu-5/igt@gem_eio@kms.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-4/igt@gem_eio@kms.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [FAIL][264] ([i915#2842]) -> [PASS][265] +3 other tests pass
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-rkl-3/igt@gem_exec_fair@basic-pace@rcs0.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-6/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0:
- shard-dg2: [FAIL][266] ([i915#10378]) -> [PASS][267]
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-dg2-1/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-2/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html
* igt@gem_lmem_swapping@heavy-verify-random@lmem0:
- shard-dg1: [FAIL][268] ([i915#10378]) -> [PASS][269]
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-18/igt@gem_lmem_swapping@heavy-verify-random@lmem0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [TIMEOUT][270] ([i915#5493]) -> [PASS][271]
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: [FAIL][272] ([i915#3591]) -> [PASS][273]
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1:
- shard-tglu: [FAIL][274] ([i915#10991]) -> [PASS][275]
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-tglu-7/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-3/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-1.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-2:
- shard-glk: [INCOMPLETE][276] -> [PASS][277] +1 other test pass
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-glk3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-2.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-glk1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-2.html
* igt@kms_cursor_legacy@single-move@pipe-a:
- shard-mtlp: [DMESG-WARN][278] ([i915#10166]) -> [PASS][279]
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-mtlp-7/igt@kms_cursor_legacy@single-move@pipe-a.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-6/igt@kms_cursor_legacy@single-move@pipe-a.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [ABORT][280] -> [PASS][281]
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-snb5/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-snb4/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt:
- shard-dg2: [FAIL][282] ([i915#6880]) -> [PASS][283]
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: [SKIP][284] ([i915#9519]) -> [PASS][285]
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [SKIP][286] ([i915#9519]) -> [PASS][287] +1 other test pass
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-dg2-10/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-mtlp: [FAIL][288] ([i915#9196]) -> [PASS][289]
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_vblank@ts-continuation-idle-hang@pipe-d-hdmi-a-4:
- shard-dg1: [INCOMPLETE][290] -> [PASS][291]
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-dg1-17/igt@kms_vblank@ts-continuation-idle-hang@pipe-d-hdmi-a-4.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-18/igt@kms_vblank@ts-continuation-idle-hang@pipe-d-hdmi-a-4.html
#### Warnings ####
* igt@gem_eio@kms:
- shard-dg2: [INCOMPLETE][292] ([i915#10513]) -> [FAIL][293] ([i915#5784])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-dg2-1/igt@gem_eio@kms.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-2/igt@gem_eio@kms.html
- shard-dg1: [INCOMPLETE][294] ([i915#10513]) -> [FAIL][295] ([i915#5784])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-dg1-18/igt@gem_eio@kms.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg1-17/igt@gem_eio@kms.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- shard-tglu: [WARN][296] ([i915#2681]) -> [FAIL][297] ([i915#3591])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][298] ([i915#5138]) -> [DMESG-FAIL][299] ([i915#2017])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2: [SKIP][300] ([i915#10433] / [i915#3458]) -> [SKIP][301] ([i915#3458]) +2 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2: [SKIP][302] ([i915#3458]) -> [SKIP][303] ([i915#10433] / [i915#3458])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-slowdraw.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][304] ([i915#4816]) -> [SKIP][305] ([i915#4070] / [i915#4816])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_psr@psr-dpms:
- shard-dg2: [SKIP][306] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][307] ([i915#1072] / [i915#9732])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-dg2-11/igt@kms_psr@psr-dpms.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-1/igt@kms_psr@psr-dpms.html
* igt@kms_psr@psr-primary-mmap-cpu:
- shard-dg2: [SKIP][308] ([i915#1072] / [i915#9732]) -> [SKIP][309] ([i915#1072] / [i915#9673] / [i915#9732]) +5 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14782/shard-dg2-4/igt@kms_psr@psr-primary-mmap-cpu.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_133749v2/shard-dg2-11/igt@kms_psr@psr-primary-mmap-cpu.html
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[i915#10031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10031
[i915#10047]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10047
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10166
[i915#10278]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10278
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10333]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10333
[i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10513]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10513
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#10991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10991
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2017]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2017
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[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#3711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3711
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070
[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#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#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4884]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4884
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188
[i915#6227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6493
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7178
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8440]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8440
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[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#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8925]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8925
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9227
[i915#9292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9292
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9508]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9508
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9606]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9606
[i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9728]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9781
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* Linux: CI_DRM_14782 -> Patchwork_133749v2
CI-20190529: 20190529
CI_DRM_14782: 9a1e34ab96d15667fe73b7ada197ee295f003f86 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7861: 7861
Patchwork_133749v2: 9a1e34ab96d15667fe73b7ada197ee295f003f86 @ 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_133749v2/index.html
[-- Attachment #2: Type: text/html, Size: 104785 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 1/3] drm/print: Add generic drm dev printk function
2024-05-17 16:34 ` [PATCH v2 1/3] drm/print: Add generic drm dev printk function Michal Wajdeczko
@ 2024-05-20 8:48 ` Jani Nikula
0 siblings, 0 replies; 10+ messages in thread
From: Jani Nikula @ 2024-05-20 8:48 UTC (permalink / raw)
To: Michal Wajdeczko, dri-devel, intel-gfx; +Cc: Michal Wajdeczko
On Fri, 17 May 2024, Michal Wajdeczko <michal.wajdeczko@intel.com> wrote:
> We already have some drm printk functions that need to duplicate
> a code to get a similar format of the final result, for example:
>
> [ ] 0000:00:00.0: [drm:foo] bar
> [ ] 0000:00:00.0: [drm] foo bar
> [ ] 0000:00:00.0: [drm] *ERROR* foo
>
> Add a generic __drm_dev_vprintk() function that can format the
> final message like all other existing function do and allows us
> to keep the formatting code in one place.
>
> Cc: Jani Nikula <jani.nikula@intel.com>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
> ---
> v2: make it static, keep it simple and use braces (Jani)
> ---
> drivers/gpu/drm/drm_print.c | 52 +++++++++++++++++++++----------------
> 1 file changed, 30 insertions(+), 22 deletions(-)
>
> diff --git a/drivers/gpu/drm/drm_print.c b/drivers/gpu/drm/drm_print.c
> index cf2efb44722c..41892491a12c 100644
> --- a/drivers/gpu/drm/drm_print.c
> +++ b/drivers/gpu/drm/drm_print.c
> @@ -176,6 +176,32 @@ void __drm_printfn_seq_file(struct drm_printer *p, struct va_format *vaf)
> }
> EXPORT_SYMBOL(__drm_printfn_seq_file);
>
> +static void __drm_dev_vprintk(const struct device *dev, const char *level,
> + const void *origin, const char *prefix,
> + struct va_format *vaf)
> +{
> + const char *prefix_pad = prefix ? " " : "";
> +
> + if (!prefix)
> + prefix = "";
> +
> + if (dev) {
> + if (origin)
> + dev_printk(level, dev, "[" DRM_NAME ":%ps]%s%s %pV",
> + origin, prefix_pad, prefix, vaf);
> + else
> + dev_printk(level, dev, "[" DRM_NAME "]%s%s %pV",
> + prefix_pad, prefix, vaf);
> + } else {
> + if (origin)
> + printk("%s" "[" DRM_NAME ":%ps]%s%s %pV",
> + level, origin, prefix_pad, prefix, vaf);
> + else
> + printk("%s" "[" DRM_NAME "]%s%s %pV",
> + level, prefix_pad, prefix, vaf);
> + }
> +}
> +
> void __drm_printfn_info(struct drm_printer *p, struct va_format *vaf)
> {
> dev_info(p->arg, "[" DRM_NAME "] %pV", vaf);
> @@ -187,19 +213,12 @@ void __drm_printfn_dbg(struct drm_printer *p, struct va_format *vaf)
> const struct drm_device *drm = p->arg;
> const struct device *dev = drm ? drm->dev : NULL;
> enum drm_debug_category category = p->category;
> - const char *prefix = p->prefix ?: "";
> - const char *prefix_pad = p->prefix ? " " : "";
>
> if (!__drm_debug_enabled(category))
> return;
>
> /* Note: __builtin_return_address(0) is useless here. */
> - if (dev)
> - dev_printk(KERN_DEBUG, dev, "[" DRM_NAME "]%s%s %pV",
> - prefix_pad, prefix, vaf);
> - else
> - printk(KERN_DEBUG "[" DRM_NAME "]%s%s %pV",
> - prefix_pad, prefix, vaf);
> + __drm_dev_vprintk(dev, KERN_DEBUG, NULL, p->prefix, vaf);
> }
> EXPORT_SYMBOL(__drm_printfn_dbg);
>
> @@ -287,12 +306,7 @@ void drm_dev_printk(const struct device *dev, const char *level,
> vaf.fmt = format;
> vaf.va = &args;
>
> - if (dev)
> - dev_printk(level, dev, "[" DRM_NAME ":%ps] %pV",
> - __builtin_return_address(0), &vaf);
> - else
> - printk("%s" "[" DRM_NAME ":%ps] %pV",
> - level, __builtin_return_address(0), &vaf);
> + __drm_dev_vprintk(dev, level, __builtin_return_address(0), NULL, &vaf);
>
> va_end(args);
> }
> @@ -312,12 +326,7 @@ void __drm_dev_dbg(struct _ddebug *desc, const struct device *dev,
> vaf.fmt = format;
> vaf.va = &args;
>
> - if (dev)
> - dev_printk(KERN_DEBUG, dev, "[" DRM_NAME ":%ps] %pV",
> - __builtin_return_address(0), &vaf);
> - else
> - printk(KERN_DEBUG "[" DRM_NAME ":%ps] %pV",
> - __builtin_return_address(0), &vaf);
> + __drm_dev_vprintk(dev, KERN_DEBUG, __builtin_return_address(0), NULL, &vaf);
>
> va_end(args);
> }
> @@ -351,8 +360,7 @@ void __drm_err(const char *format, ...)
> vaf.fmt = format;
> vaf.va = &args;
>
> - printk(KERN_ERR "[" DRM_NAME ":%ps] *ERROR* %pV",
> - __builtin_return_address(0), &vaf);
> + __drm_dev_vprintk(NULL, KERN_ERR, __builtin_return_address(0), "*ERROR*", &vaf);
>
> va_end(args);
> }
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH v2 0/3] Improve drm printer code
2024-05-17 16:34 [PATCH v2 0/3] Improve drm printer code Michal Wajdeczko
` (6 preceding siblings ...)
2024-05-18 3:36 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-05-22 9:02 ` Michal Wajdeczko
7 siblings, 0 replies; 10+ messages in thread
From: Michal Wajdeczko @ 2024-05-22 9:02 UTC (permalink / raw)
To: dri-devel, intel-gfx, Maxime Ripard, Thomas Zimmermann
++
It's already reviewed, but since this touches shared code, extra acks
are still welcomed
On 17.05.2024 18:34, Michal Wajdeczko wrote:
> We already have some drm printk functions that need to duplicate
> a code to get a similar format of the final result, for example:
>
> [ ] 0000:00:00.0: [drm:foo] bar
> [ ] 0000:00:00.0: [drm] foo bar
> [ ] 0000:00:00.0: [drm] *ERROR* foo
>
> Add a generic __drm_dev_vprintk() function that can format the
> final message like all other existing function do and allows us
> to keep the formatting code in one place.
>
> Above also allows to improve drm_dbg_printer() that today lacks
> of outputing symbolic name of the caller, like drm_dbg() does.
>
> v1: https://patchwork.freedesktop.org/series/133749/
> v2: make it static, keep it simple and use braces (Jani)
>
> Michal Wajdeczko (3):
> drm/print: Add generic drm dev printk function
> drm/print: Improve drm_dbg_printer
> drm/i915: Don't use __func__ as prefix for drm_dbg_printer
>
> drivers/gpu/drm/drm_print.c | 53 ++++++++++++----------
> drivers/gpu/drm/i915/gt/intel_reset.c | 2 +-
> drivers/gpu/drm/i915/gt/selftest_context.c | 2 +-
> include/drm/drm_print.h | 2 +
> 4 files changed, 34 insertions(+), 25 deletions(-)
>
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2024-05-22 9:02 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-17 16:34 [PATCH v2 0/3] Improve drm printer code Michal Wajdeczko
2024-05-17 16:34 ` [PATCH v2 1/3] drm/print: Add generic drm dev printk function Michal Wajdeczko
2024-05-20 8:48 ` Jani Nikula
2024-05-17 16:34 ` [PATCH v2 2/3] drm/print: Improve drm_dbg_printer Michal Wajdeczko
2024-05-17 16:34 ` [PATCH v2 3/3] drm/i915: Don't use __func__ as prefix for drm_dbg_printer Michal Wajdeczko
2024-05-17 17:05 ` ✗ Fi.CI.CHECKPATCH: warning for Improve drm printer code (rev2) Patchwork
2024-05-17 17:05 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-05-17 17:17 ` ✓ Fi.CI.BAT: success " Patchwork
2024-05-18 3:36 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-05-22 9:02 ` [PATCH v2 0/3] Improve drm printer code Michal Wajdeczko
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox