* [PATCH] i915/pmu: Fix zero delta busyness issue
@ 2025-01-21 22:25 Umesh Nerlige Ramappa
2025-01-21 23:10 ` Rodrigo Vivi
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Umesh Nerlige Ramappa @ 2025-01-21 22:25 UTC (permalink / raw)
To: intel-gfx; +Cc: John.C.Harrison
When running igt@gem_exec_balancer@individual for multiple iterations,
it is seen that the delta busyness returned by PMU is 0. The issue stems
from a combination of 2 implementation specific details:
1) gt_park is throttling __update_guc_busyness_stats() so that it does
not hog PCI bandwidth for some use cases. (Ref: 59bcdb564b3ba)
2) busyness implementation always returns monotonically increasing
counters. (Ref: cf907f6d29421)
If an application queried an engine while it was active,
engine->stats.guc.running is set to true. Following that, if all PM
wakeref's are released, then gt is parked. At this time the throttling
of __update_guc_busyness_stats() may result in a missed update to the
running state of the engine (due to (1) above). This means subsequent
calls to guc_engine_busyness() will think that the engine is still
running and they will keep updating the cached counter (stats->total).
This results in an inflated cached counter.
Later when the application runs a workload and queries for busyness, we
return the cached value since it is larger than the actual value (due to
(2) above)
All subsequent queries will return the same large (inflated) value, so
the application sees a delta busyness of zero.
In order to fix the issue,
- reset the running state of engines in busyness_park outside of the
throttling code.
- when busyness is queried and PM wakeref is not active, do not
calculate active engine time since we do not expect engines to be
active without a wakeref.
Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13366
Fixes: cf907f6d2942 ("i915/guc: Ensure busyness counter increases motonically")
Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
---
.../gpu/drm/i915/gt/uc/intel_guc_submission.c | 18 +++++++++++++++++-
1 file changed, 17 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c
index 12f1ba7ca9c1..b7a831e1fc85 100644
--- a/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c
+++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c
@@ -1372,7 +1372,7 @@ static ktime_t guc_engine_busyness(struct intel_engine_cs *engine, ktime_t *now)
}
total = intel_gt_clock_interval_to_ns(gt, stats->total_gt_clks);
- if (stats->running) {
+ if (wakeref && stats->running) {
u64 clk = guc->timestamp.gt_stamp - stats->start_gt_clk;
total += intel_gt_clock_interval_to_ns(gt, clk);
@@ -1469,6 +1469,19 @@ static void __reset_guc_busyness_stats(struct intel_guc *guc)
spin_unlock_irqrestore(&guc->timestamp.lock, flags);
}
+static void __update_guc_busyness_running_state(struct intel_guc *guc)
+{
+ struct intel_gt *gt = guc_to_gt(guc);
+ struct intel_engine_cs *engine;
+ enum intel_engine_id id;
+ unsigned long flags;
+
+ spin_lock_irqsave(&guc->timestamp.lock, flags);
+ for_each_engine(engine, gt, id)
+ engine->stats.guc.running = false;
+ spin_unlock_irqrestore(&guc->timestamp.lock, flags);
+}
+
static void __update_guc_busyness_stats(struct intel_guc *guc)
{
struct intel_gt *gt = guc_to_gt(guc);
@@ -1619,6 +1632,9 @@ void intel_guc_busyness_park(struct intel_gt *gt)
if (!guc_submission_initialized(guc))
return;
+ /* Assume no engines are running and set running state to false */
+ __update_guc_busyness_running_state(guc);
+
/*
* There is a race with suspend flow where the worker runs after suspend
* and causes an unclaimed register access warning. Cancel the worker
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH] i915/pmu: Fix zero delta busyness issue 2025-01-21 22:25 [PATCH] i915/pmu: Fix zero delta busyness issue Umesh Nerlige Ramappa @ 2025-01-21 23:10 ` Rodrigo Vivi 2025-01-21 23:58 ` Umesh Nerlige Ramappa 2025-01-22 9:54 ` ✓ i915.CI.BAT: success for i915/pmu: Fix zero delta busyness issue (rev2) Patchwork 2025-01-23 14:06 ` ✗ i915.CI.Full: failure " Patchwork 2 siblings, 1 reply; 6+ messages in thread From: Rodrigo Vivi @ 2025-01-21 23:10 UTC (permalink / raw) To: Umesh Nerlige Ramappa; +Cc: intel-gfx, John.C.Harrison On Tue, Jan 21, 2025 at 02:25:57PM -0800, Umesh Nerlige Ramappa wrote: drm/i915/pmu as tag please... > When running igt@gem_exec_balancer@individual for multiple iterations, > it is seen that the delta busyness returned by PMU is 0. The issue stems > from a combination of 2 implementation specific details: > > 1) gt_park is throttling __update_guc_busyness_stats() so that it does > not hog PCI bandwidth for some use cases. (Ref: 59bcdb564b3ba) > > 2) busyness implementation always returns monotonically increasing > counters. (Ref: cf907f6d29421) > > If an application queried an engine while it was active, > engine->stats.guc.running is set to true. Following that, if all PM > wakeref's are released, then gt is parked. At this time the throttling > of __update_guc_busyness_stats() may result in a missed update to the > running state of the engine (due to (1) above). This means subsequent > calls to guc_engine_busyness() will think that the engine is still > running and they will keep updating the cached counter (stats->total). > This results in an inflated cached counter. > > Later when the application runs a workload and queries for busyness, we > return the cached value since it is larger than the actual value (due to > (2) above) > > All subsequent queries will return the same large (inflated) value, so > the application sees a delta busyness of zero. > > In order to fix the issue, > - reset the running state of engines in busyness_park outside of the > throttling code. > - when busyness is queried and PM wakeref is not active, do not > calculate active engine time since we do not expect engines to be > active without a wakeref. > > Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13366 > Fixes: cf907f6d2942 ("i915/guc: Ensure busyness counter increases motonically") > Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> > --- > .../gpu/drm/i915/gt/uc/intel_guc_submission.c | 18 +++++++++++++++++- > 1 file changed, 17 insertions(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c > index 12f1ba7ca9c1..b7a831e1fc85 100644 > --- a/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c > +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c > @@ -1372,7 +1372,7 @@ static ktime_t guc_engine_busyness(struct intel_engine_cs *engine, ktime_t *now) > } > > total = intel_gt_clock_interval_to_ns(gt, stats->total_gt_clks); > - if (stats->running) { > + if (wakeref && stats->running) { do you really need to check this wakeref if you are now setting running to false earlier? And if we do, what about moving this entire block to inside the existing if (wakeref) ?! > u64 clk = guc->timestamp.gt_stamp - stats->start_gt_clk; > > total += intel_gt_clock_interval_to_ns(gt, clk); > @@ -1469,6 +1469,19 @@ static void __reset_guc_busyness_stats(struct intel_guc *guc) > spin_unlock_irqrestore(&guc->timestamp.lock, flags); > } > > +static void __update_guc_busyness_running_state(struct intel_guc *guc) > +{ > + struct intel_gt *gt = guc_to_gt(guc); > + struct intel_engine_cs *engine; > + enum intel_engine_id id; > + unsigned long flags; > + > + spin_lock_irqsave(&guc->timestamp.lock, flags); > + for_each_engine(engine, gt, id) > + engine->stats.guc.running = false; > + spin_unlock_irqrestore(&guc->timestamp.lock, flags); > +} > + > static void __update_guc_busyness_stats(struct intel_guc *guc) > { > struct intel_gt *gt = guc_to_gt(guc); > @@ -1619,6 +1632,9 @@ void intel_guc_busyness_park(struct intel_gt *gt) > if (!guc_submission_initialized(guc)) > return; > > + /* Assume no engines are running and set running state to false */ > + __update_guc_busyness_running_state(guc); > + Why not to move the entire __reset_guc_busyness_stats earlier then? > /* > * There is a race with suspend flow where the worker runs after suspend > * and causes an unclaimed register access warning. Cancel the worker > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] i915/pmu: Fix zero delta busyness issue 2025-01-21 23:10 ` Rodrigo Vivi @ 2025-01-21 23:58 ` Umesh Nerlige Ramappa 2025-01-22 10:12 ` Rodrigo Vivi 0 siblings, 1 reply; 6+ messages in thread From: Umesh Nerlige Ramappa @ 2025-01-21 23:58 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: intel-gfx, John.C.Harrison On Tue, Jan 21, 2025 at 06:10:34PM -0500, Rodrigo Vivi wrote: >On Tue, Jan 21, 2025 at 02:25:57PM -0800, Umesh Nerlige Ramappa wrote: > >drm/i915/pmu as tag please... will do > >> When running igt@gem_exec_balancer@individual for multiple iterations, >> it is seen that the delta busyness returned by PMU is 0. The issue stems >> from a combination of 2 implementation specific details: >> >> 1) gt_park is throttling __update_guc_busyness_stats() so that it does >> not hog PCI bandwidth for some use cases. (Ref: 59bcdb564b3ba) >> >> 2) busyness implementation always returns monotonically increasing >> counters. (Ref: cf907f6d29421) >> >> If an application queried an engine while it was active, >> engine->stats.guc.running is set to true. Following that, if all PM >> wakeref's are released, then gt is parked. At this time the throttling >> of __update_guc_busyness_stats() may result in a missed update to the >> running state of the engine (due to (1) above). This means subsequent >> calls to guc_engine_busyness() will think that the engine is still >> running and they will keep updating the cached counter (stats->total). >> This results in an inflated cached counter. >> >> Later when the application runs a workload and queries for busyness, we >> return the cached value since it is larger than the actual value (due to >> (2) above) >> >> All subsequent queries will return the same large (inflated) value, so >> the application sees a delta busyness of zero. >> >> In order to fix the issue, >> - reset the running state of engines in busyness_park outside of the >> throttling code. >> - when busyness is queried and PM wakeref is not active, do not >> calculate active engine time since we do not expect engines to be >> active without a wakeref. >> >> Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13366 >> Fixes: cf907f6d2942 ("i915/guc: Ensure busyness counter increases motonically") >> Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> >> --- >> .../gpu/drm/i915/gt/uc/intel_guc_submission.c | 18 +++++++++++++++++- >> 1 file changed, 17 insertions(+), 1 deletion(-) >> >> diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c >> index 12f1ba7ca9c1..b7a831e1fc85 100644 >> --- a/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c >> +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c >> @@ -1372,7 +1372,7 @@ static ktime_t guc_engine_busyness(struct intel_engine_cs *engine, ktime_t *now) >> } >> >> total = intel_gt_clock_interval_to_ns(gt, stats->total_gt_clks); >> - if (stats->running) { >> + if (wakeref && stats->running) { > >do you really need to check this wakeref if you are now setting running to >false earlier? Maybe not. I did try it without this wakeref and that passes too. > >And if we do, what about moving this entire block to inside the >existing if (wakeref) ?! Yes, looks like I could move it inside the existing wakeref check block, but I think I will drop this check since running is being set to false in the gt_park code path. > >> u64 clk = guc->timestamp.gt_stamp - stats->start_gt_clk; >> >> total += intel_gt_clock_interval_to_ns(gt, clk); >> @@ -1469,6 +1469,19 @@ static void __reset_guc_busyness_stats(struct intel_guc *guc) >> spin_unlock_irqrestore(&guc->timestamp.lock, flags); >> } >> >> +static void __update_guc_busyness_running_state(struct intel_guc *guc) >> +{ >> + struct intel_gt *gt = guc_to_gt(guc); >> + struct intel_engine_cs *engine; >> + enum intel_engine_id id; >> + unsigned long flags; >> + >> + spin_lock_irqsave(&guc->timestamp.lock, flags); >> + for_each_engine(engine, gt, id) >> + engine->stats.guc.running = false; >> + spin_unlock_irqrestore(&guc->timestamp.lock, flags); >> +} >> + >> static void __update_guc_busyness_stats(struct intel_guc *guc) >> { >> struct intel_gt *gt = guc_to_gt(guc); >> @@ -1619,6 +1632,9 @@ void intel_guc_busyness_park(struct intel_gt *gt) >> if (!guc_submission_initialized(guc)) >> return; >> >> + /* Assume no engines are running and set running state to false */ >> + __update_guc_busyness_running_state(guc); >> + > >Why not to move the entire __reset_guc_busyness_stats earlier then? Not sure what you mean by __reset_guc_busyness_stats because that is only called when reset is in progress. Do you mean __update_guc_busyness_stats()? Only the running state needs to be updated for every gt_park. Updates to other stats can be throttled based on the jiffies code in intel_guc_busyness_park(). Thanks, Umesh > >> /* >> * There is a race with suspend flow where the worker runs after suspend >> * and causes an unclaimed register access warning. Cancel the worker >> -- >> 2.34.1 >> ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] i915/pmu: Fix zero delta busyness issue 2025-01-21 23:58 ` Umesh Nerlige Ramappa @ 2025-01-22 10:12 ` Rodrigo Vivi 0 siblings, 0 replies; 6+ messages in thread From: Rodrigo Vivi @ 2025-01-22 10:12 UTC (permalink / raw) To: Umesh Nerlige Ramappa; +Cc: intel-gfx, John.C.Harrison On Tue, Jan 21, 2025 at 03:58:03PM -0800, Umesh Nerlige Ramappa wrote: > On Tue, Jan 21, 2025 at 06:10:34PM -0500, Rodrigo Vivi wrote: > > On Tue, Jan 21, 2025 at 02:25:57PM -0800, Umesh Nerlige Ramappa wrote: > > > > drm/i915/pmu as tag please... > > will do > > > > > > When running igt@gem_exec_balancer@individual for multiple iterations, > > > it is seen that the delta busyness returned by PMU is 0. The issue stems > > > from a combination of 2 implementation specific details: > > > > > > 1) gt_park is throttling __update_guc_busyness_stats() so that it does > > > not hog PCI bandwidth for some use cases. (Ref: 59bcdb564b3ba) > > > > > > 2) busyness implementation always returns monotonically increasing > > > counters. (Ref: cf907f6d29421) > > > > > > If an application queried an engine while it was active, > > > engine->stats.guc.running is set to true. Following that, if all PM > > > wakeref's are released, then gt is parked. At this time the throttling > > > of __update_guc_busyness_stats() may result in a missed update to the > > > running state of the engine (due to (1) above). This means subsequent > > > calls to guc_engine_busyness() will think that the engine is still > > > running and they will keep updating the cached counter (stats->total). > > > This results in an inflated cached counter. > > > > > > Later when the application runs a workload and queries for busyness, we > > > return the cached value since it is larger than the actual value (due to > > > (2) above) > > > > > > All subsequent queries will return the same large (inflated) value, so > > > the application sees a delta busyness of zero. > > > > > > In order to fix the issue, > > > - reset the running state of engines in busyness_park outside of the > > > throttling code. > > > - when busyness is queried and PM wakeref is not active, do not > > > calculate active engine time since we do not expect engines to be > > > active without a wakeref. > > > > > > Closes: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13366 > > > Fixes: cf907f6d2942 ("i915/guc: Ensure busyness counter increases motonically") > > > Signed-off-by: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com> > > > --- > > > .../gpu/drm/i915/gt/uc/intel_guc_submission.c | 18 +++++++++++++++++- > > > 1 file changed, 17 insertions(+), 1 deletion(-) > > > > > > diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c b/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c > > > index 12f1ba7ca9c1..b7a831e1fc85 100644 > > > --- a/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c > > > +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c > > > @@ -1372,7 +1372,7 @@ static ktime_t guc_engine_busyness(struct intel_engine_cs *engine, ktime_t *now) > > > } > > > > > > total = intel_gt_clock_interval_to_ns(gt, stats->total_gt_clks); > > > - if (stats->running) { > > > + if (wakeref && stats->running) { > > > > do you really need to check this wakeref if you are now setting running to > > false earlier? > > Maybe not. I did try it without this wakeref and that passes too. > > > > > And if we do, what about moving this entire block to inside the > > existing if (wakeref) ?! > > Yes, looks like I could move it inside the existing wakeref check block, but > I think I will drop this check since running is being set to false in the > gt_park code path. > > > > > > u64 clk = guc->timestamp.gt_stamp - stats->start_gt_clk; > > > > > > total += intel_gt_clock_interval_to_ns(gt, clk); > > > @@ -1469,6 +1469,19 @@ static void __reset_guc_busyness_stats(struct intel_guc *guc) > > > spin_unlock_irqrestore(&guc->timestamp.lock, flags); > > > } > > > > > > +static void __update_guc_busyness_running_state(struct intel_guc *guc) > > > +{ > > > + struct intel_gt *gt = guc_to_gt(guc); > > > + struct intel_engine_cs *engine; > > > + enum intel_engine_id id; > > > + unsigned long flags; > > > + > > > + spin_lock_irqsave(&guc->timestamp.lock, flags); > > > + for_each_engine(engine, gt, id) > > > + engine->stats.guc.running = false; > > > + spin_unlock_irqrestore(&guc->timestamp.lock, flags); > > > +} > > > + > > > static void __update_guc_busyness_stats(struct intel_guc *guc) > > > { > > > struct intel_gt *gt = guc_to_gt(guc); > > > @@ -1619,6 +1632,9 @@ void intel_guc_busyness_park(struct intel_gt *gt) > > > if (!guc_submission_initialized(guc)) > > > return; > > > > > > + /* Assume no engines are running and set running state to false */ > > > + __update_guc_busyness_running_state(guc); > > > + > > > > Why not to move the entire __reset_guc_busyness_stats earlier then? > > Not sure what you mean by __reset_guc_busyness_stats because that is only > called when reset is in progress. > > Do you mean __update_guc_busyness_stats()? > > Only the running state needs to be updated for every gt_park. Updates to > other stats can be throttled based on the jiffies code in > intel_guc_busyness_park(). ah okay then, please ignore me in this last point... > > Thanks, > Umesh > > > > > > /* > > > * There is a race with suspend flow where the worker runs after suspend > > > * and causes an unclaimed register access warning. Cancel the worker > > > -- > > > 2.34.1 > > > ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ i915.CI.BAT: success for i915/pmu: Fix zero delta busyness issue (rev2) 2025-01-21 22:25 [PATCH] i915/pmu: Fix zero delta busyness issue Umesh Nerlige Ramappa 2025-01-21 23:10 ` Rodrigo Vivi @ 2025-01-22 9:54 ` Patchwork 2025-01-23 14:06 ` ✗ i915.CI.Full: failure " Patchwork 2 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2025-01-22 9:54 UTC (permalink / raw) To: Umesh Nerlige Ramappa; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 7939 bytes --] == Series Details == Series: i915/pmu: Fix zero delta busyness issue (rev2) URL : https://patchwork.freedesktop.org/series/143815/ State : success == Summary == CI Bug Log - changes from CI_DRM_15999 -> Patchwork_143815v2 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/index.html Participating hosts (42 -> 41) ------------------------------ Additional (1): fi-pnv-d510 Missing (2): bat-rpls-4 fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_143815v2 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_module_load@load: - fi-pnv-d510: NOTRUN -> [ABORT][1] ([i915#13203]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/fi-pnv-d510/igt@i915_module_load@load.html * igt@i915_pm_rpm@module-reload: - bat-dg1-7: [PASS][2] -> [FAIL][3] ([i915#13401]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/bat-dg1-7/igt@i915_pm_rpm@module-reload.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/bat-dg1-7/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live: - bat-arlh-3: [PASS][4] -> [DMESG-FAIL][5] ([i915#12061] / [i915#12435]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/bat-arlh-3/igt@i915_selftest@live.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/bat-arlh-3/igt@i915_selftest@live.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][6] -> [DMESG-FAIL][7] ([i915#12061]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/bat-arlh-3/igt@i915_selftest@live@workarounds.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/bat-arlh-3/igt@i915_selftest@live@workarounds.html - bat-arls-5: [PASS][8] -> [DMESG-FAIL][9] ([i915#12061]) +1 other test dmesg-fail [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/bat-arls-5/igt@i915_selftest@live@workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/bat-arls-5/igt@i915_selftest@live@workarounds.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: [PASS][10] -> [SKIP][11] ([i915#9197]) +3 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html #### Possible fixes #### * igt@dmabuf@all-tests: - bat-apl-1: [INCOMPLETE][12] ([i915#12904]) -> [PASS][13] +1 other test pass [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/bat-apl-1/igt@dmabuf@all-tests.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/bat-apl-1/igt@dmabuf@all-tests.html * igt@fbdev@info: - {bat-arls-6}: [SKIP][14] ([i915#1849]) -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/bat-arls-6/igt@fbdev@info.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/bat-arls-6/igt@fbdev@info.html * igt@fbdev@nullptr: - {bat-arls-6}: [SKIP][16] ([i915#11191]) -> [PASS][17] +3 other tests pass [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/bat-arls-6/igt@fbdev@nullptr.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/bat-arls-6/igt@fbdev@nullptr.html * igt@i915_selftest@live@memory_region: - {bat-arls-6}: [INCOMPLETE][18] -> [PASS][19] +1 other test pass [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/bat-arls-6/igt@i915_selftest@live@memory_region.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/bat-arls-6/igt@i915_selftest@live@memory_region.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [DMESG-FAIL][20] ([i915#12061]) -> [PASS][21] +1 other test pass [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/bat-mtlp-6/igt@i915_selftest@live@workarounds.html - {bat-arls-6}: [DMESG-FAIL][22] ([i915#12061]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/bat-arls-6/igt@i915_selftest@live@workarounds.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/bat-arls-6/igt@i915_selftest@live@workarounds.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - {bat-arls-6}: [SKIP][24] ([i915#13558]) -> [PASS][25] +13 other tests pass [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/bat-arls-6/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/bat-arls-6/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt@kms_flip@basic-flip-vs-wf_vblank: - {bat-arls-6}: [SKIP][26] ([i915#3637]) -> [PASS][27] +3 other tests pass [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/bat-arls-6/igt@kms_flip@basic-flip-vs-wf_vblank.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/bat-arls-6/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_frontbuffer_tracking@basic: - {bat-arls-6}: [SKIP][28] ([i915#4342] / [i915#5354]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/bat-arls-6/igt@kms_frontbuffer_tracking@basic.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/bat-arls-6/igt@kms_frontbuffer_tracking@basic.html * igt@prime_vgem@basic-fence-flip: - {bat-arls-6}: [SKIP][30] ([i915#3708]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/bat-arls-6/igt@prime_vgem@basic-fence-flip.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/bat-arls-6/igt@prime_vgem@basic-fence-flip.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10202]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10202 [i915#11191]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11191 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12435 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#13203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13203 [i915#13401]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13401 [i915#13558]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13558 [i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#4342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4342 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197 [i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886 Build changes ------------- * Linux: CI_DRM_15999 -> Patchwork_143815v2 CI-20190529: 20190529 CI_DRM_15999: 71b6a6ef0f37fe2d812dc2bd6d4b0d2d52096d07 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8205: f3225e64a7c52e515ab7ec14e6e3f63679718928 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_143815v2: 71b6a6ef0f37fe2d812dc2bd6d4b0d2d52096d07 @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/index.html [-- Attachment #2: Type: text/html, Size: 9042 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ i915.CI.Full: failure for i915/pmu: Fix zero delta busyness issue (rev2) 2025-01-21 22:25 [PATCH] i915/pmu: Fix zero delta busyness issue Umesh Nerlige Ramappa 2025-01-21 23:10 ` Rodrigo Vivi 2025-01-22 9:54 ` ✓ i915.CI.BAT: success for i915/pmu: Fix zero delta busyness issue (rev2) Patchwork @ 2025-01-23 14:06 ` Patchwork 2 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2025-01-23 14:06 UTC (permalink / raw) To: Umesh Nerlige Ramappa; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 97623 bytes --] == Series Details == Series: i915/pmu: Fix zero delta busyness issue (rev2) URL : https://patchwork.freedesktop.org/series/143815/ State : failure == Summary == CI Bug Log - changes from CI_DRM_15999_full -> Patchwork_143815v2_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_143815v2_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_143815v2_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (11 -> 11) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_143815v2_full: ### IGT changes ### #### Possible regressions #### * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-dg2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-dg2-10/igt@kms_plane_alpha_blend@constant-alpha-max.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-8/igt@kms_plane_alpha_blend@constant-alpha-max.html Known issues ------------ Here are the changes found in Patchwork_143815v2_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][3] ([i915#8411]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-3/igt@api_intel_bb@object-reloc-keep-cache.html * igt@debugfs_test@basic-hwmon: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#9318]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@debugfs_test@basic-hwmon.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#11078]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@device_reset@unbind-cold-reset-rebind.html - shard-dg2: NOTRUN -> [SKIP][6] ([i915#11078]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@device_reset@unbind-cold-reset-rebind.html * igt@device_reset@unbind-reset-rebind: - shard-tglu: [PASS][7] -> [ABORT][8] ([i915#12817] / [i915#5507]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-tglu-2/igt@device_reset@unbind-reset-rebind.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-3/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@all-busy-idle-check-all: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#8414]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-4/igt@drm_fdinfo@all-busy-idle-check-all.html * igt@drm_fdinfo@busy-idle-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) +6 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-14/igt@drm_fdinfo@busy-idle-check-all@vcs1.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-14/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][12] ([i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-5/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][13] ([i915#13008]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-3/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_close_race@multigpu-basic-process: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#7697]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-13/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#6335]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@engines-queued: - shard-snb: NOTRUN -> [SKIP][16] ([i915#1099]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-snb5/igt@gem_ctx_persistence@engines-queued.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#280]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@gem_ctx_sseu@engines.html - shard-dg2: NOTRUN -> [SKIP][18] ([i915#280]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@gem_ctx_sseu@engines.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#4812]) +3 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-13/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#4812]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#4525]) +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-1/igt@gem_exec_balancer@parallel-bb-first.html - shard-tglu: NOTRUN -> [SKIP][22] ([i915#4525]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-9/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_capture@capture-invisible: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#6334]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-3/igt@gem_exec_capture@capture-invisible.html - shard-tglu-1: NOTRUN -> [SKIP][24] ([i915#6334]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-1/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][25] ([i915#11965]) +4 other tests fail [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_flush@basic-uc-rw-default: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#3539] / [i915#4852]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-14/igt@gem_exec_flush@basic-uc-rw-default.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-4/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_reloc@basic-cpu-wc: - shard-dg1: NOTRUN -> [SKIP][28] ([i915#3281]) +5 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-14/igt@gem_exec_reloc@basic-cpu-wc.html * igt@gem_exec_reloc@basic-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#3281]) +8 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#3281]) +14 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#7276]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-3/igt@gem_exec_schedule@semaphore-power.html - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4537] / [i915#4812]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg2: NOTRUN -> [ABORT][33] ([i915#7975] / [i915#8213]) +1 other test abort [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-4/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#4860]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-13/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4860]) +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#2190]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@gem_huc_copy@huc-copy.html * igt@gem_linear_blits@basic: - shard-rkl: [PASS][37] -> [DMESG-WARN][38] ([i915#12964]) +14 other tests dmesg-warn [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-rkl-4/igt@gem_linear_blits@basic.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-3/igt@gem_linear_blits@basic.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#12193]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#4565]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-13/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][41] ([i915#4613]) +5 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-3/igt@gem_lmem_swapping@heavy-verify-random-ccs.html - shard-tglu-1: NOTRUN -> [SKIP][42] ([i915#4613]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@parallel-multi: - shard-tglu: NOTRUN -> [SKIP][43] ([i915#4613]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-2/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_mmap_gtt@basic-read: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4077]) +10 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@gem_mmap_gtt@basic-read.html * igt@gem_mmap_gtt@basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#4077]) +8 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-12/igt@gem_mmap_gtt@basic-small-copy-odd.html * igt@gem_mmap_offset@clear: - shard-rkl: NOTRUN -> [DMESG-WARN][46] ([i915#12964]) +8 other tests dmesg-warn [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-6/igt@gem_mmap_offset@clear.html * igt@gem_mmap_wc@invalid-flags: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4083]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-1/igt@gem_mmap_wc@invalid-flags.html * igt@gem_mmap_wc@read: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4083]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-14/igt@gem_mmap_wc@read.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3282]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3282]) +4 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-12/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#3282]) +11 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-regular-buffer: - shard-rkl: NOTRUN -> [TIMEOUT][52] ([i915#12917] / [i915#12964]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-3/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@fail-invalid-protected-context: - shard-rkl: NOTRUN -> [TIMEOUT][53] ([i915#12964]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-6/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4270]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4270]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-12/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#5190] / [i915#8428]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4079]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@gem_set_tiling_vs_gtt.html * igt@gem_tiled_swapping@non-threaded: - shard-rkl: NOTRUN -> [FAIL][58] ([i915#13557]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@gem_tiled_swapping@non-threaded.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#3297] / [i915#4880]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html - shard-dg2: NOTRUN -> [SKIP][60] ([i915#3297] / [i915#4880]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-4/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-tglu-1: NOTRUN -> [SKIP][61] ([i915#3297]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-1/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#3297] / [i915#4958]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-13/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#3297]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-12/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#3297]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-1/igt@gem_userptr_blits@unsync-unmap-cycles.html - shard-tglu: NOTRUN -> [SKIP][65] ([i915#3297]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-9/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen9_exec_parse@bb-chained: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#2527]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-13/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-large: - shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#2527] / [i915#2856]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-1/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-oversize: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#2527] / [i915#2856]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-2/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@secure-batches: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#2856]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-1/igt@gen9_exec_parse@secure-batches.html * igt@gen9_exec_parse@shadow-peek: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#2527]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-1/igt@gen9_exec_parse@shadow-peek.html * igt@i915_module_load@reload-no-display: - shard-dg2: [PASS][71] -> [ABORT][72] ([i915#13571]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-dg2-6/igt@i915_module_load@reload-no-display.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-1/igt@i915_module_load@reload-no-display.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: NOTRUN -> [ABORT][73] ([i915#9820]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [DMESG-WARN][74] ([i915#10887] / [i915#13475]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#6412]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-3/igt@i915_module_load@resize-bar.html - shard-tglu-1: NOTRUN -> [SKIP][76] ([i915#6412]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-1/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#8399]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-dg1: [PASS][78] -> [FAIL][79] ([i915#12739] / [i915#3591]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [PASS][80] -> [FAIL][81] ([i915#3591]) +1 other test fail [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-13/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rps@thresholds-idle: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#11681]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@i915_pm_rps@thresholds-idle.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#11681]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-12/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_query@hwconfig_table: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#6245]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-13/igt@i915_query@hwconfig_table.html * igt@i915_suspend@fence-restore-untiled: - shard-rkl: NOTRUN -> [DMESG-FAIL][85] ([i915#12964]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-3/igt@i915_suspend@fence-restore-untiled.html * igt@kms_addfb_basic@unused-offsets: - shard-dg1: [PASS][86] -> [DMESG-WARN][87] ([i915#4423]) +1 other test dmesg-warn [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-dg1-17/igt@kms_addfb_basic@unused-offsets.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-12/igt@kms_addfb_basic@unused-offsets.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-3: - shard-dg1: [PASS][88] -> [FAIL][89] ([i915#12518]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-dg1-13/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-3.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-12/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-hdmi-a-3.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#8709]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-3/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-b-hdmi-a-2-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y-rc-ccs-cc: - shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#8709]) +3 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-1/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc-ccs-cc: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#8709]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-17/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc-ccs-cc.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-tglu: [PASS][93] -> [FAIL][94] ([i915#11808]) +1 other test fail [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#1769] / [i915#3555]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-8bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#5286]) +3 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-3/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#5286]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-12/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#5286]) +8 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html - shard-tglu-1: NOTRUN -> [SKIP][99] ([i915#5286]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#4538] / [i915#5286]) +4 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#3638]) +4 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][102] ([i915#3638]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-13/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4538] / [i915#5190]) +8 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#4538]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#6095]) +9 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#12313]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-13/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#10307] / [i915#6095]) +91 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#6095]) +101 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#12313]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#12805]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][111] ([i915#12805]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#6095]) +184 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-13/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#6095]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][114] ([i915#6095]) +49 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][115] ([i915#12313]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][116] ([i915#12313]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-9/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#3742]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-14/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4087]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-dp-4.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#11151] / [i915#7828]) +5 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-14/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_edid@hdmi-edid-read: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#11151] / [i915#7828]) +11 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_chamelium_frames@dp-crc-single: - shard-tglu-1: NOTRUN -> [SKIP][121] ([i915#11151] / [i915#7828]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#11151] / [i915#7828]) +8 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#11151] / [i915#7828]) +6 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-3/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_color@deep-color: - shard-tglu-1: NOTRUN -> [SKIP][124] ([i915#3555] / [i915#9979]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-1/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#3116] / [i915#3299]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#3116]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-3/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#3299]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-1/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][128] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-9/igt@kms_content_protection@legacy.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][129] ([i915#7173]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-10/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#7118] / [i915#9424]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_content_protection@type1.html - shard-rkl: NOTRUN -> [SKIP][131] ([i915#7118] / [i915#9424]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#7116] / [i915#9424]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-13/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#3555]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-14/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu: NOTRUN -> [SKIP][134] ([i915#3555]) +3 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#13049]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#13049]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-12/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#3555]) +9 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#13049]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#4103]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][140] +30 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#13046] / [i915#5354]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg1: NOTRUN -> [SKIP][142] ([i915#4103] / [i915#4213]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-12/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#4103]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_cursor_legacy@short-flip-after-cursor-toggle: - shard-glk: [PASS][144] -> [FAIL][145] ([i915#2346]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-glk3/igt@kms_cursor_legacy@short-flip-after-cursor-toggle.html [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-glk8/igt@kms_cursor_legacy@short-flip-after-cursor-toggle.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#8588]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#3804]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev: - shard-dg1: NOTRUN -> [SKIP][148] ([i915#1257]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-14/igt@kms_dp_aux_dev.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#12402]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-1/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu: NOTRUN -> [SKIP][150] ([i915#12402]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-9/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-with-bpc: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#3555] / [i915#3840]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-12/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#3555] / [i915#3840]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_dsc@dsc-with-formats.html - shard-rkl: NOTRUN -> [SKIP][153] ([i915#3555] / [i915#3840]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#3840] / [i915#9053]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#3469]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-2/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#3955]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#1839]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@dp-mst: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#9337]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-12/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#658]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][160] ([i915#658]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#9934]) +13 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-1/igt@kms_flip@2x-flip-vs-dpms.html - shard-tglu: NOTRUN -> [SKIP][162] ([i915#3637]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-9/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#8381]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-14/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-plain-flip: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#9934]) +4 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-12/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#3637]) +3 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#9934]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][167] ([i915#11989]) +2 other tests fail [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a2.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-snb: [PASS][168] -> [FAIL][169] ([i915#11989]) +3 other tests fail [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-snb5/igt@kms_flip@flip-vs-blocking-wf-vblank.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-snb1/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2: - shard-glk: [PASS][170] -> [FAIL][171] ([i915#13027]) +2 other tests fail [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-glk4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-glk2/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#2672] / [i915#3555]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-dg1: NOTRUN -> [SKIP][173] ([i915#2672] / [i915#3555]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#2587] / [i915#2672]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-14/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#2587] / [i915#2672]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg1: NOTRUN -> [SKIP][176] ([i915#2587] / [i915#2672] / [i915#3555]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#2587] / [i915#2672] / [i915#3555]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#2672]) +5 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html - shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#2587] / [i915#2672]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#2672]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#2672] / [i915#3555]) +5 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#1825]) +57 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#5354]) +26 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][185] +21 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-dg1: NOTRUN -> [SKIP][186] ([i915#5439]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#10055]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][188] +33 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#8708]) +13 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#3023]) +34 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#3458]) +11 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][192] ([i915#8708]) +9 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#3458]) +14 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#6118]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@bpc-switch: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#3555] / [i915#8228]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@brightness-with-hdr: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#1187] / [i915#12713]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-toggle: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#8228]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-14/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-dpms: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#8228]) +3 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-1/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-tglu: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#8228]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-2/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#12388]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-5/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][201] ([i915#12394] / [i915#13522]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-9/igt@kms_joiner@basic-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][202] ([i915#12394] / [i915#13522]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-1/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#4816]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-rkl: NOTRUN -> [SKIP][204] ([i915#4816]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#6301]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-3/igt@kms_panel_fitting@atomic-fastset.html - shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#6301]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-1/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][207] +12 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-glk: [PASS][208] -> [INCOMPLETE][209] ([i915#13026]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-glk9/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-glk3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#13046] / [i915#5354] / [i915#9423]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#12247] / [i915#9423]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#12247]) +3 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#12247]) +8 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][214] ([i915#12247]) +21 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#12247]) +9 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-tglu: NOTRUN -> [SKIP][216] ([i915#12247]) +4 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-9/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#12247] / [i915#3555]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-12/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#12247] / [i915#6953]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-a: - shard-snb: NOTRUN -> [SKIP][219] +66 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-snb5/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-a.html * igt@kms_pm_backlight@bad-brightness: - shard-dg1: NOTRUN -> [SKIP][220] ([i915#5354]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-13/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#9685]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-tglu: NOTRUN -> [SKIP][222] ([i915#9685]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-3/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#9685]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#3828]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_pm_dc@dc5-retention-flops.html - shard-rkl: NOTRUN -> [SKIP][225] ([i915#3828]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [PASS][226] -> [SKIP][227] ([i915#9519]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][228] ([i915#9519]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#9519]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#9519]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_prime@basic-modeset-hybrid: - shard-tglu: NOTRUN -> [SKIP][231] ([i915#6524]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-2/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#6524] / [i915#6805]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-1/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][233] ([i915#11520]) +5 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-14/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#11520]) +7 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf: - shard-tglu-1: NOTRUN -> [SKIP][235] ([i915#11520]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][236] ([i915#11520]) +3 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-2/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#11520]) +13 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-5/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][238] ([i915#11520]) +2 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-snb5/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#9683]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-1/igt@kms_psr2_su@page_flip-p010.html - shard-tglu: NOTRUN -> [SKIP][240] ([i915#9683]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-9/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-cursor-plane-move: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#1072] / [i915#9732]) +17 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-4/igt@kms_psr@fbc-psr-cursor-plane-move.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#9732]) +5 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-1/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@pr-basic: - shard-tglu: NOTRUN -> [SKIP][243] ([i915#9732]) +13 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-2/igt@kms_psr@pr-basic.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#1072] / [i915#9732]) +30 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-5/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#1072] / [i915#9732]) +14 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-13/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#9685]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-12/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#4235]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-1/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][248] ([i915#5289]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-14/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#5289]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#12755]) +2 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free: - shard-dg2: NOTRUN -> [ABORT][251] ([i915#13179]) +1 other test abort [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html * igt@kms_setmode@basic: - shard-dg1: [PASS][252] -> [FAIL][253] ([i915#5465]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-dg1-17/igt@kms_setmode@basic.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-12/igt@kms_setmode@basic.html * igt@kms_setmode@basic-clone-single-crtc: - shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#3555]) +2 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@basic@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][255] ([i915#5465]) +1 other test fail [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-7/igt@kms_setmode@basic@pipe-a-hdmi-a-1.html * igt@kms_setmode@basic@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][256] ([i915#5465]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-12/igt@kms_setmode@basic@pipe-a-hdmi-a-3.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#3555]) +5 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#8623]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - shard-mtlp: [PASS][259] -> [FAIL][260] ([i915#9196]) +1 other test fail [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html * igt@kms_vrr@flip-basic-fastset: - shard-dg1: NOTRUN -> [SKIP][261] ([i915#9906]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-14/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#11920]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-3/igt@kms_vrr@lobf.html - shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#11920]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-1/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-tglu: NOTRUN -> [SKIP][264] ([i915#9906]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-2/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#9906]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#2437]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-4/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#2437] / [i915#9412]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#2437]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][269] ([i915#2437]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-13/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-tglu: NOTRUN -> [SKIP][270] ([i915#2437] / [i915#9412]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-3/igt@kms_writeback@writeback-pixel-formats.html - shard-dg2: NOTRUN -> [SKIP][271] ([i915#2437] / [i915#9412]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@unprivileged-single-ctx-counters: - shard-dg1: NOTRUN -> [SKIP][272] ([i915#2433]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-12/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#8850]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@perf_pmu@cpu-hotplug.html - shard-tglu: NOTRUN -> [SKIP][274] ([i915#8850]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-3/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][275] ([i915#8516]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-13/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-tglu: NOTRUN -> [SKIP][276] ([i915#8516]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-2/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [WARN][277] ([i915#9351]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@prime_mmap@test_aperture_limit.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [CRASH][278] ([i915#9351]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][279] ([i915#3291] / [i915#3708]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-1/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][280] ([i915#3708]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-12/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#3708]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@prime_vgem@fence-read-hang.html * igt@prime_vgem@fence-write-hang: - shard-tglu: NOTRUN -> [SKIP][282] +45 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-9/igt@prime_vgem@fence-write-hang.html - shard-rkl: NOTRUN -> [SKIP][283] ([i915#3708]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-1/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#9917]) +2 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-7/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg1: NOTRUN -> [SKIP][285] ([i915#9917]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-14/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#9917]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-3/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [TIMEOUT][287] ([i915#5493]) -> [PASS][288] +1 other test pass [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [ABORT][289] ([i915#12817] / [i915#9820]) -> [PASS][290] [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [INCOMPLETE][291] ([i915#12455]) -> [PASS][292] +1 other test pass [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-1/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-3: - shard-dg1: [FAIL][293] ([i915#12518]) -> [PASS][294] [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-dg1-13/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-3.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-12/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-3.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-glk: [FAIL][295] ([i915#12238]) -> [PASS][296] [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-glk6/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs: - shard-glk: [FAIL][297] ([i915#11859]) -> [PASS][298] [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-glk8/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-glk6/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing@2x-outputs.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3: - shard-dg2: [FAIL][299] ([i915#5956]) -> [PASS][300] +1 other test pass [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][301] ([i915#5138]) -> [PASS][302] [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: [DMESG-WARN][303] ([i915#12964]) -> [PASS][304] +1 other test pass [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-rkl-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-tglu: [FAIL][305] -> [PASS][306] +10 other tests pass [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-128x42.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2: - shard-rkl: [FAIL][307] ([i915#13566]) -> [PASS][308] +3 other tests pass [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html * igt@kms_flip@dpms-off-confusion: - shard-glk: [DMESG-WARN][309] ([i915#118]) -> [PASS][310] +1 other test pass [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-glk8/igt@kms_flip@dpms-off-confusion.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-glk6/igt@kms_flip@dpms-off-confusion.html * igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1: - shard-tglu: [FAIL][311] ([i915#11989]) -> [PASS][312] +1 other test pass [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-tglu-3/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-7/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html * igt@kms_flip@flip-vs-suspend: - shard-dg1: [DMESG-WARN][313] ([i915#4423]) -> [PASS][314] +2 other tests pass [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-dg1-12/igt@kms_flip@flip-vs-suspend.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-17/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@modeset-vs-vblank-race-interruptible: - shard-tglu: [FAIL][315] ([i915#10826]) -> [PASS][316] [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-tglu-7/igt@kms_flip@modeset-vs-vblank-race-interruptible.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-4/igt@kms_flip@modeset-vs-vblank-race-interruptible.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2: [FAIL][317] ([i915#6880]) -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: [SKIP][319] ([i915#3555] / [i915#8228]) -> [PASS][320] [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-dg2-4/igt@kms_hdr@invalid-metadata-sizes.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][321] ([i915#4281]) -> [PASS][322] [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-tglu-4/igt@kms_pm_dc@dc9-dpms.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-10/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][323] ([i915#9519]) -> [PASS][324] +2 other tests pass [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@perf@blocking@0-rcs0: - shard-tglu: [FAIL][325] ([i915#10538]) -> [PASS][326] +1 other test pass [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-tglu-10/igt@perf@blocking@0-rcs0.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-9/igt@perf@blocking@0-rcs0.html * igt@perf_pmu@render-node-busy: - shard-dg1: [FAIL][327] ([i915#4349]) -> [PASS][328] +1 other test pass [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-dg1-12/igt@perf_pmu@render-node-busy.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-17/igt@perf_pmu@render-node-busy.html * igt@perf_pmu@render-node-busy@rcs0: - shard-mtlp: [FAIL][329] ([i915#4349]) -> [PASS][330] +2 other tests pass [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-mtlp-1/igt@perf_pmu@render-node-busy@rcs0.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-mtlp-4/igt@perf_pmu@render-node-busy@rcs0.html #### Warnings #### * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [DMESG-WARN][331] ([i915#13475]) -> [ABORT][332] ([i915#13493] / [i915#9820]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [DMESG-WARN][333] ([i915#13475]) -> [ABORT][334] ([i915#10131] / [i915#10887] / [i915#13493] / [i915#9820]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: [INCOMPLETE][335] -> [INCOMPLETE][336] ([i915#7443]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-tglu-7/igt@i915_suspend@basic-s3-without-i915.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-tglu-4/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][337] ([i915#5138]) -> [DMESG-FAIL][338] ([i915#11627] / [i915#13314]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][339] ([i915#9424]) -> [SKIP][340] ([i915#9433]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-dg1-18/igt@kms_content_protection@mei-interface.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg1-13/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: [SKIP][341] ([i915#7118]) -> [TIMEOUT][342] ([i915#7173]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-dg2-5/igt@kms_content_protection@srm.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-10/igt@kms_content_protection@srm.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: [SKIP][343] ([i915#10433] / [i915#3458]) -> [SKIP][344] ([i915#3458]) +3 other tests skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][345] ([i915#3361]) -> [SKIP][346] ([i915#4281]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15999/shard-rkl-1/igt@kms_pm_dc@dc9-dpms.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_143815v2/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#160]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/160 [i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055 [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826 [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11627]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11627 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808 [i915#11859]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11859 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965 [i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12238]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12238 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#12402]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12402 [i915#12455]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12455 [i915#12518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12518 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12739 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13314 [i915#13475]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13475 [i915#13493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13493 [i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522 [i915#13557]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13557 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13571]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13571 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5507 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276 [i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8588 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806 [i915#8850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8850 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9351]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9351 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 [i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979 Build changes ------------- * Linux: CI_DRM_15999 -> Patchwork_143815v2 CI-20190529: 20190529 CI_DRM_15999: 71b6a6ef0f37fe2d812dc2bd6d4b0d2d52096d07 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_8205: f3225e64a7c52e515ab7ec14e6e3f63679718928 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_143815v2: 71b6a6ef0f37fe2d812dc2bd6d4b0d2d52096d07 @ 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_143815v2/index.html [-- Attachment #2: Type: text/html, Size: 119821 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-01-23 14:06 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-01-21 22:25 [PATCH] i915/pmu: Fix zero delta busyness issue Umesh Nerlige Ramappa 2025-01-21 23:10 ` Rodrigo Vivi 2025-01-21 23:58 ` Umesh Nerlige Ramappa 2025-01-22 10:12 ` Rodrigo Vivi 2025-01-22 9:54 ` ✓ i915.CI.BAT: success for i915/pmu: Fix zero delta busyness issue (rev2) Patchwork 2025-01-23 14:06 ` ✗ i915.CI.Full: failure " Patchwork
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.