* [igt-dev] [PATCH i-g-t 1/2] i915_drm.h sync engine class definitions
@ 2022-05-13 15:20 Adrian Larumbe
2022-05-13 15:20 ` [igt-dev] [PATCH i-g-t 2/2] i915/gem_ctx_isolation:: change semantics of ctx isolation uAPI Adrian Larumbe
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Adrian Larumbe @ 2022-05-13 15:20 UTC (permalink / raw)
To: daniel, matthew.d.roper, igt-dev; +Cc: bob.beckett, adrian.larumbe
gem_ctx_isolation@preservation needs to take into account the shared reset
domain between RCS and CCS engines.
Because the uAPI engine class defs have already been merged onto drm-tip,
remove the temporary definitions and also sync the remaining ones.
Signed-Off-By: Adrian Larumbe <adrian.larumbe@collabora.com>
---
include/drm-uapi/i915_drm.h | 62 ++++++++++++++++++++++++++++++----
lib/i915/i915_drm_local.h | 2 --
tests/i915/gem_ctx_isolation.c | 2 ++
3 files changed, 58 insertions(+), 8 deletions(-)
diff --git a/include/drm-uapi/i915_drm.h b/include/drm-uapi/i915_drm.h
index 9c9e1afa61ba..f0067d26123e 100644
--- a/include/drm-uapi/i915_drm.h
+++ b/include/drm-uapi/i915_drm.h
@@ -154,21 +154,71 @@ enum i915_mocs_table_index {
I915_MOCS_CACHED,
};
-/*
+/**
+ * enum drm_i915_gem_engine_class - uapi engine type enumeration
+ *
* Different engines serve different roles, and there may be more than one
- * engine serving each role. enum drm_i915_gem_engine_class provides a
- * classification of the role of the engine, which may be used when requesting
- * operations to be performed on a certain subset of engines, or for providing
- * information about that group.
+ * engine serving each role. This enum provides a classification of the role
+ * of the engine, which may be used when requesting operations to be performed
+ * on a certain subset of engines, or for providing information about that
+ * group.
*/
enum drm_i915_gem_engine_class {
+ /**
+ * @I915_ENGINE_CLASS_RENDER:
+ *
+ * Render engines support instructions used for 3D, Compute (GPGPU),
+ * and programmable media workloads. These instructions fetch data and
+ * dispatch individual work items to threads that operate in parallel.
+ * The threads run small programs (called "kernels" or "shaders") on
+ * the GPU's execution units (EUs).
+ */
I915_ENGINE_CLASS_RENDER = 0,
+
+ /**
+ * @I915_ENGINE_CLASS_COPY:
+ *
+ * Copy engines (also referred to as "blitters") support instructions
+ * that move blocks of data from one location in memory to another,
+ * or that fill a specified location of memory with fixed data.
+ * Copy engines can perform pre-defined logical or bitwise operations
+ * on the source, destination, or pattern data.
+ */
I915_ENGINE_CLASS_COPY = 1,
+
+ /**
+ * @I915_ENGINE_CLASS_VIDEO:
+ *
+ * Video engines (also referred to as "bit stream decode" (BSD) or
+ * "vdbox") support instructions that perform fixed-function media
+ * decode and encode.
+ */
I915_ENGINE_CLASS_VIDEO = 2,
+
+ /**
+ * @I915_ENGINE_CLASS_VIDEO_ENHANCE:
+ *
+ * Video enhancement engines (also referred to as "vebox") support
+ * instructions related to image enhancement.
+ */
I915_ENGINE_CLASS_VIDEO_ENHANCE = 3,
- /* should be kept compact */
+ /**
+ * @I915_ENGINE_CLASS_COMPUTE:
+ *
+ * Compute engines support a subset of the instructions available
+ * on render engines: compute engines support Compute (GPGPU) and
+ * programmable media workloads, but do not support the 3D pipeline.
+ */
+ I915_ENGINE_CLASS_COMPUTE = 4,
+
+ /* Values in this enum should be kept compact. */
+ /**
+ * @I915_ENGINE_CLASS_INVALID:
+ *
+ * Placeholder value to represent an invalid engine class assignment.
+ */
I915_ENGINE_CLASS_INVALID = -1
};
diff --git a/lib/i915/i915_drm_local.h b/lib/i915/i915_drm_local.h
index 9a2273c4e4a9..17e823564f11 100644
--- a/lib/i915/i915_drm_local.h
+++ b/lib/i915/i915_drm_local.h
@@ -19,8 +19,6 @@ extern "C" {
* or local_ prefix and without any #ifndef's. Attempt should be made to
* clean these up when kernel uapi headers are sync'd.
*/
-#define I915_ENGINE_CLASS_COMPUTE 4
-
#define DRM_I915_QUERY_GEOMETRY_SUBSLICES 6
#if defined(__cplusplus)
diff --git a/tests/i915/gem_ctx_isolation.c b/tests/i915/gem_ctx_isolation.c
index 95d13969fa61..4233ea5784dc 100644
--- a/tests/i915/gem_ctx_isolation.c
+++ b/tests/i915/gem_ctx_isolation.c
@@ -164,6 +164,8 @@ static const struct named_register {
{ "xCS_GPR", GEN9, ALL, 0x600, 32, .relative = true },
+ /* TODO: add CCS0 registers */
+
{}
}, ignore_registers[] = {
{ "RCS timestamp", GEN6, ~0u, 0x2358 },
--
2.35.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] i915/gem_ctx_isolation:: change semantics of ctx isolation uAPI
2022-05-13 15:20 [igt-dev] [PATCH i-g-t 1/2] i915_drm.h sync engine class definitions Adrian Larumbe
@ 2022-05-13 15:20 ` Adrian Larumbe
2022-05-15 10:22 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] i915_drm.h sync engine class definitions Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 6+ messages in thread
From: Adrian Larumbe @ 2022-05-13 15:20 UTC (permalink / raw)
To: daniel, matthew.d.roper, igt-dev; +Cc: bob.beckett, adrian.larumbe
ioctl I915_PARAM_HAS_CONTEXT_ISOLATION param is meant to report whether all
the engines in the system support context isolation, but the way the return
value was being used did not respect the contract on the uAPI.
Skip all engine tests for which context isolation is not supported. Also skip
tests that involve an engine reset if both RCS and CCS engines are present in
the system. This is because they belong to the same reset domain.
Signed-Off-By: Adrian Larumbe <adrian.larumbe@collabora.com>
---
include/drm-uapi/i915_drm.h | 6 +-
tests/i915/gem_ctx_isolation.c | 101 +++++++++++++++++++++++----------
2 files changed, 72 insertions(+), 35 deletions(-)
diff --git a/include/drm-uapi/i915_drm.h b/include/drm-uapi/i915_drm.h
index f0067d26123e..327465ac3eb1 100644
--- a/include/drm-uapi/i915_drm.h
+++ b/include/drm-uapi/i915_drm.h
@@ -678,11 +678,7 @@ typedef struct drm_i915_irq_wait {
* rather than default HW values. If true, it also ensures (insofar as HW
* supports) that all state set by this context will not leak to any other
* context.
- *
- * As not every engine across every gen support contexts, the returned
- * value reports the support of context isolation for individual engines by
- * returning a bitmask of each engine class set to true if that class supports
- * isolation.
+ *
*/
#define I915_PARAM_HAS_CONTEXT_ISOLATION 50
diff --git a/tests/i915/gem_ctx_isolation.c b/tests/i915/gem_ctx_isolation.c
index 4233ea5784dc..ddfae493bc2c 100644
--- a/tests/i915/gem_ctx_isolation.c
+++ b/tests/i915/gem_ctx_isolation.c
@@ -45,6 +45,7 @@ enum {
VCS2 = ENGINE(I915_ENGINE_CLASS_VIDEO, 2),
VCS3 = ENGINE(I915_ENGINE_CLASS_VIDEO, 3),
VECS0 = ENGINE(I915_ENGINE_CLASS_VIDEO_ENHANCE, 0),
+ CCS0 = ENGINE(I915_ENGINE_CLASS_COMPUTE, 0),
};
#define ALL ~0u
@@ -627,9 +628,40 @@ static void compare_regs(int fd, const struct intel_execution_engine2 *e,
num_errors, who);
}
+static bool
+engine_has_context_isolation(const struct intel_execution_engine2 *e,
+ int gen)
+{
+ if (gen > 8)
+ return true;
+
+ if (gen >= 6 && gen <= 8 && e->class == I915_ENGINE_CLASS_RENDER)
+ return true;
+
+ return false;
+}
+
+static bool
+has_engine_class(const intel_ctx_cfg_t *cfg, unsigned int class)
+{
+ const struct i915_engine_class_instance *eci;
+ unsigned int i;
+
+ igt_require(class <= I915_ENGINE_CLASS_COMPUTE);
+
+ for (i = 0; i < cfg->num_engines; i++) {
+ eci = &cfg->engines[i];
+ if (eci->engine_class == class)
+ return true;
+ }
+
+ return false;
+}
+
static void nonpriv(int fd, const intel_ctx_cfg_t *cfg,
const struct intel_execution_engine2 *e,
- unsigned int flags)
+ unsigned int flags,
+ int gen)
{
static const uint32_t values[] = {
0x0,
@@ -646,7 +678,7 @@ static void nonpriv(int fd, const intel_ctx_cfg_t *cfg,
unsigned int num_values = ARRAY_SIZE(values);
/* Sigh -- hsw: we need cmdparser access to our own registers! */
- igt_skip_on(intel_gen(intel_get_drm_devid(fd)) < 8);
+ igt_skip_on(!engine_has_context_isolation(e, gen));
gem_quiescent_gpu(fd);
@@ -729,7 +761,8 @@ static void nonpriv(int fd, const intel_ctx_cfg_t *cfg,
static void isolation(int fd, const intel_ctx_cfg_t *cfg,
const struct intel_execution_engine2 *e,
- unsigned int flags)
+ unsigned int flags,
+ int gen)
{
static const uint32_t values[] = {
0x0,
@@ -743,6 +776,8 @@ static void isolation(int fd, const intel_ctx_cfg_t *cfg,
unsigned int num_values =
flags & (DIRTY1 | DIRTY2) ? ARRAY_SIZE(values) : 1;
+ igt_skip_on(!engine_has_context_isolation(e, gen));
+
gem_quiescent_gpu(fd);
for (int v = 0; v < num_values; v++) {
@@ -865,7 +900,8 @@ static void inject_reset_context(int fd, const intel_ctx_cfg_t *cfg,
static void preservation(int fd, const intel_ctx_cfg_t *cfg,
const struct intel_execution_engine2 *e,
- unsigned int flags)
+ unsigned int flags,
+ int gen)
{
static const uint32_t values[] = {
0x0,
@@ -882,6 +918,8 @@ static void preservation(int fd, const intel_ctx_cfg_t *cfg,
uint64_t ahnd[num_values + 1];
igt_spin_t *spin;
+ igt_skip_on(!engine_has_context_isolation(e, gen));
+
gem_quiescent_gpu(fd);
ctx[num_values] = intel_ctx_create(fd, cfg);
@@ -902,8 +940,12 @@ static void preservation(int fd, const intel_ctx_cfg_t *cfg,
gem_close(fd, read_regs(fd, ahnd[num_values], ctx[num_values], e, flags));
igt_spin_free(fd, spin);
- if (flags & RESET)
+ if (flags & RESET) {
+ igt_skip_on(has_engine_class(cfg, I915_ENGINE_CLASS_RENDER) &&
+ has_engine_class(cfg, I915_ENGINE_CLASS_COMPUTE));
+
inject_reset_context(fd, cfg, e);
+ }
switch (flags & SLEEP_MASK) {
case NOSLEEP:
@@ -962,7 +1004,7 @@ static unsigned int __has_context_isolation(int fd)
int value = 0;
memset(&gp, 0, sizeof(gp));
- gp.param = 50; /* I915_PARAM_HAS_CONTEXT_ISOLATION */
+ gp.param = I915_PARAM_HAS_CONTEXT_ISOLATION;
gp.value = &value;
igt_ioctl(fd, DRM_IOCTL_I915_GETPARAM, &gp);
@@ -971,21 +1013,19 @@ static unsigned int __has_context_isolation(int fd)
return value;
}
-#define test_each_engine(e, i915, cfg, mask) \
+#define test_each_engine(e, i915, cfg) \
for_each_ctx_cfg_engine(i915, cfg, e) \
- for_each_if(mask & (1 << (e)->class)) \
- igt_dynamic_f("%s", (e)->name)
+ igt_dynamic_f("%s", (e)->name)
igt_main
{
- unsigned int has_context_isolation = 0;
+ bool has_context_isolation = 0;
const struct intel_execution_engine2 *e;
intel_ctx_cfg_t cfg;
int i915 = -1;
+ int gen;
igt_fixture {
- int gen;
-
i915 = drm_open_driver(DRIVER_INTEL);
igt_require_gem(i915);
igt_require(gem_has_contexts(i915));
@@ -995,6 +1035,7 @@ igt_main
igt_require(has_context_isolation);
gen = intel_gen(intel_get_drm_devid(i915));
+ igt_require(gen >= 2);
igt_warn_on_f(gen > LAST_KNOWN_GEN,
"GEN not recognized! Test needs to be updated to run.\n");
@@ -1006,43 +1047,43 @@ igt_main
}
igt_subtest_with_dynamic("nonpriv") {
- test_each_engine(e, i915, &cfg, has_context_isolation)
- nonpriv(i915, &cfg, e, 0);
+ test_each_engine(e, i915, &cfg)
+ nonpriv(i915, &cfg, e, 0, gen);
}
igt_subtest_with_dynamic("nonpriv-switch") {
- test_each_engine(e, i915, &cfg, has_context_isolation)
- nonpriv(i915, &cfg, e, DIRTY2);
+ test_each_engine(e, i915, &cfg)
+ nonpriv(i915, &cfg, e, DIRTY2, gen);
}
igt_subtest_with_dynamic("clean") {
- test_each_engine(e, i915, &cfg, has_context_isolation)
- isolation(i915, &cfg, e, 0);
+ test_each_engine(e, i915, &cfg)
+ isolation(i915, &cfg, e, 0, gen);
}
igt_subtest_with_dynamic("dirty-create") {
- test_each_engine(e, i915, &cfg, has_context_isolation)
- isolation(i915, &cfg, e, DIRTY1);
+ test_each_engine(e, i915, &cfg)
+ isolation(i915, &cfg, e, DIRTY1, gen);
}
igt_subtest_with_dynamic("dirty-switch") {
- test_each_engine(e, i915, &cfg, has_context_isolation)
- isolation(i915, &cfg, e, DIRTY2);
+ test_each_engine(e, i915, &cfg)
+ isolation(i915, &cfg, e, DIRTY2, gen);
}
igt_subtest_with_dynamic("preservation") {
- test_each_engine(e, i915, &cfg, has_context_isolation)
- preservation(i915, &cfg, e, 0);
+ test_each_engine(e, i915, &cfg)
+ preservation(i915, &cfg, e, 0, gen);
}
igt_subtest_with_dynamic("preservation-S3") {
- test_each_engine(e, i915, &cfg, has_context_isolation)
- preservation(i915, &cfg, e, S3);
+ test_each_engine(e, i915, &cfg)
+ preservation(i915, &cfg, e, S3, gen);
}
igt_subtest_with_dynamic("preservation-S4") {
- test_each_engine(e, i915, &cfg, has_context_isolation)
- preservation(i915, &cfg, e, S4);
+ test_each_engine(e, i915, &cfg)
+ preservation(i915, &cfg, e, S4, gen);
}
igt_fixture {
@@ -1052,8 +1093,8 @@ igt_main
igt_subtest_with_dynamic("preservation-reset") {
igt_hang_t hang = igt_allow_hang(i915, 0, 0);
- test_each_engine(e, i915, &cfg, has_context_isolation)
- preservation(i915, &cfg, e, RESET);
+ test_each_engine(e, i915, &cfg)
+ preservation(i915, &cfg, e, RESET, gen);
igt_disallow_hang(i915, hang);
}
--
2.35.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] i915_drm.h sync engine class definitions
2022-05-13 15:20 [igt-dev] [PATCH i-g-t 1/2] i915_drm.h sync engine class definitions Adrian Larumbe
2022-05-13 15:20 ` [igt-dev] [PATCH i-g-t 2/2] i915/gem_ctx_isolation:: change semantics of ctx isolation uAPI Adrian Larumbe
@ 2022-05-15 10:22 ` Patchwork
2022-05-15 11:18 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2022-05-15 17:34 ` [igt-dev] [PATCH i-g-t 1/2] " Dixit, Ashutosh
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2022-05-15 10:22 UTC (permalink / raw)
To: Adrian Larumbe; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 7365 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/2] i915_drm.h sync engine class definitions
URL : https://patchwork.freedesktop.org/series/104007/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_11653 -> IGTPW_7102
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/index.html
Participating hosts (41 -> 39)
------------------------------
Additional (2): bat-adlm-1 fi-rkl-11600
Missing (4): fi-icl-u2 fi-kbl-7500u fi-bdw-5557u bat-dg2-9
Known issues
------------
Here are the changes found in IGTPW_7102 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_huc_copy@huc-copy:
- fi-rkl-11600: NOTRUN -> [SKIP][1] ([i915#2190])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/fi-rkl-11600/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-rkl-11600: NOTRUN -> [SKIP][2] ([i915#4613]) +3 similar issues
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/fi-rkl-11600/igt@gem_lmem_swapping@basic.html
* igt@gem_tiled_pread_basic:
- fi-rkl-11600: NOTRUN -> [SKIP][3] ([i915#3282])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/fi-rkl-11600/igt@gem_tiled_pread_basic.html
* igt@i915_pm_backlight@basic-brightness:
- fi-rkl-11600: NOTRUN -> [SKIP][4] ([i915#3012])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/fi-rkl-11600/igt@i915_pm_backlight@basic-brightness.html
* igt@i915_selftest@live@requests:
- fi-pnv-d510: [PASS][5] -> [DMESG-FAIL][6] ([i915#4528])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/fi-pnv-d510/igt@i915_selftest@live@requests.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/fi-pnv-d510/igt@i915_selftest@live@requests.html
* igt@kms_chamelium@dp-crc-fast:
- fi-rkl-11600: NOTRUN -> [SKIP][7] ([fdo#111827]) +8 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/fi-rkl-11600/igt@kms_chamelium@dp-crc-fast.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- fi-rkl-11600: NOTRUN -> [SKIP][8] ([i915#4070] / [i915#4103]) +1 similar issue
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/fi-rkl-11600/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_force_connector_basic@force-load-detect:
- fi-rkl-11600: NOTRUN -> [SKIP][9] ([fdo#109285] / [i915#4098])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/fi-rkl-11600/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
- fi-rkl-11600: NOTRUN -> [SKIP][10] ([i915#4070] / [i915#533])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/fi-rkl-11600/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html
* igt@kms_psr@primary_mmap_gtt:
- fi-rkl-11600: NOTRUN -> [SKIP][11] ([i915#1072]) +3 similar issues
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/fi-rkl-11600/igt@kms_psr@primary_mmap_gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- fi-rkl-11600: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#4098])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/fi-rkl-11600/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-userptr:
- fi-rkl-11600: NOTRUN -> [SKIP][13] ([i915#3301] / [i915#3708])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/fi-rkl-11600/igt@prime_vgem@basic-userptr.html
* igt@prime_vgem@basic-write:
- fi-rkl-11600: NOTRUN -> [SKIP][14] ([i915#3291] / [i915#3708]) +2 similar issues
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/fi-rkl-11600/igt@prime_vgem@basic-write.html
* igt@runner@aborted:
- fi-pnv-d510: NOTRUN -> [FAIL][15] ([fdo#109271] / [i915#2403] / [i915#4312])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/fi-pnv-d510/igt@runner@aborted.html
#### Possible fixes ####
* igt@gem_exec_suspend@basic-s0@smem:
- {fi-ehl-2}: [DMESG-WARN][16] ([i915#5122]) -> [PASS][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/fi-ehl-2/igt@gem_exec_suspend@basic-s0@smem.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/fi-ehl-2/igt@gem_exec_suspend@basic-s0@smem.html
* igt@kms_busy@basic@flip:
- {bat-adlp-6}: [DMESG-WARN][18] ([i915#3576]) -> [PASS][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/bat-adlp-6/igt@kms_busy@basic@flip.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/bat-adlp-6/igt@kms_busy@basic@flip.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2403]: https://gitlab.freedesktop.org/drm/intel/issues/2403
[i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[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#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391
[i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5537]: https://gitlab.freedesktop.org/drm/intel/issues/5537
[i915#5763]: https://gitlab.freedesktop.org/drm/intel/issues/5763
[i915#5801]: https://gitlab.freedesktop.org/drm/intel/issues/5801
[i915#5879]: https://gitlab.freedesktop.org/drm/intel/issues/5879
[i915#5950]: https://gitlab.freedesktop.org/drm/intel/issues/5950
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_6472 -> IGTPW_7102
CI-20190529: 20190529
CI_DRM_11653: 27e8bf178b49a6c29d37c3ca72b1fce3c4f52ec0 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_7102: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/index.html
IGT_6472: c815c94f0ceb33ae852622538f0136cf44c5725d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/index.html
[-- Attachment #2: Type: text/html, Size: 8018 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/2] i915_drm.h sync engine class definitions
2022-05-13 15:20 [igt-dev] [PATCH i-g-t 1/2] i915_drm.h sync engine class definitions Adrian Larumbe
2022-05-13 15:20 ` [igt-dev] [PATCH i-g-t 2/2] i915/gem_ctx_isolation:: change semantics of ctx isolation uAPI Adrian Larumbe
2022-05-15 10:22 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] i915_drm.h sync engine class definitions Patchwork
@ 2022-05-15 11:18 ` Patchwork
2022-05-15 17:34 ` [igt-dev] [PATCH i-g-t 1/2] " Dixit, Ashutosh
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2022-05-15 11:18 UTC (permalink / raw)
To: Adrian Larumbe; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 55447 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/2] i915_drm.h sync engine class definitions
URL : https://patchwork.freedesktop.org/series/104007/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_11653_full -> IGTPW_7102_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_7102_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_7102_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/index.html
Participating hosts (13 -> 8)
------------------------------
Missing (5): pig-kbl-iris pig-glk-j5005 pig-skl-6260u shard-rkl shard-dg1
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_7102_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-tglb: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-tglb5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-pwrite.html
#### Warnings ####
* igt@gem_ctx_isolation@nonpriv@rcs0:
- shard-snb: [SKIP][3] ([fdo#109271]) -> [FAIL][4] +1 similar issue
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-snb2/igt@gem_ctx_isolation@nonpriv@rcs0.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-snb2/igt@gem_ctx_isolation@nonpriv@rcs0.html
Known issues
------------
Here are the changes found in IGTPW_7102_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ccs@block-copy-compressed:
- shard-iclb: NOTRUN -> [SKIP][5] ([i915#5327])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb5/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ctx_persistence@engines-persistence:
- shard-snb: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#1099])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-snb7/igt@gem_ctx_persistence@engines-persistence.html
* igt@gem_ctx_sseu@invalid-args:
- shard-tglb: NOTRUN -> [SKIP][7] ([i915#280])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb3/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_exec_balancer@parallel:
- shard-kbl: NOTRUN -> [DMESG-WARN][8] ([i915#5076] / [i915#5614])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl4/igt@gem_exec_balancer@parallel.html
- shard-iclb: NOTRUN -> [SKIP][9] ([i915#4525])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb5/igt@gem_exec_balancer@parallel.html
- shard-tglb: NOTRUN -> [DMESG-WARN][10] ([i915#5076] / [i915#5614])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb5/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_fair@basic-deadline:
- shard-apl: NOTRUN -> [FAIL][11] ([i915#2846])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-apl6/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-kbl: [PASS][12] -> [FAIL][13] ([i915#2842])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-kbl6/igt@gem_exec_fair@basic-none@vcs0.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl4/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_fair@basic-pace@bcs0:
- shard-tglb: NOTRUN -> [FAIL][14] ([i915#2842]) +5 similar issues
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb7/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-kbl: NOTRUN -> [FAIL][15] ([i915#2842]) +1 similar issue
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl3/igt@gem_exec_fair@basic-pace@vecs0.html
- shard-glk: [PASS][16] -> [FAIL][17] ([i915#2842]) +3 similar issues
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-glk8/igt@gem_exec_fair@basic-pace@vecs0.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-glk1/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-glk: NOTRUN -> [FAIL][18] ([i915#2842])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-glk2/igt@gem_exec_fair@basic-throttle@rcs0.html
- shard-iclb: NOTRUN -> [FAIL][19] ([i915#2849])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb2/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-snb: [PASS][20] -> [SKIP][21] ([fdo#109271]) +3 similar issues
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-snb5/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-snb6/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_params@no-blt:
- shard-tglb: NOTRUN -> [SKIP][22] ([fdo#109283])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb3/igt@gem_exec_params@no-blt.html
* igt@gem_exec_params@no-vebox:
- shard-iclb: NOTRUN -> [SKIP][23] ([fdo#109283]) +1 similar issue
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb6/igt@gem_exec_params@no-vebox.html
- shard-tglb: NOTRUN -> [SKIP][24] ([fdo#109283] / [i915#4877])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb7/igt@gem_exec_params@no-vebox.html
* igt@gem_exec_params@secure-non-master:
- shard-iclb: NOTRUN -> [SKIP][25] ([fdo#112283])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb6/igt@gem_exec_params@secure-non-master.html
* igt@gem_exec_params@secure-non-root:
- shard-tglb: NOTRUN -> [SKIP][26] ([fdo#112283]) +1 similar issue
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb3/igt@gem_exec_params@secure-non-root.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-tglb: NOTRUN -> [SKIP][27] ([i915#4613]) +2 similar issues
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb1/igt@gem_lmem_swapping@heavy-multi.html
- shard-kbl: NOTRUN -> [SKIP][28] ([fdo#109271] / [i915#4613]) +3 similar issues
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl4/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-glk: NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#4613])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-glk3/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
- shard-iclb: NOTRUN -> [SKIP][30] ([i915#4613]) +1 similar issue
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@random:
- shard-apl: NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#4613]) +2 similar issues
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-apl6/igt@gem_lmem_swapping@random.html
* igt@gem_mmap_gtt@coherency:
- shard-tglb: NOTRUN -> [SKIP][32] ([fdo#111656])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb5/igt@gem_mmap_gtt@coherency.html
- shard-iclb: NOTRUN -> [SKIP][33] ([fdo#109292])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb5/igt@gem_mmap_gtt@coherency.html
* igt@gem_pxp@create-valid-protected-context:
- shard-iclb: NOTRUN -> [SKIP][34] ([i915#4270]) +1 similar issue
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb3/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-tglb: NOTRUN -> [SKIP][35] ([i915#4270]) +2 similar issues
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb2/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
- shard-kbl: NOTRUN -> [SKIP][36] ([fdo#109271]) +270 similar issues
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl6/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
- shard-iclb: NOTRUN -> [SKIP][37] ([i915#768]) +3 similar issues
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb7/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-tglb: NOTRUN -> [SKIP][38] ([i915#3297]) +1 similar issue
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb1/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-kbl: NOTRUN -> [SKIP][39] ([fdo#109271] / [i915#3323])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl6/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-iclb: NOTRUN -> [SKIP][40] ([i915#3297])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb7/igt@gem_userptr_blits@unsync-overlap.html
* igt@gen7_exec_parse@basic-offset:
- shard-apl: NOTRUN -> [SKIP][41] ([fdo#109271]) +183 similar issues
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-apl4/igt@gen7_exec_parse@basic-offset.html
* igt@gen9_exec_parse@allowed-single:
- shard-tglb: NOTRUN -> [SKIP][42] ([i915#2527] / [i915#2856]) +4 similar issues
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb5/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-iclb: NOTRUN -> [SKIP][43] ([i915#2856]) +3 similar issues
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb5/igt@gen9_exec_parse@batch-zero-length.html
* igt@i915_pm_dc@dc3co-vpb-simulation:
- shard-tglb: NOTRUN -> [SKIP][44] ([i915#1904])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb8/igt@i915_pm_dc@dc3co-vpb-simulation.html
- shard-iclb: NOTRUN -> [SKIP][45] ([i915#658])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb4/igt@i915_pm_dc@dc3co-vpb-simulation.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglb: NOTRUN -> [WARN][46] ([i915#2681])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb3/igt@i915_pm_rc6_residency@rc6-idle.html
- shard-iclb: NOTRUN -> [WARN][47] ([i915#2684])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb3/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress:
- shard-tglb: NOTRUN -> [SKIP][48] ([fdo#111644] / [i915#1397] / [i915#2411]) +1 similar issue
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-iclb: NOTRUN -> [SKIP][49] ([i915#1769])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-iclb: NOTRUN -> [SKIP][50] ([i915#5286]) +3 similar issues
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb8/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
- shard-snb: NOTRUN -> [SKIP][51] ([fdo#109271]) +212 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-snb2/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-glk: NOTRUN -> [SKIP][52] ([fdo#109271]) +110 similar issues
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-glk1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
- shard-tglb: NOTRUN -> [SKIP][53] ([i915#5286]) +5 similar issues
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-tglb: NOTRUN -> [SKIP][54] ([fdo#111614])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb8/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
- shard-iclb: NOTRUN -> [SKIP][55] ([fdo#110725] / [fdo#111614])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-glk: [PASS][56] -> [FAIL][57] ([i915#1888] / [i915#5138])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-glk3/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-glk8/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-tglb: NOTRUN -> [SKIP][58] ([fdo#111615]) +7 similar issues
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb6/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-iclb: NOTRUN -> [SKIP][59] ([fdo#110723]) +2 similar issues
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_joiner@basic:
- shard-tglb: NOTRUN -> [SKIP][60] ([i915#2705]) +1 similar issue
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb2/igt@kms_big_joiner@basic.html
- shard-iclb: NOTRUN -> [SKIP][61] ([i915#2705])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb5/igt@kms_big_joiner@basic.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-tglb: NOTRUN -> [SKIP][62] ([i915#3689] / [i915#3886]) +3 similar issues
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb6/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc:
- shard-kbl: NOTRUN -> [SKIP][63] ([fdo#109271] / [i915#3886]) +12 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl1/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][64] ([i915#3689]) +13 similar issues
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb5/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_ccs.html
* igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][65] ([fdo#111615] / [i915#3689]) +5 similar issues
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb7/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html
* igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
- shard-iclb: NOTRUN -> [SKIP][66] ([fdo#109278] / [i915#3886]) +7 similar issues
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb4/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html
- shard-apl: NOTRUN -> [SKIP][67] ([fdo#109271] / [i915#3886]) +9 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-apl6/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html
- shard-glk: NOTRUN -> [SKIP][68] ([fdo#109271] / [i915#3886]) +3 similar issues
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-glk8/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_chamelium@dp-crc-fast:
- shard-snb: NOTRUN -> [SKIP][69] ([fdo#109271] / [fdo#111827]) +7 similar issues
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-snb4/igt@kms_chamelium@dp-crc-fast.html
* igt@kms_chamelium@dp-hpd-storm:
- shard-iclb: NOTRUN -> [SKIP][70] ([fdo#109284] / [fdo#111827]) +11 similar issues
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb1/igt@kms_chamelium@dp-hpd-storm.html
* igt@kms_chamelium@hdmi-crc-single:
- shard-glk: NOTRUN -> [SKIP][71] ([fdo#109271] / [fdo#111827]) +7 similar issues
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-glk3/igt@kms_chamelium@hdmi-crc-single.html
* igt@kms_chamelium@vga-hpd:
- shard-apl: NOTRUN -> [SKIP][72] ([fdo#109271] / [fdo#111827]) +15 similar issues
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-apl3/igt@kms_chamelium@vga-hpd.html
- shard-tglb: NOTRUN -> [SKIP][73] ([fdo#109284] / [fdo#111827]) +18 similar issues
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb1/igt@kms_chamelium@vga-hpd.html
* igt@kms_color@pipe-d-ctm-max:
- shard-iclb: NOTRUN -> [SKIP][74] ([fdo#109278] / [i915#1149]) +2 similar issues
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb7/igt@kms_color@pipe-d-ctm-max.html
* igt@kms_color_chamelium@pipe-a-ctm-0-75:
- shard-kbl: NOTRUN -> [SKIP][75] ([fdo#109271] / [fdo#111827]) +24 similar issues
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl7/igt@kms_color_chamelium@pipe-a-ctm-0-75.html
* igt@kms_color_chamelium@pipe-d-ctm-blue-to-red:
- shard-iclb: NOTRUN -> [SKIP][76] ([fdo#109278] / [fdo#109284] / [fdo#111827])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb2/igt@kms_color_chamelium@pipe-d-ctm-blue-to-red.html
* igt@kms_content_protection@atomic:
- shard-kbl: NOTRUN -> [TIMEOUT][77] ([i915#1319])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl6/igt@kms_content_protection@atomic.html
- shard-tglb: NOTRUN -> [SKIP][78] ([i915#1063])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb2/igt@kms_content_protection@atomic.html
* igt@kms_cursor_crc@pipe-b-cursor-32x10-random:
- shard-tglb: NOTRUN -> [SKIP][79] ([i915#3359]) +13 similar issues
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb6/igt@kms_cursor_crc@pipe-b-cursor-32x10-random.html
* igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen:
- shard-tglb: NOTRUN -> [SKIP][80] ([i915#3319]) +5 similar issues
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb8/igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen.html
* igt@kms_cursor_crc@pipe-b-cursor-512x512-rapid-movement:
- shard-iclb: NOTRUN -> [SKIP][81] ([fdo#109278] / [fdo#109279]) +2 similar issues
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb2/igt@kms_cursor_crc@pipe-b-cursor-512x512-rapid-movement.html
* igt@kms_cursor_crc@pipe-d-cursor-32x10-offscreen:
- shard-iclb: NOTRUN -> [SKIP][82] ([fdo#109278]) +48 similar issues
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb6/igt@kms_cursor_crc@pipe-d-cursor-32x10-offscreen.html
* igt@kms_cursor_crc@pipe-d-cursor-512x512-offscreen:
- shard-tglb: NOTRUN -> [SKIP][83] ([fdo#109279] / [i915#3359]) +8 similar issues
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb3/igt@kms_cursor_crc@pipe-d-cursor-512x512-offscreen.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-iclb: NOTRUN -> [SKIP][84] ([fdo#109274] / [fdo#109278]) +4 similar issues
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb5/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-tglb: NOTRUN -> [SKIP][85] ([fdo#109274] / [fdo#111825]) +14 similar issues
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-iclb: [PASS][86] -> [FAIL][87] ([i915#2346])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-iclb3/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglb: NOTRUN -> [SKIP][88] ([i915#4103]) +2 similar issues
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_draw_crc@draw-method-rgb565-blt-4tiled:
- shard-iclb: NOTRUN -> [SKIP][89] ([i915#5287]) +3 similar issues
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb2/igt@kms_draw_crc@draw-method-rgb565-blt-4tiled.html
* igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled:
- shard-tglb: NOTRUN -> [SKIP][90] ([i915#5287]) +3 similar issues
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb6/igt@kms_draw_crc@draw-method-xrgb2101010-render-4tiled.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-tglb: NOTRUN -> [SKIP][91] ([fdo#109274] / [fdo#111825] / [i915#3966])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb3/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][92] -> [FAIL][93] ([i915#79])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-iclb: NOTRUN -> [SKIP][94] ([fdo#109274]) +8 similar issues
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb7/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-tglb: NOTRUN -> [SKIP][95] ([i915#2587])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-upscaling:
- shard-iclb: NOTRUN -> [SKIP][96] ([i915#2587])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-glk: [PASS][97] -> [FAIL][98] ([i915#1888] / [i915#2546])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-glk3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-glk8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render:
- shard-iclb: NOTRUN -> [SKIP][99] ([fdo#109280]) +30 similar issues
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-tglb: NOTRUN -> [SKIP][100] ([fdo#109280] / [fdo#111825]) +38 similar issues
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
- shard-tglb: NOTRUN -> [SKIP][101] ([fdo#109289]) +3 similar issues
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb8/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html
* igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c:
- shard-iclb: NOTRUN -> [SKIP][102] ([fdo#109289]) +1 similar issue
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb7/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html
* igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence:
- shard-apl: NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#533])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-apl7/igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d-frame-sequence.html
* igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence:
- shard-kbl: NOTRUN -> [SKIP][104] ([fdo#109271] / [i915#533])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl1/igt@kms_pipe_crc_basic@read-crc-pipe-d-frame-sequence.html
* igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][105] ([i915#265])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-glk5/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
- shard-apl: NOTRUN -> [FAIL][106] ([i915#265]) +1 similar issue
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-apl3/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
- shard-kbl: NOTRUN -> [FAIL][107] ([i915#265])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl6/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:
- shard-kbl: NOTRUN -> [FAIL][108] ([fdo#108145] / [i915#265])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl1/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max.html
* igt@kms_plane_lowres@pipe-a-tiling-none:
- shard-tglb: NOTRUN -> [SKIP][109] ([i915#3536]) +2 similar issues
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb8/igt@kms_plane_lowres@pipe-a-tiling-none.html
- shard-iclb: NOTRUN -> [SKIP][110] ([i915#3536])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb4/igt@kms_plane_lowres@pipe-a-tiling-none.html
* igt@kms_plane_lowres@pipe-b-tiling-4:
- shard-iclb: NOTRUN -> [SKIP][111] ([i915#5288]) +1 similar issue
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb5/igt@kms_plane_lowres@pipe-b-tiling-4.html
* igt@kms_plane_multiple@atomic-pipe-c-tiling-4:
- shard-tglb: NOTRUN -> [SKIP][112] ([i915#5288]) +1 similar issue
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb6/igt@kms_plane_multiple@atomic-pipe-c-tiling-4.html
* igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-25@pipe-a-edp-1-downscale-with-pixel-format:
- shard-iclb: NOTRUN -> [SKIP][113] ([i915#5176]) +5 similar issues
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb2/igt@kms_plane_scaling@downscale-with-pixel-format-factor-0-25@pipe-a-edp-1-downscale-with-pixel-format.html
* igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-b-edp-1-downscale-with-rotation:
- shard-tglb: NOTRUN -> [SKIP][114] ([i915#5176]) +7 similar issues
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb6/igt@kms_plane_scaling@downscale-with-rotation-factor-0-5@pipe-b-edp-1-downscale-with-rotation.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1-planes-upscale-downscale:
- shard-iclb: [PASS][115] -> [SKIP][116] ([i915#5235]) +2 similar issues
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-iclb1/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1-planes-upscale-downscale.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-a-edp-1-planes-upscale-downscale.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-edp-1-planes-upscale-downscale:
- shard-tglb: NOTRUN -> [SKIP][117] ([i915#5235]) +3 similar issues
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-edp-1-planes-upscale-downscale.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1-planes-upscale-downscale:
- shard-iclb: NOTRUN -> [SKIP][118] ([i915#5235]) +2 similar issues
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-edp-1-planes-upscale-downscale.html
* igt@kms_psr2_sf@plane-move-sf-dmg-area:
- shard-iclb: NOTRUN -> [SKIP][119] ([fdo#111068] / [i915#658])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb6/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
- shard-kbl: NOTRUN -> [SKIP][120] ([fdo#109271] / [i915#658]) +2 similar issues
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl3/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
- shard-apl: NOTRUN -> [SKIP][121] ([fdo#109271] / [i915#658]) +2 similar issues
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-apl1/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
- shard-tglb: NOTRUN -> [SKIP][122] ([i915#2920])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb7/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
- shard-glk: NOTRUN -> [SKIP][123] ([fdo#109271] / [i915#658])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-glk1/igt@kms_psr2_sf@plane-move-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglb: NOTRUN -> [SKIP][124] ([i915#1911])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb8/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-iclb: NOTRUN -> [SKIP][125] ([fdo#109642] / [fdo#111068] / [i915#658])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@psr2_cursor_plane_onoff:
- shard-tglb: NOTRUN -> [FAIL][126] ([i915#132] / [i915#3467]) +5 similar issues
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb8/igt@kms_psr@psr2_cursor_plane_onoff.html
* igt@kms_psr@psr2_sprite_plane_move:
- shard-iclb: NOTRUN -> [SKIP][127] ([fdo#109441]) +2 similar issues
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb7/igt@kms_psr@psr2_sprite_plane_move.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglb: NOTRUN -> [SKIP][128] ([fdo#111615] / [i915#5289])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-iclb: NOTRUN -> [SKIP][129] ([i915#3555]) +2 similar issues
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_vrr@flip-suspend:
- shard-tglb: NOTRUN -> [SKIP][130] ([i915#3555]) +1 similar issue
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb3/igt@kms_vrr@flip-suspend.html
* igt@kms_writeback@writeback-fb-id:
- shard-kbl: NOTRUN -> [SKIP][131] ([fdo#109271] / [i915#2437]) +1 similar issue
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl1/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-tglb: NOTRUN -> [SKIP][132] ([i915#2437]) +1 similar issue
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb8/igt@kms_writeback@writeback-invalid-parameters.html
- shard-apl: NOTRUN -> [SKIP][133] ([fdo#109271] / [i915#2437])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-apl4/igt@kms_writeback@writeback-invalid-parameters.html
- shard-glk: NOTRUN -> [SKIP][134] ([fdo#109271] / [i915#2437])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-glk2/igt@kms_writeback@writeback-invalid-parameters.html
- shard-iclb: NOTRUN -> [SKIP][135] ([i915#2437])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb2/igt@kms_writeback@writeback-invalid-parameters.html
* igt@nouveau_crc@pipe-a-source-outp-complete:
- shard-iclb: NOTRUN -> [SKIP][136] ([i915#2530])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb2/igt@nouveau_crc@pipe-a-source-outp-complete.html
* igt@nouveau_crc@pipe-d-source-outp-inactive:
- shard-tglb: NOTRUN -> [SKIP][137] ([i915#2530]) +2 similar issues
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb6/igt@nouveau_crc@pipe-d-source-outp-inactive.html
* igt@prime_nv_api@i915_self_import:
- shard-iclb: NOTRUN -> [SKIP][138] ([fdo#109291]) +3 similar issues
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb1/igt@prime_nv_api@i915_self_import.html
* igt@prime_nv_pcopy@test3_2:
- shard-tglb: NOTRUN -> [SKIP][139] ([fdo#109291]) +4 similar issues
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb3/igt@prime_nv_pcopy@test3_2.html
* igt@prime_vgem@basic-userptr:
- shard-tglb: NOTRUN -> [SKIP][140] ([i915#3301])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb6/igt@prime_vgem@basic-userptr.html
- shard-iclb: NOTRUN -> [SKIP][141] ([i915#3301])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb1/igt@prime_vgem@basic-userptr.html
* igt@prime_vgem@fence-read-hang:
- shard-tglb: NOTRUN -> [SKIP][142] ([fdo#109295]) +1 similar issue
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb8/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-iclb: NOTRUN -> [SKIP][143] ([fdo#109295]) +1 similar issue
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb8/igt@prime_vgem@fence-write-hang.html
* igt@syncobj_timeline@transfer-timeline-point:
- shard-apl: NOTRUN -> [DMESG-FAIL][144] ([i915#5098])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-apl8/igt@syncobj_timeline@transfer-timeline-point.html
* igt@sysfs_clients@fair-1:
- shard-glk: NOTRUN -> [SKIP][145] ([fdo#109271] / [i915#2994]) +1 similar issue
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-glk2/igt@sysfs_clients@fair-1.html
- shard-iclb: NOTRUN -> [SKIP][146] ([i915#2994]) +1 similar issue
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb2/igt@sysfs_clients@fair-1.html
* igt@sysfs_clients@fair-7:
- shard-apl: NOTRUN -> [SKIP][147] ([fdo#109271] / [i915#2994]) +3 similar issues
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-apl8/igt@sysfs_clients@fair-7.html
* igt@sysfs_clients@sema-10:
- shard-tglb: NOTRUN -> [SKIP][148] ([i915#2994]) +3 similar issues
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb3/igt@sysfs_clients@sema-10.html
* igt@sysfs_clients@split-50:
- shard-kbl: NOTRUN -> [SKIP][149] ([fdo#109271] / [i915#2994]) +5 similar issues
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl4/igt@sysfs_clients@split-50.html
#### Possible fixes ####
* igt@gem_eio@unwedge-stress:
- shard-tglb: [FAIL][150] ([i915#5784]) -> [PASS][151]
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-tglb3/igt@gem_eio@unwedge-stress.html
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb6/igt@gem_eio@unwedge-stress.html
- {shard-tglu}: [TIMEOUT][152] ([i915#3063]) -> [PASS][153]
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-tglu-5/igt@gem_eio@unwedge-stress.html
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglu-2/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_fair@basic-none@vecs0:
- shard-apl: [FAIL][154] ([i915#2842]) -> [PASS][155]
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-apl6/igt@gem_exec_fair@basic-none@vecs0.html
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-apl4/igt@gem_exec_fair@basic-none@vecs0.html
* igt@i915_pm_dc@dc6-psr:
- shard-iclb: [FAIL][156] ([i915#454]) -> [PASS][157]
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-iclb3/igt@i915_pm_dc@dc6-psr.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb1/igt@i915_pm_dc@dc6-psr.html
* igt@i915_pm_dc@dc9-dpms:
- shard-apl: [SKIP][158] ([fdo#109271]) -> [PASS][159]
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-apl4/igt@i915_pm_dc@dc9-dpms.html
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-apl4/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
- {shard-tglu}: [FAIL][160] ([i915#3825]) -> [PASS][161]
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-tglu-6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglu-1/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
* igt@i915_selftest@live@hangcheck:
- shard-tglb: [DMESG-WARN][162] ([i915#5591]) -> [PASS][163]
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-tglb8/igt@i915_selftest@live@hangcheck.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb3/igt@i915_selftest@live@hangcheck.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][164] ([i915#2346]) -> [PASS][165]
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1:
- shard-apl: [FAIL][166] ([i915#79]) -> [PASS][167]
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-apl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-apl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
- shard-kbl: [DMESG-WARN][168] ([i915#180]) -> [PASS][169] +5 similar issues
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl1/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
- shard-apl: [DMESG-WARN][170] ([i915#180]) -> [PASS][171] +4 similar issues
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-apl2/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-apl4/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-iclb: [SKIP][172] ([i915#3701]) -> [PASS][173] +1 similar issue
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_hdmi_inject@inject-audio:
- shard-tglb: [SKIP][174] ([i915#433]) -> [PASS][175]
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-tglb8/igt@kms_hdmi_inject@inject-audio.html
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-tglb5/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_psr@psr2_sprite_mmap_cpu:
- shard-iclb: [SKIP][176] ([fdo#109441]) -> [PASS][177]
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-iclb4/igt@kms_psr@psr2_sprite_mmap_cpu.html
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_cpu.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-iclb: [SKIP][178] ([i915#5519]) -> [PASS][179]
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-iclb1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
#### Warnings ####
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-iclb: [DMESG-WARN][180] ([i915#5614]) -> [SKIP][181] ([i915#4525])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-iclb1/igt@gem_exec_balancer@parallel-keep-submit-fence.html
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb5/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-iclb: [SKIP][182] ([i915#4525]) -> [DMESG-FAIL][183] ([i915#5614])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-iclb3/igt@gem_exec_balancer@parallel-ordering.html
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb2/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-glk: [FAIL][184] ([i915#2842]) -> [FAIL][185] ([i915#1888] / [i915#2842])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-glk4/igt@gem_exec_fair@basic-none-rrul@rcs0.html
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-glk5/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@kms_cursor_crc@pipe-b-cursor-suspend:
- shard-kbl: [DMESG-WARN][186] ([i915#180]) -> [INCOMPLETE][187] ([i915#3614])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-suspend.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-apl: [INCOMPLETE][188] ([i915#180]) -> [INCOMPLETE][189] ([i915#180] / [i915#1982])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-apl8/igt@kms_fbcon_fbt@fbc-suspend.html
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-apl4/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-iclb: [SKIP][190] ([fdo#111068] / [i915#658]) -> [SKIP][191] ([i915#2920])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-iclb4/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
- shard-iclb: [SKIP][192] ([i915#2920]) -> [SKIP][193] ([fdo#111068] / [i915#658])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-iclb5/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
* igt@runner@aborted:
- shard-kbl: ([FAIL][194], [FAIL][195], [FAIL][196], [FAIL][197], [FAIL][198], [FAIL][199], [FAIL][200], [FAIL][201], [FAIL][202], [FAIL][203], [FAIL][204], [FAIL][205], [FAIL][206], [FAIL][207], [FAIL][208]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][209], [FAIL][210], [FAIL][211], [FAIL][212], [FAIL][213], [FAIL][214], [FAIL][215], [FAIL][216], [FAIL][217], [FAIL][218]) ([i915#3002] / [i915#4312] / [i915#5257])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-kbl4/igt@runner@aborted.html
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-kbl7/igt@runner@aborted.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-kbl7/igt@runner@aborted.html
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-kbl4/igt@runner@aborted.html
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-kbl4/igt@runner@aborted.html
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-kbl4/igt@runner@aborted.html
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-kbl1/igt@runner@aborted.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-kbl7/igt@runner@aborted.html
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-kbl3/igt@runner@aborted.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-kbl7/igt@runner@aborted.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-kbl3/igt@runner@aborted.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-kbl3/igt@runner@aborted.html
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-kbl1/igt@runner@aborted.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-kbl4/igt@runner@aborted.html
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11653/shard-kbl1/igt@runner@aborted.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl1/igt@runner@aborted.html
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl7/igt@runner@aborted.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl7/igt@runner@aborted.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl7/igt@runner@aborted.html
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl7/igt@runner@aborted.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl6/igt@runner@aborted.html
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl7/igt@runner@aborted.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl4/igt@runner@aborted.html
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl6/igt@runner@aborted.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/shard-kbl4/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#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#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[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#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#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#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#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#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#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
[i915#1904]: https://gitlab.freedesktop.org/drm/intel/issues/1904
[i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
[i915#2546]: https://gitlab.freedesktop.org/drm/intel/issues/2546
[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#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[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#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[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#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3376]: https://gitlab.freedesktop.org/drm/intel/issues/3376
[i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3614]: https://gitlab.freedesktop.org/drm/intel/issues/3614
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3690]: https://gitlab.freedesktop.org/drm/intel/issues/3690
[i915#3701]: https://gitlab.freedesktop.org/drm/intel/issues/3701
[i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966
[i915#3987]: https://gitlab.freedesktop.org/drm/intel/issues/3987
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
[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#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877
[i915#5076]: https://gitlab.freedesktop.org/drm/intel/issues/5076
[i915#5098]: https://gitlab.freedesktop.org/drm/intel/issues/5098
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[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#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[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#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
[i915#5614]: https://gitlab.freedesktop.org/drm/intel/issues/5614
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_6472 -> IGTPW_7102
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_11653: 27e8bf178b49a6c29d37c3ca72b1fce3c4f52ec0 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_7102: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/index.html
IGT_6472: c815c94f0ceb33ae852622538f0136cf44c5725d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7102/index.html
[-- Attachment #2: Type: text/html, Size: 68438 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] i915_drm.h sync engine class definitions
2022-05-13 15:20 [igt-dev] [PATCH i-g-t 1/2] i915_drm.h sync engine class definitions Adrian Larumbe
` (2 preceding siblings ...)
2022-05-15 11:18 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-05-15 17:34 ` Dixit, Ashutosh
2022-05-16 20:42 ` Adrian Larumbe
3 siblings, 1 reply; 6+ messages in thread
From: Dixit, Ashutosh @ 2022-05-15 17:34 UTC (permalink / raw)
To: Adrian Larumbe; +Cc: igt-dev, bob.beckett, daniel
On Fri, 13 May 2022 08:20:44 -0700, Adrian Larumbe wrote:
>
> gem_ctx_isolation@preservation needs to take into account the shared reset
> domain between RCS and CCS engines.
>
> Because the uAPI engine class defs have already been merged onto drm-tip,
> remove the temporary definitions and also sync the remaining ones.
Where are these sync'd from? include/drm-uapi/i915_drm.h is sync'd from
drm-next not drm-tip, see git log for the file.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] i915_drm.h sync engine class definitions
2022-05-15 17:34 ` [igt-dev] [PATCH i-g-t 1/2] " Dixit, Ashutosh
@ 2022-05-16 20:42 ` Adrian Larumbe
0 siblings, 0 replies; 6+ messages in thread
From: Adrian Larumbe @ 2022-05-16 20:42 UTC (permalink / raw)
To: Dixit, Ashutosh; +Cc: igt-dev, bob.beckett, daniel
On 15.05.2022 10:34, Dixit, Ashutosh wrote:
> On Fri, 13 May 2022 08:20:44 -0700, Adrian Larumbe wrote:
> >
> > gem_ctx_isolation@preservation needs to take into account the shared reset
> > domain between RCS and CCS engines.
> >
> > Because the uAPI engine class defs have already been merged onto drm-tip,
> > remove the temporary definitions and also sync the remaining ones.
>
> Where are these sync'd from? include/drm-uapi/i915_drm.h is sync'd from
> drm-next not drm-tip, see git log for the file.
It turns out the i915_drm.h snippet I wanted to sync is already present in drm-next,
so I think changing the commit message should be enough.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2022-05-16 20:42 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-13 15:20 [igt-dev] [PATCH i-g-t 1/2] i915_drm.h sync engine class definitions Adrian Larumbe
2022-05-13 15:20 ` [igt-dev] [PATCH i-g-t 2/2] i915/gem_ctx_isolation:: change semantics of ctx isolation uAPI Adrian Larumbe
2022-05-15 10:22 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] i915_drm.h sync engine class definitions Patchwork
2022-05-15 11:18 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2022-05-15 17:34 ` [igt-dev] [PATCH i-g-t 1/2] " Dixit, Ashutosh
2022-05-16 20:42 ` Adrian Larumbe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox