* [Intel-gfx] [PATCH 1/2] drm/i915: Introduce has_media_ratio_mode
2022-04-26 0:20 [Intel-gfx] [PATCH 0/2] drm/i915: Media freq factor Ashutosh Dixit
@ 2022-04-26 0:20 ` Ashutosh Dixit
2022-04-26 0:20 ` [Intel-gfx] [PATCH 2/2] drm/i915/gt: Add media freq factor to per-gt sysfs Ashutosh Dixit
` (2 subsequent siblings)
3 siblings, 0 replies; 6+ messages in thread
From: Ashutosh Dixit @ 2022-04-26 0:20 UTC (permalink / raw)
To: intel-gfx; +Cc: Rodrigo Vivi
Media ratio mode (the ability for media IP to work at a different frequency
from the GT) is available for a subset of dGfx platforms supporting
GuC/SLPC. Introduce 'has_media_ratio_mode' flag in intel_device_info to
identify these platforms and set it for XEHPSDV and DG2/ATS-M.
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>
---
drivers/gpu/drm/i915/i915_drv.h | 2 ++
drivers/gpu/drm/i915/i915_pci.c | 2 ++
drivers/gpu/drm/i915/intel_device_info.h | 1 +
3 files changed, 5 insertions(+)
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
index 24111bf42ce0..96625eabb244 100644
--- a/drivers/gpu/drm/i915/i915_drv.h
+++ b/drivers/gpu/drm/i915/i915_drv.h
@@ -1227,6 +1227,8 @@ IS_SUBPLATFORM(const struct drm_i915_private *i915,
#define CCS_MASK(gt) \
ENGINE_INSTANCES_MASK(gt, CCS0, I915_MAX_CCS)
+#define HAS_MEDIA_RATIO_MODE(dev_priv) (INTEL_INFO(dev_priv)->has_media_ratio_mode)
+
/*
* The Gen7 cmdparser copies the scanned buffer to the ggtt for execution
* All later gens can run the final buffer from the ppgtt
diff --git a/drivers/gpu/drm/i915/i915_pci.c b/drivers/gpu/drm/i915/i915_pci.c
index b60492826478..3ea1e11cc2a7 100644
--- a/drivers/gpu/drm/i915/i915_pci.c
+++ b/drivers/gpu/drm/i915/i915_pci.c
@@ -1033,6 +1033,7 @@ static const struct intel_device_info xehpsdv_info = {
.display = { },
.has_64k_pages = 1,
.needs_compact_pt = 1,
+ .has_media_ratio_mode = 1,
.platform_engine_mask =
BIT(RCS0) | BIT(BCS0) |
BIT(VECS0) | BIT(VECS1) | BIT(VECS2) | BIT(VECS3) |
@@ -1053,6 +1054,7 @@ static const struct intel_device_info xehpsdv_info = {
.has_guc_deprivilege = 1, \
.has_heci_pxp = 1, \
.needs_compact_pt = 1, \
+ .has_media_ratio_mode = 1, \
.platform_engine_mask = \
BIT(RCS0) | BIT(BCS0) | \
BIT(VECS0) | BIT(VECS1) | \
diff --git a/drivers/gpu/drm/i915/intel_device_info.h b/drivers/gpu/drm/i915/intel_device_info.h
index 20c351c8d5bd..2bd67b3457f1 100644
--- a/drivers/gpu/drm/i915/intel_device_info.h
+++ b/drivers/gpu/drm/i915/intel_device_info.h
@@ -153,6 +153,7 @@ enum intel_ppgtt_type {
func(has_llc); \
func(has_logical_ring_contexts); \
func(has_logical_ring_elsq); \
+ func(has_media_ratio_mode); \
func(has_mslices); \
func(has_pooled_eu); \
func(has_pxp); \
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread* [Intel-gfx] [PATCH 2/2] drm/i915/gt: Add media freq factor to per-gt sysfs
2022-04-26 0:20 [Intel-gfx] [PATCH 0/2] drm/i915: Media freq factor Ashutosh Dixit
2022-04-26 0:20 ` [Intel-gfx] [PATCH 1/2] drm/i915: Introduce has_media_ratio_mode Ashutosh Dixit
@ 2022-04-26 0:20 ` Ashutosh Dixit
2022-04-26 1:19 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Media freq factor Patchwork
2022-04-26 3:13 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Ashutosh Dixit @ 2022-04-26 0:20 UTC (permalink / raw)
To: intel-gfx; +Cc: Rodrigo Vivi
Expose new sysfs to program and retrieve media freq factor. Factor values
of 0 (dynamic), 0.5 and 1.0 are supported via a u8.8 fixed point
representation (corresponding to integer values of 0, 128 and 256
respectively).
Media freq factor is converted to media_ratio_mode for GuC. It is
programmed into GuC using H2G SLPC interface. It is retrieved from GuC
through a register read. A cached media_ratio_mode is maintained to
preserve set values across GuC resets.
This patch adds the following sysfs files to gt/gtN sysfs:
* media_freq_factor
* media_freq_factor.scale
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Dale B Stimson <dale.b.stimson@intel.com>
Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
drivers/gpu/drm/i915/gt/intel_gt_regs.h | 1 +
drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c | 130 ++++++++++++++++++
.../drm/i915/gt/uc/abi/guc_actions_slpc_abi.h | 6 +
drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c | 20 +++
drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.h | 1 +
.../gpu/drm/i915/gt/uc/intel_guc_slpc_types.h | 3 +
6 files changed, 161 insertions(+)
diff --git a/drivers/gpu/drm/i915/gt/intel_gt_regs.h b/drivers/gpu/drm/i915/gt/intel_gt_regs.h
index a39718a40cc3..8ba84c336925 100644
--- a/drivers/gpu/drm/i915/gt/intel_gt_regs.h
+++ b/drivers/gpu/drm/i915/gt/intel_gt_regs.h
@@ -732,6 +732,7 @@
#define GEN6_AGGRESSIVE_TURBO (0 << 15)
#define GEN9_SW_REQ_UNSLICE_RATIO_SHIFT 23
#define GEN9_IGNORE_SLICE_RATIO (0 << 0)
+#define GEN12_MEDIA_FREQ_RATIO REG_BIT(13)
#define GEN6_RC_VIDEO_FREQ _MMIO(0xa00c)
#define GEN6_RC_CTL_RC6pp_ENABLE (1 << 16)
diff --git a/drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c b/drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c
index 26cbfa6477d1..2b1cd6a01724 100644
--- a/drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c
+++ b/drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.c
@@ -557,6 +557,128 @@ static const struct attribute *freq_attrs[] = {
NULL
};
+/*
+ * Scaling for multipliers (aka frequency factors).
+ * The format of the value in the register is u8.8.
+ *
+ * The presentation to userspace is inspired by the perf event framework.
+ * See:
+ * Documentation/ABI/testing/sysfs-bus-event_source-devices-events
+ * for description of:
+ * /sys/bus/event_source/devices/<pmu>/events/<event>.scale
+ *
+ * Summary: Expose two sysfs files for each multiplier.
+ *
+ * 1. File <attr> contains a raw hardware value.
+ * 2. File <attr>.scale contains the multiplicative scale factor to be
+ * used by userspace to compute the actual value.
+ *
+ * So userspace knows that to get the frequency_factor it multiplies the
+ * provided value by the specified scale factor and vice-versa.
+ *
+ * That way there is no precision loss in the kernel interface and API
+ * is future proof should one day the hardware register change to u16.u16,
+ * on some platform. (Or any other fixed point representation.)
+ *
+ * Example:
+ * File <attr> contains the value 2.5, represented as u8.8 0x0280, which
+ * is comprised of:
+ * - an integer part of 2
+ * - a fractional part of 0x80 (representing 0x80 / 2^8 == 0x80 / 256).
+ * File <attr>.scale contains a string representation of floating point
+ * value 0.00390625 (which is (1 / 256)).
+ * Userspace computes the actual value:
+ * 0x0280 * 0.00390625 -> 2.5
+ * or converts an actual value to the value to be written into <attr>:
+ * 2.5 / 0.00390625 -> 0x0280
+ */
+
+#define U8_8_VAL_MASK 0xffff
+#define U8_8_SCALE_TO_VALUE "0.00390625"
+
+static ssize_t freq_factor_scale_show(struct device *dev,
+ struct device_attribute *attr,
+ char *buff)
+{
+ return sysfs_emit(buff, "%s\n", U8_8_SCALE_TO_VALUE);
+}
+
+static u32 media_ratio_mode_to_factor(u32 mode)
+{
+ /* 0 -> 0, 1 -> 256, 2 -> 128 */
+ return !mode ? mode : 256 / mode;
+}
+
+static ssize_t media_freq_factor_show(struct device *dev,
+ struct device_attribute *attr,
+ char *buff)
+{
+ struct intel_gt *gt = intel_gt_sysfs_get_drvdata(dev, attr->attr.name);
+ struct intel_guc_slpc *slpc = >->uc.guc.slpc;
+ intel_wakeref_t wakeref;
+ u32 mode;
+
+ /*
+ * Retrieve media_ratio_mode from GEN6_RPNSWREQ bit 13 set by
+ * GuC. GEN6_RPNSWREQ:13 value 0 represents 1:2 and 1 represents 1:1
+ */
+ if (IS_XEHPSDV(gt->i915) &&
+ slpc->media_ratio_mode == SLPC_MEDIA_RATIO_MODE_DYNAMIC_CONTROL) {
+ /*
+ * For XEHPSDV dynamic mode GEN6_RPNSWREQ:13 does not contain
+ * the media_ratio_mode, just return the cached media ratio
+ */
+ mode = slpc->media_ratio_mode;
+ } else {
+ with_intel_runtime_pm(gt->uncore->rpm, wakeref)
+ mode = intel_uncore_read(gt->uncore, GEN6_RPNSWREQ);
+ mode = REG_FIELD_GET(GEN12_MEDIA_FREQ_RATIO, mode) ?
+ SLPC_MEDIA_RATIO_MODE_FIXED_ONE_TO_ONE :
+ SLPC_MEDIA_RATIO_MODE_FIXED_ONE_TO_TWO;
+ }
+
+ return sysfs_emit(buff, "%u\n", media_ratio_mode_to_factor(mode));
+}
+
+static ssize_t media_freq_factor_store(struct device *dev,
+ struct device_attribute *attr,
+ const char *buff, size_t count)
+{
+ struct intel_gt *gt = intel_gt_sysfs_get_drvdata(dev, attr->attr.name);
+ struct intel_guc_slpc *slpc = >->uc.guc.slpc;
+ u32 factor, mode;
+ int err;
+
+ err = kstrtou32(buff, 0, &factor);
+ if (err)
+ return err;
+
+ for (mode = SLPC_MEDIA_RATIO_MODE_DYNAMIC_CONTROL;
+ mode <= SLPC_MEDIA_RATIO_MODE_FIXED_ONE_TO_TWO; mode++)
+ if (factor == media_ratio_mode_to_factor(mode))
+ break;
+
+ if (mode > SLPC_MEDIA_RATIO_MODE_FIXED_ONE_TO_TWO)
+ return -EINVAL;
+
+ err = intel_guc_slpc_set_media_ratio_mode(slpc, mode);
+ if (!err) {
+ slpc->media_ratio_mode = mode;
+ DRM_DEBUG("Set slpc->media_ratio_mode to %d", mode);
+ }
+ return err ?: count;
+}
+
+static DEVICE_ATTR_RW(media_freq_factor);
+static struct device_attribute dev_attr_media_freq_factor_scale =
+ __ATTR(media_freq_factor.scale, 0444, freq_factor_scale_show, NULL);
+
+static const struct attribute *media_perf_power_attrs[] = {
+ &dev_attr_media_freq_factor.attr,
+ &dev_attr_media_freq_factor_scale.attr,
+ NULL
+};
+
static int intel_sysfs_rps_init(struct intel_gt *gt, struct kobject *kobj,
const struct attribute * const *attrs)
{
@@ -598,4 +720,12 @@ void intel_gt_sysfs_pm_init(struct intel_gt *gt, struct kobject *kobj)
drm_warn(>->i915->drm,
"failed to create gt%u throttle sysfs files (%pe)",
gt->info.id, ERR_PTR(ret));
+
+ if (HAS_MEDIA_RATIO_MODE(gt->i915) && intel_uc_uses_guc_slpc(>->uc)) {
+ ret = sysfs_create_files(kobj, media_perf_power_attrs);
+ if (ret)
+ drm_warn(>->i915->drm,
+ "failed to create add gt%u media_perf_power_attrs sysfs (%pe)\n",
+ gt->info.id, ERR_PTR(ret));
+ }
}
diff --git a/drivers/gpu/drm/i915/gt/uc/abi/guc_actions_slpc_abi.h b/drivers/gpu/drm/i915/gt/uc/abi/guc_actions_slpc_abi.h
index 62cb4254a77a..4c840a2639dc 100644
--- a/drivers/gpu/drm/i915/gt/uc/abi/guc_actions_slpc_abi.h
+++ b/drivers/gpu/drm/i915/gt/uc/abi/guc_actions_slpc_abi.h
@@ -122,6 +122,12 @@ enum slpc_param_id {
SLPC_MAX_PARAM = 32,
};
+enum slpc_media_ratio_mode {
+ SLPC_MEDIA_RATIO_MODE_DYNAMIC_CONTROL = 0,
+ SLPC_MEDIA_RATIO_MODE_FIXED_ONE_TO_ONE = 1,
+ SLPC_MEDIA_RATIO_MODE_FIXED_ONE_TO_TWO = 2,
+};
+
enum slpc_event_id {
SLPC_EVENT_RESET = 0,
SLPC_EVENT_SHUTDOWN = 1,
diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
index 1db833da42df..2df31af70d63 100644
--- a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
+++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.c
@@ -260,6 +260,7 @@ int intel_guc_slpc_init(struct intel_guc_slpc *slpc)
slpc->boost_freq = 0;
atomic_set(&slpc->num_waiters, 0);
slpc->num_boosts = 0;
+ slpc->media_ratio_mode = SLPC_MEDIA_RATIO_MODE_DYNAMIC_CONTROL;
mutex_init(&slpc->lock);
INIT_WORK(&slpc->boost_work, slpc_boost_work);
@@ -506,6 +507,22 @@ int intel_guc_slpc_get_min_freq(struct intel_guc_slpc *slpc, u32 *val)
return ret;
}
+int intel_guc_slpc_set_media_ratio_mode(struct intel_guc_slpc *slpc, u32 val)
+{
+ struct drm_i915_private *i915 = slpc_to_i915(slpc);
+ intel_wakeref_t wakeref;
+ int ret = 0;
+
+ if (!HAS_MEDIA_RATIO_MODE(i915))
+ return -ENODEV;
+
+ with_intel_runtime_pm(&i915->runtime_pm, wakeref)
+ ret = slpc_set_param(slpc,
+ SLPC_PARAM_MEDIA_FF_RATIO_MODE,
+ val);
+ return ret;
+}
+
void intel_guc_pm_intrmsk_enable(struct intel_gt *gt)
{
u32 pm_intrmsk_mbz = 0;
@@ -654,6 +671,9 @@ int intel_guc_slpc_enable(struct intel_guc_slpc *slpc)
return ret;
}
+ /* Set cached media freq ratio mode */
+ intel_guc_slpc_set_media_ratio_mode(slpc, slpc->media_ratio_mode);
+
return 0;
}
diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.h b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.h
index 0caa8fee3c04..82a98f78f96c 100644
--- a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.h
+++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.h
@@ -38,6 +38,7 @@ int intel_guc_slpc_set_boost_freq(struct intel_guc_slpc *slpc, u32 val);
int intel_guc_slpc_get_max_freq(struct intel_guc_slpc *slpc, u32 *val);
int intel_guc_slpc_get_min_freq(struct intel_guc_slpc *slpc, u32 *val);
int intel_guc_slpc_print_info(struct intel_guc_slpc *slpc, struct drm_printer *p);
+int intel_guc_slpc_set_media_ratio_mode(struct intel_guc_slpc *slpc, u32 val);
void intel_guc_pm_intrmsk_enable(struct intel_gt *gt);
void intel_guc_slpc_boost(struct intel_guc_slpc *slpc);
void intel_guc_slpc_dec_waiters(struct intel_guc_slpc *slpc);
diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc_types.h b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc_types.h
index bf5b9a563c09..73d208123528 100644
--- a/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc_types.h
+++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_slpc_types.h
@@ -29,6 +29,9 @@ struct intel_guc_slpc {
u32 min_freq_softlimit;
u32 max_freq_softlimit;
+ /* cached media ratio mode */
+ u32 media_ratio_mode;
+
/* Protects set/reset of boost freq
* and value of num_waiters
*/
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915: Media freq factor
2022-04-26 0:20 [Intel-gfx] [PATCH 0/2] drm/i915: Media freq factor Ashutosh Dixit
` (2 preceding siblings ...)
2022-04-26 1:19 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Media freq factor Patchwork
@ 2022-04-26 3:13 ` Patchwork
2022-04-26 13:41 ` Dixit, Ashutosh
3 siblings, 1 reply; 6+ messages in thread
From: Patchwork @ 2022-04-26 3:13 UTC (permalink / raw)
To: Dixit, Ashutosh; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 69584 bytes --]
== Series Details ==
Series: drm/i915: Media freq factor
URL : https://patchwork.freedesktop.org/series/103110/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_11550_full -> Patchwork_103110v1_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_103110v1_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_103110v1_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (10 -> 12)
------------------------------
Additional (2): shard-rkl shard-tglu
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_103110v1_full:
### IGT changes ###
#### Possible regressions ####
* {igt@i915_pm_disag_freq@media-freq@gt0} (NEW):
- shard-iclb: NOTRUN -> [SKIP][1] +1 similar issue
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb1/igt@i915_pm_disag_freq@media-freq@gt0.html
- shard-tglb: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb5/igt@i915_pm_disag_freq@media-freq@gt0.html
New tests
---------
New tests have been introduced between CI_DRM_11550_full and Patchwork_103110v1_full:
### New IGT tests (1) ###
* igt@i915_pm_disag_freq@media-freq@gt0:
- Statuses : 7 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in Patchwork_103110v1_full that come from known issues:
### CI changes ###
#### Possible fixes ####
* boot:
- shard-skl: ([PASS][3], [PASS][4], [PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [FAIL][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25], [PASS][26]) ([i915#5032]) -> ([PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl9/boot.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl9/boot.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl8/boot.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl8/boot.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl7/boot.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl7/boot.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl6/boot.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl6/boot.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl6/boot.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl5/boot.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl5/boot.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl5/boot.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl5/boot.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl4/boot.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl4/boot.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl4/boot.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl3/boot.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl3/boot.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl2/boot.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl2/boot.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl1/boot.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl1/boot.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl10/boot.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl10/boot.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl7/boot.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl6/boot.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl6/boot.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl7/boot.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl9/boot.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl9/boot.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl8/boot.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl8/boot.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl7/boot.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl10/boot.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl10/boot.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl10/boot.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl1/boot.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl1/boot.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl1/boot.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl2/boot.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl2/boot.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl4/boot.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl4/boot.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl6/boot.html
### IGT changes ###
#### Issues hit ####
* igt@gem_ccs@block-copy-inplace:
- shard-tglb: NOTRUN -> [SKIP][47] ([i915#3555] / [i915#5325])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb8/igt@gem_ccs@block-copy-inplace.html
- shard-iclb: NOTRUN -> [SKIP][48] ([i915#5327])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb5/igt@gem_ccs@block-copy-inplace.html
* igt@gem_ctx_persistence@engines-queued:
- shard-snb: NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#1099])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-snb7/igt@gem_ctx_persistence@engines-queued.html
* igt@gem_ctx_sseu@engines:
- shard-tglb: NOTRUN -> [SKIP][50] ([i915#280])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb7/igt@gem_ctx_sseu@engines.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-iclb: [PASS][51] -> [SKIP][52] ([i915#4525])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-iclb2/igt@gem_exec_balancer@parallel-balancer.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb8/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-iclb: NOTRUN -> [SKIP][53] ([i915#4525])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb5/igt@gem_exec_balancer@parallel-ordering.html
- shard-tglb: NOTRUN -> [DMESG-FAIL][54] ([i915#5076] / [i915#5614])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb8/igt@gem_exec_balancer@parallel-ordering.html
- shard-kbl: NOTRUN -> [DMESG-FAIL][55] ([i915#5076] / [i915#5614])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-kbl4/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-glk: NOTRUN -> [FAIL][56] ([i915#2842])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-glk3/igt@gem_exec_fair@basic-none-solo@rcs0.html
- shard-apl: NOTRUN -> [FAIL][57] ([i915#2842])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-tglb: NOTRUN -> [FAIL][58] ([i915#2842]) +5 similar issues
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb7/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_fair@basic-pace@vcs1:
- shard-kbl: [PASS][59] -> [FAIL][60] ([i915#2842])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs1.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-kbl1/igt@gem_exec_fair@basic-pace@vcs1.html
- shard-iclb: NOTRUN -> [FAIL][61] ([i915#2842]) +1 similar issue
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb4/igt@gem_exec_fair@basic-pace@vcs1.html
* igt@gem_exec_flush@basic-wb-rw-default:
- shard-snb: [PASS][62] -> [SKIP][63] ([fdo#109271]) +2 similar issues
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-snb2/igt@gem_exec_flush@basic-wb-rw-default.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-snb6/igt@gem_exec_flush@basic-wb-rw-default.html
* igt@gem_exec_params@no-blt:
- shard-tglb: NOTRUN -> [SKIP][64] ([fdo#109283])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb5/igt@gem_exec_params@no-blt.html
- shard-iclb: NOTRUN -> [SKIP][65] ([fdo#109283])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb3/igt@gem_exec_params@no-blt.html
* igt@gem_huc_copy@huc-copy:
- shard-skl: NOTRUN -> [SKIP][66] ([fdo#109271] / [i915#2190])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl8/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- shard-iclb: NOTRUN -> [SKIP][67] ([i915#4613]) +2 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb5/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-skl: NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#4613]) +4 similar issues
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
- shard-apl: NOTRUN -> [SKIP][69] ([fdo#109271] / [i915#4613]) +2 similar issues
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-apl7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
- shard-glk: NOTRUN -> [SKIP][70] ([fdo#109271] / [i915#4613]) +1 similar issue
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-glk6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-random:
- shard-kbl: NOTRUN -> [SKIP][71] ([fdo#109271] / [i915#4613]) +3 similar issues
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-kbl1/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglb: NOTRUN -> [SKIP][72] ([i915#4613]) +3 similar issues
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb6/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-iclb: NOTRUN -> [SKIP][73] ([i915#4270]) +1 similar issue
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb1/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-tglb: NOTRUN -> [SKIP][74] ([i915#4270]) +2 similar issues
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb1/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
- shard-iclb: NOTRUN -> [SKIP][75] ([i915#768]) +1 similar issue
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb3/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_softpin@allocator-evict-all-engines:
- shard-glk: [PASS][76] -> [FAIL][77] ([i915#4171])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-glk5/igt@gem_softpin@allocator-evict-all-engines.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-glk8/igt@gem_softpin@allocator-evict-all-engines.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglb: NOTRUN -> [SKIP][78] ([i915#3297]) +1 similar issue
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb2/igt@gem_userptr_blits@readonly-pwrite-unsync.html
- shard-iclb: NOTRUN -> [SKIP][79] ([i915#3297])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb3/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_workarounds@suspend-resume:
- shard-apl: [PASS][80] -> [DMESG-WARN][81] ([i915#180]) +2 similar issues
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-apl8/igt@gem_workarounds@suspend-resume.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-apl2/igt@gem_workarounds@suspend-resume.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: NOTRUN -> [DMESG-WARN][82] ([i915#5566] / [i915#716])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-glk8/igt@gen9_exec_parse@allowed-single.html
- shard-iclb: NOTRUN -> [SKIP][83] ([i915#2856]) +2 similar issues
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb4/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@bb-secure:
- shard-tglb: NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856]) +3 similar issues
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb7/igt@gen9_exec_parse@bb-secure.html
* igt@i915_pm_dc@dc6-psr:
- shard-tglb: NOTRUN -> [FAIL][85] ([i915#454]) +1 similar issue
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb7/igt@i915_pm_dc@dc6-psr.html
* igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp:
- shard-apl: NOTRUN -> [SKIP][86] ([fdo#109271] / [i915#1937])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-apl8/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-dp.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-tglb: NOTRUN -> [SKIP][87] ([i915#5286]) +5 similar issues
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb3/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
- shard-iclb: NOTRUN -> [SKIP][88] ([i915#5286]) +3 similar issues
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb4/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-tglb: NOTRUN -> [SKIP][89] ([fdo#111614]) +3 similar issues
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb1/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-iclb: NOTRUN -> [SKIP][90] ([fdo#110725] / [fdo#111614]) +1 similar issue
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb3/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-kbl: NOTRUN -> [SKIP][91] ([fdo#109271] / [i915#3777]) +4 similar issues
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-kbl7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
- shard-glk: NOTRUN -> [SKIP][92] ([fdo#109271] / [i915#3777]) +1 similar issue
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-glk4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-skl: NOTRUN -> [FAIL][93] ([i915#3743])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl9/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
- shard-tglb: NOTRUN -> [SKIP][94] ([fdo#111615]) +5 similar issues
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-apl: NOTRUN -> [SKIP][95] ([fdo#109271] / [i915#3777]) +1 similar issue
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-apl4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-skl: NOTRUN -> [SKIP][96] ([fdo#109271] / [i915#3777]) +3 similar issues
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-iclb: NOTRUN -> [SKIP][97] ([fdo#110723])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
- shard-apl: NOTRUN -> [SKIP][98] ([fdo#109271] / [i915#3886]) +7 similar issues
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-apl6/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][99] ([i915#3689]) +3 similar issues
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_ccs.html
* igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs:
- shard-tglb: NOTRUN -> [SKIP][100] ([i915#3689] / [i915#3886]) +5 similar issues
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb1/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-skl: NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#3886]) +7 similar issues
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl7/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs:
- shard-iclb: NOTRUN -> [SKIP][102] ([fdo#109278] / [i915#3886]) +6 similar issues
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb6/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html
- shard-kbl: NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#3886]) +9 similar issues
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-kbl7/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-yf_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][104] ([fdo#111615] / [i915#3689]) +5 similar issues
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb1/igt@kms_ccs@pipe-c-bad-rotation-90-yf_tiled_ccs.html
* igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
- shard-glk: NOTRUN -> [SKIP][105] ([fdo#109271] / [i915#3886]) +3 similar issues
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-glk9/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_cdclk@plane-scaling:
- shard-iclb: NOTRUN -> [SKIP][106] ([i915#3742])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb6/igt@kms_cdclk@plane-scaling.html
- shard-tglb: NOTRUN -> [SKIP][107] ([i915#3742])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb1/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium@dp-hpd-after-suspend:
- shard-snb: NOTRUN -> [SKIP][108] ([fdo#109271] / [fdo#111827]) +8 similar issues
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-snb2/igt@kms_chamelium@dp-hpd-after-suspend.html
* igt@kms_chamelium@hdmi-crc-single:
- shard-glk: NOTRUN -> [SKIP][109] ([fdo#109271] / [fdo#111827]) +8 similar issues
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-glk5/igt@kms_chamelium@hdmi-crc-single.html
* igt@kms_chamelium@hdmi-mode-timings:
- shard-kbl: NOTRUN -> [SKIP][110] ([fdo#109271] / [fdo#111827]) +22 similar issues
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-kbl1/igt@kms_chamelium@hdmi-mode-timings.html
- shard-iclb: NOTRUN -> [SKIP][111] ([fdo#109284] / [fdo#111827]) +12 similar issues
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb7/igt@kms_chamelium@hdmi-mode-timings.html
* igt@kms_color@pipe-a-deep-color:
- shard-iclb: NOTRUN -> [SKIP][112] ([fdo#109278] / [i915#3555])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb5/igt@kms_color@pipe-a-deep-color.html
* igt@kms_color@pipe-d-ctm-0-5:
- shard-iclb: NOTRUN -> [SKIP][113] ([fdo#109278] / [i915#1149])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb8/igt@kms_color@pipe-d-ctm-0-5.html
* igt@kms_color_chamelium@pipe-a-ctm-0-5:
- shard-apl: NOTRUN -> [SKIP][114] ([fdo#109271] / [fdo#111827]) +14 similar issues
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-apl3/igt@kms_color_chamelium@pipe-a-ctm-0-5.html
* igt@kms_color_chamelium@pipe-b-ctm-0-5:
- shard-tglb: NOTRUN -> [SKIP][115] ([fdo#109284] / [fdo#111827]) +22 similar issues
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb5/igt@kms_color_chamelium@pipe-b-ctm-0-5.html
* igt@kms_color_chamelium@pipe-d-ctm-0-25:
- shard-skl: NOTRUN -> [SKIP][116] ([fdo#109271] / [fdo#111827]) +17 similar issues
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl9/igt@kms_color_chamelium@pipe-d-ctm-0-25.html
* igt@kms_color_chamelium@pipe-d-ctm-negative:
- shard-iclb: NOTRUN -> [SKIP][117] ([fdo#109278] / [fdo#109284] / [fdo#111827]) +1 similar issue
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb1/igt@kms_color_chamelium@pipe-d-ctm-negative.html
* igt@kms_content_protection@atomic:
- shard-tglb: NOTRUN -> [SKIP][118] ([i915#1063])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb8/igt@kms_content_protection@atomic.html
- shard-kbl: NOTRUN -> [TIMEOUT][119] ([i915#1319])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-kbl3/igt@kms_content_protection@atomic.html
- shard-iclb: NOTRUN -> [SKIP][120] ([fdo#109300] / [fdo#111066])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb7/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@lic:
- shard-apl: NOTRUN -> [TIMEOUT][121] ([i915#1319]) +1 similar issue
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-apl8/igt@kms_content_protection@lic.html
* igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding:
- shard-iclb: NOTRUN -> [SKIP][122] ([fdo#109278] / [fdo#109279]) +3 similar issues
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb1/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html
* igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen:
- shard-tglb: NOTRUN -> [SKIP][123] ([fdo#109279] / [i915#3359]) +4 similar issues
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb2/igt@kms_cursor_crc@pipe-c-cursor-512x512-onscreen.html
* igt@kms_cursor_crc@pipe-c-cursor-max-size-rapid-movement:
- shard-tglb: NOTRUN -> [SKIP][124] ([i915#3359]) +9 similar issues
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb6/igt@kms_cursor_crc@pipe-c-cursor-max-size-rapid-movement.html
* igt@kms_cursor_crc@pipe-d-cursor-32x10-offscreen:
- shard-iclb: NOTRUN -> [SKIP][125] ([fdo#109278]) +32 similar issues
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb8/igt@kms_cursor_crc@pipe-d-cursor-32x10-offscreen.html
* igt@kms_cursor_crc@pipe-d-cursor-32x32-sliding:
- shard-tglb: NOTRUN -> [SKIP][126] ([i915#3319]) +4 similar issues
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb8/igt@kms_cursor_crc@pipe-d-cursor-32x32-sliding.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-iclb: NOTRUN -> [SKIP][127] ([fdo#109274] / [fdo#109278]) +4 similar issues
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-tglb: NOTRUN -> [SKIP][128] ([i915#4103])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-tglb: NOTRUN -> [SKIP][129] ([fdo#109274] / [fdo#111825]) +13 similar issues
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_draw_crc@draw-method-rgb565-mmap-cpu-4tiled:
- shard-iclb: NOTRUN -> [SKIP][130] ([i915#5287])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb1/igt@kms_draw_crc@draw-method-rgb565-mmap-cpu-4tiled.html
* igt@kms_draw_crc@draw-method-xrgb2101010-blt-4tiled:
- shard-tglb: NOTRUN -> [SKIP][131] ([i915#5287]) +2 similar issues
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb3/igt@kms_draw_crc@draw-method-xrgb2101010-blt-4tiled.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-apl: NOTRUN -> [FAIL][132] ([i915#4767])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-apl1/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-iclb: [PASS][133] -> [FAIL][134] ([i915#4767])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-iclb3/igt@kms_fbcon_fbt@psr-suspend.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb3/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-skl: NOTRUN -> [SKIP][135] ([fdo#109271]) +194 similar issues
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl9/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-iclb: NOTRUN -> [SKIP][136] ([fdo#109274]) +3 similar issues
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb6/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@b-dp1:
- shard-apl: [PASS][137] -> [FAIL][138] ([i915#79])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-apl4/igt@kms_flip@flip-vs-expired-vblank@b-dp1.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-apl7/igt@kms_flip@flip-vs-expired-vblank@b-dp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-glk: [PASS][139] -> [FAIL][140] ([i915#4911])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-glk6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-glk8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-tglb: NOTRUN -> [SKIP][141] ([i915#2587]) +1 similar issue
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-skl: NOTRUN -> [SKIP][142] ([fdo#109271] / [i915#3701])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-tglb: NOTRUN -> [SKIP][143] ([fdo#109280] / [fdo#111825]) +30 similar issues
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-pwrite:
- shard-iclb: NOTRUN -> [SKIP][144] ([fdo#109280]) +18 similar issues
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu:
- shard-glk: NOTRUN -> [SKIP][145] ([fdo#109271]) +67 similar issues
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-glk7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html
* igt@kms_invalid_mode@clock-too-high:
- shard-iclb: NOTRUN -> [SKIP][146] ([i915#4278])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb7/igt@kms_invalid_mode@clock-too-high.html
- shard-tglb: NOTRUN -> [SKIP][147] ([i915#4278])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb8/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-iclb: NOTRUN -> [SKIP][148] ([fdo#109289])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb7/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
- shard-tglb: NOTRUN -> [SKIP][149] ([fdo#109289]) +1 similar issue
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb1/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
- shard-skl: [PASS][150] -> [INCOMPLETE][151] ([i915#4444])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl5/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
* igt@kms_plane_alpha_blend@pipe-a-coverage-7efc:
- shard-skl: [PASS][152] -> [FAIL][153] ([fdo#108145] / [i915#265])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl7/igt@kms_plane_alpha_blend@pipe-a-coverage-7efc.html
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl10/igt@kms_plane_alpha_blend@pipe-a-coverage-7efc.html
* igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
- shard-apl: NOTRUN -> [FAIL][154] ([i915#265])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-apl1/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb:
- shard-kbl: NOTRUN -> [FAIL][155] ([i915#265])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-kbl4/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html
- shard-skl: NOTRUN -> [FAIL][156] ([i915#265])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl10/igt@kms_plane_alpha_blend@pipe-c-alpha-transparent-fb.html
* igt@kms_plane_lowres@pipe-d-tiling-y:
- shard-tglb: NOTRUN -> [SKIP][157] ([i915#3536])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb5/igt@kms_plane_lowres@pipe-d-tiling-y.html
* igt@kms_plane_multiple@atomic-pipe-b-tiling-4:
- shard-tglb: NOTRUN -> [SKIP][158] ([i915#5288])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb6/igt@kms_plane_multiple@atomic-pipe-b-tiling-4.html
* igt@kms_plane_scaling@downscale-with-rotation-factor-0-25@pipe-c-edp-1-downscale-with-rotation:
- shard-tglb: NOTRUN -> [SKIP][159] ([i915#5176]) +3 similar issues
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb7/igt@kms_plane_scaling@downscale-with-rotation-factor-0-25@pipe-c-edp-1-downscale-with-rotation.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-edp-1-planes-downscale:
- shard-iclb: NOTRUN -> [SKIP][160] ([i915#5235]) +2 similar issues
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb6/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-edp-1-planes-downscale.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-edp-1-planes-upscale-downscale:
- shard-tglb: NOTRUN -> [SKIP][161] ([i915#5235]) +7 similar issues
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-edp-1-planes-upscale-downscale.html
* igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping:
- shard-iclb: [PASS][162] -> [SKIP][163] ([i915#5176]) +1 similar issue
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-iclb8/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb3/igt@kms_plane_scaling@scaler-with-clipping-clamping@pipe-b-edp-1-scaler-with-clipping-clamping.html
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
- shard-tglb: NOTRUN -> [SKIP][164] ([i915#2920])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb1/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
- shard-glk: NOTRUN -> [SKIP][165] ([fdo#109271] / [i915#658])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-glk6/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
- shard-skl: NOTRUN -> [SKIP][166] ([fdo#109271] / [i915#658]) +2 similar issues
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl4/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
- shard-iclb: NOTRUN -> [SKIP][167] ([fdo#111068] / [i915#658])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb6/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
- shard-apl: NOTRUN -> [SKIP][168] ([fdo#109271] / [i915#658])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-apl4/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglb: NOTRUN -> [SKIP][169] ([i915#1911]) +1 similar issue
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb6/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-kbl: NOTRUN -> [SKIP][170] ([fdo#109271] / [i915#658]) +2 similar issues
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-kbl1/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@psr2_dpms:
- shard-iclb: NOTRUN -> [SKIP][171] ([fdo#109441]) +2 similar issues
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb3/igt@kms_psr@psr2_dpms.html
- shard-tglb: NOTRUN -> [FAIL][172] ([i915#132] / [i915#3467]) +4 similar issues
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb5/igt@kms_psr@psr2_dpms.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglb: NOTRUN -> [SKIP][173] ([i915#5519])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-tglb: NOTRUN -> [SKIP][174] ([i915#5289])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
- shard-iclb: NOTRUN -> [SKIP][175] ([i915#5289])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-tglb: NOTRUN -> [SKIP][176] ([fdo#111615] / [i915#5289])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_universal_plane@disable-primary-vs-flip-pipe-d:
- shard-kbl: NOTRUN -> [SKIP][177] ([fdo#109271]) +205 similar issues
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-kbl7/igt@kms_universal_plane@disable-primary-vs-flip-pipe-d.html
- shard-snb: NOTRUN -> [SKIP][178] ([fdo#109271]) +125 similar issues
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-snb4/igt@kms_universal_plane@disable-primary-vs-flip-pipe-d.html
* igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend:
- shard-kbl: [PASS][179] -> [INCOMPLETE][180] ([i915#3614])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-kbl3/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-kbl4/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
* igt@kms_vblank@pipe-d-wait-idle:
- shard-kbl: NOTRUN -> [SKIP][181] ([fdo#109271] / [i915#533]) +2 similar issues
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-kbl7/igt@kms_vblank@pipe-d-wait-idle.html
- shard-glk: NOTRUN -> [SKIP][182] ([fdo#109271] / [i915#533])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-glk6/igt@kms_vblank@pipe-d-wait-idle.html
- shard-skl: NOTRUN -> [SKIP][183] ([fdo#109271] / [i915#533]) +1 similar issue
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl6/igt@kms_vblank@pipe-d-wait-idle.html
- shard-apl: NOTRUN -> [SKIP][184] ([fdo#109271] / [i915#533])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-apl7/igt@kms_vblank@pipe-d-wait-idle.html
* igt@kms_vrr@flip-basic:
- shard-tglb: NOTRUN -> [SKIP][185] ([i915#3555]) +4 similar issues
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb6/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-dpms:
- shard-iclb: NOTRUN -> [SKIP][186] ([i915#3555]) +1 similar issue
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb5/igt@kms_vrr@flip-dpms.html
* igt@kms_writeback@writeback-check-output:
- shard-skl: NOTRUN -> [SKIP][187] ([fdo#109271] / [i915#2437])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl1/igt@kms_writeback@writeback-check-output.html
- shard-kbl: NOTRUN -> [SKIP][188] ([fdo#109271] / [i915#2437]) +1 similar issue
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-kbl6/igt@kms_writeback@writeback-check-output.html
- shard-tglb: NOTRUN -> [SKIP][189] ([i915#2437]) +1 similar issue
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb6/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-apl: NOTRUN -> [SKIP][190] ([fdo#109271] / [i915#2437])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-apl8/igt@kms_writeback@writeback-invalid-parameters.html
* igt@nouveau_crc@pipe-c-ctx-flip-detection:
- shard-iclb: NOTRUN -> [SKIP][191] ([i915#2530]) +1 similar issue
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb4/igt@nouveau_crc@pipe-c-ctx-flip-detection.html
* igt@nouveau_crc@pipe-d-source-outp-complete:
- shard-tglb: NOTRUN -> [SKIP][192] ([i915#2530]) +2 similar issues
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb2/igt@nouveau_crc@pipe-d-source-outp-complete.html
* igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name:
- shard-apl: NOTRUN -> [SKIP][193] ([fdo#109271]) +184 similar issues
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-apl7/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html
- shard-tglb: NOTRUN -> [SKIP][194] ([fdo#109291]) +6 similar issues
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb5/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html
* igt@prime_nv_pcopy@test3_4:
- shard-iclb: NOTRUN -> [SKIP][195] ([fdo#109291]) +3 similar issues
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb1/igt@prime_nv_pcopy@test3_4.html
* igt@prime_vgem@coherency-gtt:
- shard-iclb: NOTRUN -> [SKIP][196] ([fdo#109292])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb3/igt@prime_vgem@coherency-gtt.html
- shard-tglb: NOTRUN -> [SKIP][197] ([fdo#111656])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb2/igt@prime_vgem@coherency-gtt.html
* igt@syncobj_timeline@invalid-transfer-non-existent-point:
- shard-skl: NOTRUN -> [DMESG-WARN][198] ([i915#5098])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl1/igt@syncobj_timeline@invalid-transfer-non-existent-point.html
* igt@sysfs_clients@fair-3:
- shard-skl: NOTRUN -> [SKIP][199] ([fdo#109271] / [i915#2994]) +1 similar issue
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl6/igt@sysfs_clients@fair-3.html
#### Possible fixes ####
* igt@gem_eio@in-flight-contexts-10ms:
- shard-tglb: [TIMEOUT][200] ([i915#3063]) -> [PASS][201]
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-tglb3/igt@gem_eio@in-flight-contexts-10ms.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb3/igt@gem_eio@in-flight-contexts-10ms.html
* igt@gem_eio@kms:
- shard-tglb: [FAIL][202] ([i915#232]) -> [PASS][203]
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-tglb3/igt@gem_eio@kms.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb7/igt@gem_eio@kms.html
* igt@gem_exec_fair@basic-deadline:
- shard-glk: [FAIL][204] ([i915#2846]) -> [PASS][205]
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-glk1/igt@gem_exec_fair@basic-deadline.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-glk2/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-flow@rcs0:
- shard-tglb: [FAIL][206] ([i915#2842]) -> [PASS][207] +1 similar issue
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-tglb6/igt@gem_exec_fair@basic-flow@rcs0.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb1/igt@gem_exec_fair@basic-flow@rcs0.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-glk: [FAIL][208] ([i915#2842]) -> [PASS][209]
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-glk4/igt@gem_exec_fair@basic-none@vcs0.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-glk8/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-snb: [SKIP][210] ([fdo#109271]) -> [PASS][211] +2 similar issues
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-snb6/igt@gem_exec_flush@basic-uc-rw-default.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-snb2/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_softpin@softpin:
- shard-skl: [DMESG-WARN][212] ([i915#1982]) -> [PASS][213]
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl10/igt@gem_softpin@softpin.html
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl7/igt@gem_softpin@softpin.html
* igt@i915_pm_dc@dc9-dpms:
- shard-apl: [SKIP][214] ([fdo#109271]) -> [PASS][215]
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-apl7/igt@i915_pm_dc@dc9-dpms.html
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-apl1/igt@i915_pm_dc@dc9-dpms.html
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-glk: [FAIL][216] ([i915#2521]) -> [PASS][217]
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-glk6/igt@kms_async_flips@alternate-sync-async-flip.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-glk8/igt@kms_async_flips@alternate-sync-async-flip.html
- shard-kbl: [FAIL][218] ([i915#2521]) -> [PASS][219]
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-kbl3/igt@kms_async_flips@alternate-sync-async-flip.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-kbl4/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs:
- shard-skl: [SKIP][220] ([fdo#109271]) -> [PASS][221] +3 similar issues
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl5/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl4/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html
* igt@kms_cursor_crc@pipe-c-cursor-suspend:
- shard-apl: [DMESG-WARN][222] ([i915#180]) -> [PASS][223] +2 similar issues
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-apl7/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-apl4/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [FAIL][224] ([i915#2346] / [i915#533]) -> [PASS][225]
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-glk: [DMESG-WARN][226] ([i915#118] / [i915#1888]) -> [PASS][227]
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b-edp-1-planes-upscale-downscale:
- shard-iclb: [SKIP][228] ([i915#5235]) -> [PASS][229] +2 similar issues
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b-edp-1-planes-upscale-downscale.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b-edp-1-planes-upscale-downscale.html
* igt@kms_psr@psr2_cursor_render:
- shard-iclb: [SKIP][230] ([fdo#109441]) -> [PASS][231] +1 similar issue
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-iclb8/igt@kms_psr@psr2_cursor_render.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb2/igt@kms_psr@psr2_cursor_render.html
* igt@perf@polling-parameterized:
- shard-skl: [FAIL][232] ([i915#5639]) -> [PASS][233]
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl6/igt@perf@polling-parameterized.html
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl6/igt@perf@polling-parameterized.html
#### Warnings ####
* igt@gem_eio@unwedge-stress:
- shard-tglb: [FAIL][234] ([i915#232]) -> [TIMEOUT][235] ([i915#3063] / [i915#3648])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-tglb5/igt@gem_eio@unwedge-stress.html
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb6/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-iclb: [DMESG-WARN][236] ([i915#5614]) -> [SKIP][237] ([i915#4525])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-iclb4/igt@gem_exec_balancer@parallel-contexts.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb3/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-iclb: [SKIP][238] ([i915#4525]) -> [DMESG-WARN][239] ([i915#5614]) +2 similar issues
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-iclb5/igt@gem_exec_balancer@parallel-keep-submit-fence.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb1/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@i915_pm_dc@dc3co-vpb-simulation:
- shard-iclb: [SKIP][240] ([i915#588]) -> [SKIP][241] ([i915#658])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb4/igt@i915_pm_dc@dc3co-vpb-simulation.html
* igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_rc_ccs_cc:
- shard-skl: [SKIP][242] ([fdo#109271]) -> [SKIP][243] ([fdo#109271] / [i915#3886])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl5/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl2/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-c:
- shard-snb: [SKIP][244] ([fdo#109271] / [i915#5341]) -> [SKIP][245] ([fdo#109271])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-snb7/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-c.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-snb4/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-c.html
* igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max:
- shard-skl: [SKIP][246] ([fdo#109271]) -> [FAIL][247] ([fdo#108145] / [i915#265])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-skl5/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-skl7/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-max.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
- shard-iclb: [SKIP][248] ([i915#2920]) -> [SKIP][249] ([i915#658])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb4/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area:
- shard-iclb: [SKIP][250] ([i915#2920]) -> [SKIP][251] ([fdo#111068] / [i915#658]) +1 similar issue
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-iclb2/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-iclb5/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
* igt@runner@aborted:
- shard-apl: ([FAIL][252], [FAIL][253], [FAIL][254], [FAIL][255], [FAIL][256], [FAIL][257], [FAIL][258]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][259], [FAIL][260], [FAIL][261], [FAIL][262], [FAIL][263], [FAIL][264], [FAIL][265]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312] / [i915#5257])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-apl7/igt@runner@aborted.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-apl7/igt@runner@aborted.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-apl4/igt@runner@aborted.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-apl3/igt@runner@aborted.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-apl8/igt@runner@aborted.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-apl6/igt@runner@aborted.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-apl3/igt@runner@aborted.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-apl6/igt@runner@aborted.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-apl2/igt@runner@aborted.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-apl1/igt@runner@aborted.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-apl3/igt@runner@aborted.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-apl1/igt@runner@aborted.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-apl7/igt@runner@aborted.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-apl6/igt@runner@aborted.html
- shard-tglb: ([FAIL][266], [FAIL][267], [FAIL][268], [FAIL][269], [FAIL][270], [FAIL][271], [FAIL][272], [FAIL][273], [FAIL][274], [FAIL][275]) ([i915#1397] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][276], [FAIL][277], [FAIL][278], [FAIL][279], [FAIL][280], [FAIL][281], [FAIL][282], [FAIL][283], [FAIL][284], [FAIL][285], [FAIL][286]) ([i915#3002] / [i915#4312] / [i915#5257])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-tglb7/igt@runner@aborted.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-tglb7/igt@runner@aborted.html
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-tglb7/igt@runner@aborted.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-tglb7/igt@runner@aborted.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-tglb8/igt@runner@aborted.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-tglb7/igt@runner@aborted.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-tglb5/igt@runner@aborted.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-tglb6/igt@runner@aborted.html
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-tglb3/igt@runner@aborted.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11550/shard-tglb2/igt@runner@aborted.html
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb2/igt@runner@aborted.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb7/igt@runner@aborted.html
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb3/igt@runner@aborted.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb5/igt@runner@aborted.html
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb6/igt@runner@aborted.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb8/igt@runner@aborted.html
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb6/igt@runner@aborted.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb5/igt@runner@aborted.html
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb8/igt@runner@aborted.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb5/igt@runner@aborted.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_103110v1/shard-tglb6/igt@runner@aborted.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109292]: https://bugs.freedesktop.org/show_bug.cgi?id=109292
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
[fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
[fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112022]: https://bugs.freedesktop.org/show_bug.cgi?id=112022
[fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149
[i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
[i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
[i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257
[i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
[i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850
[i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
[i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
[i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#232]: https://gitlab.freedesktop.org/drm/intel/issues/232
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
[i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435
[i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2849]: https://gitlab.freedesktop.org/drm/intel/issues/2849
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
[i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
[i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
[i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
[i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3319]: https://gitlab.freedesktop.org/drm/intel/issues/3319
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3376]: https://gitlab.freedesktop.org/drm/intel/issues/3376
[i915#3464]: https://gitlab.freedesktop.org/drm/intel/issues/3464
[i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
[i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528
[i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3614]: https://gitlab.freedesktop.org/drm/intel/issues/3614
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3639]: https://gitlab.freedesktop.org/drm/intel/issues/3639
[i915#3648]: https://gitlab.freedesktop.org/drm/intel/issues/3648
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3701]: https://gitlab.freedesktop.org/drm/intel/issues/3701
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3777]: https://gitlab.freedesktop.org/drm/intel/issues/3777
[i915#3810]: https://gitlab.freedesktop.org/drm/intel/issues/3810
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[i915#3828]: https://gitlab.freedesktop.org/drm/intel/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171
[i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4278]: https://gitlab.freedesktop.org/drm/intel/issues/4278
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4444]: https://gitlab.freedesktop.org/drm/intel/issues/4444
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
[i915#4911]: https://gitlab.freedesktop.org/drm/intel/issues/4911
[i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
[i915#5032]: https://gitlab.freedesktop.org/drm/intel/issues/5032
[i915#5076]: https://gitlab.freedesktop.org/drm/intel/issues/5076
[i915#5080]: https://gitlab.freedesktop.org/drm/intel/issues/5080
[i915#5098]: https://gitlab.freedesktop.org/drm/intel/issues/5098
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287
[i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5341]: https://gitlab.freedesktop.org/drm/intel/issues/5341
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
[i915#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5614]: https://gitlab.freedesktop.org/drm/intel/issues/5614
[i915#5639]: https://gitlab.freedesktop.org/drm/intel/issues/5639
[i915#5691]: https://gitlab.freedesktop.org/drm/intel/issues/5691
[i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
[i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716
[i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
Build changes
-------------
* IGT: IGT_6451 -> IGTPW_7000
* Linux: CI_DRM_11550 -> Patchwork_103110v1
CI-20190529: 20190529
CI_DRM_11550: 56b089ae03ef8ea8ab7f474eaa70367898891ef0 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_7000: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7000/index.html
IGT_6451: f055bd83bd831a938d639718c2359516224f15f9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_103110v1: 56b089ae03ef8ea8ab7f474eaa70367898891ef0 @ 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_103110v1/index.html
[-- Attachment #2: Type: text/html, Size: 80672 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread