* [Intel-gfx] [PATCH] drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read
@ 2023-07-03 15:08 Uros Bizjak
2023-07-04 7:28 ` Jani Nikula
` (7 more replies)
0 siblings, 8 replies; 12+ messages in thread
From: Uros Bizjak @ 2023-07-03 15:08 UTC (permalink / raw)
To: intel-gfx, dri-devel, linux-kernel
Cc: Uros Bizjak, Daniel Vetter, Rodrigo Vivi, David Airlie
Use local64_try_cmpxchg instead of local64_cmpxchg (*ptr, old, new) == old
in i915_pmu_event_read. x86 CMPXCHG instruction returns success in ZF flag,
so this change saves a compare after cmpxchg (and related move instruction
in front of cmpxchg).
Also, try_cmpxchg implicitly assigns old *ptr value to "old" when cmpxchg
fails. There is no need to re-read the value in the loop.
No functional change intended.
Cc: Jani Nikula <jani.nikula@linux.intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: David Airlie <airlied@gmail.com>
Cc: Daniel Vetter <daniel@ffwll.ch>
Signed-off-by: Uros Bizjak <ubizjak@gmail.com>
---
drivers/gpu/drm/i915/i915_pmu.c | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/i915/i915_pmu.c b/drivers/gpu/drm/i915/i915_pmu.c
index d35973b41186..108b675088ba 100644
--- a/drivers/gpu/drm/i915/i915_pmu.c
+++ b/drivers/gpu/drm/i915/i915_pmu.c
@@ -696,12 +696,11 @@ static void i915_pmu_event_read(struct perf_event *event)
event->hw.state = PERF_HES_STOPPED;
return;
}
-again:
- prev = local64_read(&hwc->prev_count);
- new = __i915_pmu_event_read(event);
- if (local64_cmpxchg(&hwc->prev_count, prev, new) != prev)
- goto again;
+ prev = local64_read(&hwc->prev_count);
+ do {
+ new = __i915_pmu_event_read(event);
+ } while (!local64_try_cmpxchg(&hwc->prev_count, &prev, new));
local64_add(new - prev, &event->count);
}
--
2.41.0
^ permalink raw reply related [flat|nested] 12+ messages in thread* Re: [Intel-gfx] [PATCH] drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read 2023-07-03 15:08 [Intel-gfx] [PATCH] drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read Uros Bizjak @ 2023-07-04 7:28 ` Jani Nikula 2023-07-04 8:05 ` Uros Bizjak 2023-07-06 18:48 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork ` (6 subsequent siblings) 7 siblings, 1 reply; 12+ messages in thread From: Jani Nikula @ 2023-07-04 7:28 UTC (permalink / raw) To: Uros Bizjak, intel-gfx, dri-devel, linux-kernel Cc: Uros Bizjak, Daniel Vetter, Rodrigo Vivi, David Airlie On Mon, 03 Jul 2023, Uros Bizjak <ubizjak@gmail.com> wrote: > Use local64_try_cmpxchg instead of local64_cmpxchg (*ptr, old, new) == old > in i915_pmu_event_read. x86 CMPXCHG instruction returns success in ZF flag, > so this change saves a compare after cmpxchg (and related move instruction > in front of cmpxchg). > > Also, try_cmpxchg implicitly assigns old *ptr value to "old" when cmpxchg > fails. There is no need to re-read the value in the loop. > > No functional change intended. > > Cc: Jani Nikula <jani.nikula@linux.intel.com> > Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> > Cc: David Airlie <airlied@gmail.com> > Cc: Daniel Vetter <daniel@ffwll.ch> > Signed-off-by: Uros Bizjak <ubizjak@gmail.com> > --- > drivers/gpu/drm/i915/i915_pmu.c | 9 ++++----- > 1 file changed, 4 insertions(+), 5 deletions(-) > > diff --git a/drivers/gpu/drm/i915/i915_pmu.c b/drivers/gpu/drm/i915/i915_pmu.c > index d35973b41186..108b675088ba 100644 > --- a/drivers/gpu/drm/i915/i915_pmu.c > +++ b/drivers/gpu/drm/i915/i915_pmu.c > @@ -696,12 +696,11 @@ static void i915_pmu_event_read(struct perf_event *event) > event->hw.state = PERF_HES_STOPPED; > return; > } > -again: > - prev = local64_read(&hwc->prev_count); > - new = __i915_pmu_event_read(event); > > - if (local64_cmpxchg(&hwc->prev_count, prev, new) != prev) > - goto again; > + prev = local64_read(&hwc->prev_count); > + do { > + new = __i915_pmu_event_read(event); > + } while (!local64_try_cmpxchg(&hwc->prev_count, &prev, new)); You could save everyone a lot of time by actually documenting what these functions do. Assume you don't know what local64_try_cmpxchg() does, and see how many calls you have to go through to figure it out. Because the next time I encounter this code or a patch like this, I'm probably going to have to do that again. To me, the old one was more readable. The optimization is meaningless to me if it's not quantified but reduces readability. BR, Jani. > > local64_add(new - prev, &event->count); > } -- Jani Nikula, Intel Open Source Graphics Center ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read 2023-07-04 7:28 ` Jani Nikula @ 2023-07-04 8:05 ` Uros Bizjak 2023-07-04 8:37 ` Jani Nikula 0 siblings, 1 reply; 12+ messages in thread From: Uros Bizjak @ 2023-07-04 8:05 UTC (permalink / raw) To: Jani Nikula Cc: intel-gfx, linux-kernel, dri-devel, Daniel Vetter, Rodrigo Vivi, David Airlie On Tue, Jul 4, 2023 at 9:28 AM Jani Nikula <jani.nikula@linux.intel.com> wrote: > > On Mon, 03 Jul 2023, Uros Bizjak <ubizjak@gmail.com> wrote: > > Use local64_try_cmpxchg instead of local64_cmpxchg (*ptr, old, new) == old > > in i915_pmu_event_read. x86 CMPXCHG instruction returns success in ZF flag, > > so this change saves a compare after cmpxchg (and related move instruction > > in front of cmpxchg). > > > > Also, try_cmpxchg implicitly assigns old *ptr value to "old" when cmpxchg > > fails. There is no need to re-read the value in the loop. > > > > No functional change intended. > > > > Cc: Jani Nikula <jani.nikula@linux.intel.com> > > Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> > > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > > Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> > > Cc: David Airlie <airlied@gmail.com> > > Cc: Daniel Vetter <daniel@ffwll.ch> > > Signed-off-by: Uros Bizjak <ubizjak@gmail.com> > > --- > > drivers/gpu/drm/i915/i915_pmu.c | 9 ++++----- > > 1 file changed, 4 insertions(+), 5 deletions(-) > > > > diff --git a/drivers/gpu/drm/i915/i915_pmu.c b/drivers/gpu/drm/i915/i915_pmu.c > > index d35973b41186..108b675088ba 100644 > > --- a/drivers/gpu/drm/i915/i915_pmu.c > > +++ b/drivers/gpu/drm/i915/i915_pmu.c > > @@ -696,12 +696,11 @@ static void i915_pmu_event_read(struct perf_event *event) > > event->hw.state = PERF_HES_STOPPED; > > return; > > } > > -again: > > - prev = local64_read(&hwc->prev_count); > > - new = __i915_pmu_event_read(event); > > > > - if (local64_cmpxchg(&hwc->prev_count, prev, new) != prev) > > - goto again; > > + prev = local64_read(&hwc->prev_count); > > + do { > > + new = __i915_pmu_event_read(event); > > + } while (!local64_try_cmpxchg(&hwc->prev_count, &prev, new)); > > You could save everyone a lot of time by actually documenting what these > functions do. Assume you don't know what local64_try_cmpxchg() does, and > see how many calls you have to go through to figure it out. These functions are documented in Documentation/atomic_t.txt (under "RMW ops:" section), and the difference is explained in a separate section "CMPXCHG vs TRY_CMPXCGS" in the same file. Uros. > Because the next time I encounter this code or a patch like this, I'm > probably going to have to do that again. > > To me, the old one was more readable. The optimization is meaningless to > me if it's not quantified but reduces readability. > > > BR, > Jani. > > > > > > local64_add(new - prev, &event->count); > > } > > -- > Jani Nikula, Intel Open Source Graphics Center ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read 2023-07-04 8:05 ` Uros Bizjak @ 2023-07-04 8:37 ` Jani Nikula 2023-07-04 9:25 ` Uros Bizjak 0 siblings, 1 reply; 12+ messages in thread From: Jani Nikula @ 2023-07-04 8:37 UTC (permalink / raw) To: Uros Bizjak Cc: intel-gfx, linux-kernel, dri-devel, Daniel Vetter, Rodrigo Vivi, David Airlie On Tue, 04 Jul 2023, Uros Bizjak <ubizjak@gmail.com> wrote: > On Tue, Jul 4, 2023 at 9:28 AM Jani Nikula <jani.nikula@linux.intel.com> wrote: >> You could save everyone a lot of time by actually documenting what these >> functions do. Assume you don't know what local64_try_cmpxchg() does, and >> see how many calls you have to go through to figure it out. > > These functions are documented in Documentation/atomic_t.txt (under > "RMW ops:" section), and the difference is explained in a separate > section "CMPXCHG vs TRY_CMPXCGS" in the same file. Thanks, but *sigh*. No kernel-doc above the functions, not even a regular comment referencing atomic_t.txt. $ git grep local.*_try -- Documentation [nothing] BR, Jani. -- "But the plans were on display..." "On display? I eventually had to go down to the cellar to find them." "That's the display department." "With a flashlight." "Ah, well, the lights had probably gone." "So had the stairs." "But look, you found the notice, didn't you?" "Yes," said Arthur, "yes I did. It was on display in the bottom of a locked filing cabinet stuck in a disused lavatory with a sign on the door saying 'Beware of the Leopard'." - Douglas Adams, The Hitchhiker's Guide to the Galaxy -- Jani Nikula, Intel Open Source Graphics Center ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read 2023-07-04 8:37 ` Jani Nikula @ 2023-07-04 9:25 ` Uros Bizjak 0 siblings, 0 replies; 12+ messages in thread From: Uros Bizjak @ 2023-07-04 9:25 UTC (permalink / raw) To: Jani Nikula Cc: intel-gfx, linux-kernel, dri-devel, Daniel Vetter, Rodrigo Vivi, David Airlie On Tue, Jul 4, 2023 at 10:37 AM Jani Nikula <jani.nikula@linux.intel.com> wrote: > > On Tue, 04 Jul 2023, Uros Bizjak <ubizjak@gmail.com> wrote: > > On Tue, Jul 4, 2023 at 9:28 AM Jani Nikula <jani.nikula@linux.intel.com> wrote: > >> You could save everyone a lot of time by actually documenting what these > >> functions do. Assume you don't know what local64_try_cmpxchg() does, and > >> see how many calls you have to go through to figure it out. > > > > These functions are documented in Documentation/atomic_t.txt (under > > "RMW ops:" section), and the difference is explained in a separate > > section "CMPXCHG vs TRY_CMPXCGS" in the same file. > > Thanks, but *sigh*. > > No kernel-doc above the functions, not even a regular comment > referencing atomic_t.txt. > > $ git grep local.*_try -- Documentation > [nothing] Unfortunately, this was always the state w.r.t. local.* atomic functions. There is an effort to improve the documentation of atomics, perhaps it will be also extended to local variants. Uros. ^ permalink raw reply [flat|nested] 12+ messages in thread
* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read 2023-07-03 15:08 [Intel-gfx] [PATCH] drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read Uros Bizjak 2023-07-04 7:28 ` Jani Nikula @ 2023-07-06 18:48 ` Patchwork 2023-07-06 19:00 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork ` (5 subsequent siblings) 7 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2023-07-06 18:48 UTC (permalink / raw) To: Uros Bizjak; +Cc: intel-gfx == Series Details == Series: drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read URL : https://patchwork.freedesktop.org/series/120296/ State : warning == Summary == Error: dim checkpatch failed f8d5cc6a6ba8 drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read -:7: WARNING:COMMIT_LOG_LONG_LINE: Possible unwrapped commit description (prefer a maximum 75 chars per line) #7: in i915_pmu_event_read. x86 CMPXCHG instruction returns success in ZF flag, total: 0 errors, 1 warnings, 0 checks, 16 lines checked ^ permalink raw reply [flat|nested] 12+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read 2023-07-03 15:08 [Intel-gfx] [PATCH] drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read Uros Bizjak 2023-07-04 7:28 ` Jani Nikula 2023-07-06 18:48 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork @ 2023-07-06 19:00 ` Patchwork 2023-07-07 0:59 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork ` (4 subsequent siblings) 7 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2023-07-06 19:00 UTC (permalink / raw) To: Uros Bizjak; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 5373 bytes --] == Series Details == Series: drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read URL : https://patchwork.freedesktop.org/series/120296/ State : success == Summary == CI Bug Log - changes from CI_DRM_13351 -> Patchwork_120296v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/index.html Participating hosts (40 -> 39) ------------------------------ Additional (1): fi-pnv-d510 Missing (2): fi-kbl-soraka fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_120296v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@gt_heartbeat: - fi-apl-guc: [PASS][1] -> [DMESG-FAIL][2] ([i915#5334]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html - fi-glk-j4005: [PASS][3] -> [DMESG-FAIL][4] ([i915#5334]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@reset: - bat-rpls-2: NOTRUN -> [ABORT][5] ([i915#4983] / [i915#7461] / [i915#7913] / [i915#8347]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/bat-rpls-2/igt@i915_selftest@live@reset.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [PASS][6] -> [ABORT][7] ([i915#8442] / [i915#8668]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html * igt@kms_psr@primary_page_flip: - fi-pnv-d510: NOTRUN -> [SKIP][8] ([fdo#109271]) +38 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/fi-pnv-d510/igt@kms_psr@primary_page_flip.html #### Possible fixes #### * igt@i915_selftest@live@gt_heartbeat: - bat-dg2-9: [DMESG-FAIL][9] ([i915#7699]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/bat-dg2-9/igt@i915_selftest@live@gt_heartbeat.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/bat-dg2-9/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@migrate: - bat-atsm-1: [DMESG-FAIL][11] ([i915#7699] / [i915#7913]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/bat-atsm-1/igt@i915_selftest@live@migrate.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/bat-atsm-1/igt@i915_selftest@live@migrate.html * igt@i915_selftest@live@mman: - bat-rpls-2: [TIMEOUT][13] ([i915#6794] / [i915#7392]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/bat-rpls-2/igt@i915_selftest@live@mman.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/bat-rpls-2/igt@i915_selftest@live@mman.html #### Warnings #### * igt@core_auth@basic-auth: - bat-adlp-11: [ABORT][15] ([i915#8011]) -> [ABORT][16] ([i915#4423] / [i915#8011]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/bat-adlp-11/igt@core_auth@basic-auth.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/bat-adlp-11/igt@core_auth@basic-auth.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#6794]: https://gitlab.freedesktop.org/drm/intel/issues/6794 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 Build changes ------------- * Linux: CI_DRM_13351 -> Patchwork_120296v1 CI-20190529: 20190529 CI_DRM_13351: c5262da740fe00ef30394118a108dcf0723a0318 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7376: 38af51c0ce6d9573793f53fc32782b77061bf169 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_120296v1: c5262da740fe00ef30394118a108dcf0723a0318 @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits 049b113e4c57 drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/index.html [-- Attachment #2: Type: text/html, Size: 6453 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read 2023-07-03 15:08 [Intel-gfx] [PATCH] drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read Uros Bizjak ` (2 preceding siblings ...) 2023-07-06 19:00 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork @ 2023-07-07 0:59 ` Patchwork 2023-07-10 14:11 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read (rev2) Patchwork ` (3 subsequent siblings) 7 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2023-07-07 0:59 UTC (permalink / raw) To: Uros Bizjak; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 38383 bytes --] == Series Details == Series: drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read URL : https://patchwork.freedesktop.org/series/120296/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13351_full -> Patchwork_120296v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_120296v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_120296v1_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_120296v1_full: ### IGT changes ### #### Possible regressions #### * igt@perf_pmu@busy-idle-no-semaphores@rcs0: - shard-rkl: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-rkl-1/igt@perf_pmu@busy-idle-no-semaphores@rcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-rkl-7/igt@perf_pmu@busy-idle-no-semaphores@rcs0.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a4: - {shard-dg1}: NOTRUN -> [ABORT][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg1-14/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a4.html Known issues ------------ Here are the changes found in Patchwork_120296v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [PASS][4] -> [FAIL][5] ([i915#7742]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@drm_fdinfo@virtual-busy-idle-all: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8414]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@drm_fdinfo@virtual-busy-idle-all.html * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-dg2: [PASS][7] -> [FAIL][8] ([fdo#103375] / [i915#6121]) +3 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-dg2-3/igt@gem_ctx_isolation@preservation-s3@bcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-5/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_exec_balancer@full-pulse: - shard-dg2: [PASS][9] -> [FAIL][10] ([i915#6032]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-dg2-5/igt@gem_exec_balancer@full-pulse.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-11/igt@gem_exec_balancer@full-pulse.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#3539] / [i915#4852]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none@vcs0: - shard-rkl: [PASS][12] -> [FAIL][13] ([i915#2842]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-rkl-2/igt@gem_exec_fair@basic-none@vcs0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-rkl-7/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-glk: [PASS][14] -> [FAIL][15] ([i915#2842]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-glk4/igt@gem_exec_fair@basic-pace-solo@rcs0.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-glk9/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_reloc@basic-wc: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#3281]) +3 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_schedule@deep@vecs0: - shard-mtlp: [PASS][17] -> [FAIL][18] ([i915#8606]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-mtlp-3/igt@gem_exec_schedule@deep@vecs0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-mtlp-8/igt@gem_exec_schedule@deep@vecs0.html * igt@gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#4537] / [i915#4812]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: [PASS][20] -> [ABORT][21] ([i915#7975] / [i915#8213] / [i915#8682]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-12/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#4860]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-glk: NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#4613]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-glk7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_mmap_wc@pf-nonblock: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#4083]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@gem_mmap_wc@pf-nonblock.html * igt@gem_tiled_pread_basic: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#4079]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@gem_tiled_pread_basic.html * igt@gem_tiled_wb: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#4077]) +4 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@gem_tiled_wb.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3282]) +1 similar issue [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@gem_userptr_blits@forbidden-operations.html * igt@gen9_exec_parse@batch-invalid-length: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#2856]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@unaligned-jump: - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#2856]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-mtlp-5/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: [PASS][30] -> [SKIP][31] ([i915#1397]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-rkl-2/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [PASS][32] -> [SKIP][33] ([i915#1397]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-dg2-2/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-12/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#4387]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@i915_pm_sseu@full-enable.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][35] -> [FAIL][36] ([fdo#103375]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs: - shard-rkl: NOTRUN -> [SKIP][37] ([i915#8502]) +3 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-b-dp-2: - shard-dg2: NOTRUN -> [FAIL][38] ([i915#8247]) +3 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-12/igt@kms_async_flips@crc@pipe-b-dp-2.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-1: - shard-snb: NOTRUN -> [FAIL][39] ([i915#8247]) +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-snb1/igt@kms_async_flips@crc@pipe-b-hdmi-a-1.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-glk: NOTRUN -> [SKIP][40] ([fdo#109271]) +62 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-glk8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][41] -> [FAIL][42] ([i915#5138]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#5190]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@kms_big_fb@y-tiled-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4538] / [i915#5190]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][45] ([fdo#109271] / [i915#3886]) +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-glk7/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#6095]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-mtlp-5/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#3689] / [i915#5354]) +4 similar issues [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_ccs.html * igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3689] / [i915#3886] / [i915#5354]) +2 similar issues [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@kms_ccs@pipe-c-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-4_tiled_mtl_rc_ccs: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#5354]) +12 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@kms_ccs@pipe-d-ccs-on-another-bo-4_tiled_mtl_rc_ccs.html * igt@kms_cdclk@plane-scaling@pipe-c-dp-2: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4087]) +3 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-12/igt@kms_cdclk@plane-scaling@pipe-c-dp-2.html * igt@kms_chamelium_color@ctm-0-75: - shard-dg2: NOTRUN -> [SKIP][51] ([fdo#111827]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#7828]) +1 similar issue [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_content_protection@atomic@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][53] ([i915#7173]) +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-type-0: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#3299]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-mtlp-3/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#7118]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-6/igt@kms_content_protection@lic.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#3359]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-mtlp: [PASS][57] -> [FAIL][58] ([i915#8248]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-mtlp-5/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-mtlp-6/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2: NOTRUN -> [SKIP][59] ([fdo#109274] / [i915#5354]) +1 similar issue [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: [PASS][60] -> [FAIL][61] ([i915#4767]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-dg2-11/igt@kms_fbcon_fbt@fbc-suspend.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-8/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-busy-flip: - shard-dg2: NOTRUN -> [SKIP][62] ([fdo#109274]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@kms_flip@2x-busy-flip.html * igt@kms_flip@2x-flip-vs-dpms: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#3637]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-mtlp-7/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#8708]) +5 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#1825]) +1 similar issue [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#3458]) +2 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html * igt@kms_hdr@bpc-switch: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#3555]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-rkl-2/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#3555]) +2 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-1/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][69] ([i915#7862]) +1 similar issue [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-glk7/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#6953]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#5176]) +5 similar issues [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#5176]) +7 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-dp-4.html * igt@kms_plane_scaling@plane-upscale-with-modifiers-20x20@pipe-b-hdmi-a-1: - shard-snb: NOTRUN -> [SKIP][73] ([fdo#109271]) +10 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-snb1/igt@kms_plane_scaling@plane-upscale-with-modifiers-20x20@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#5235]) +1 similar issue [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-dp-4: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#5235]) +15 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-dp-4.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#6524] / [i915#6805]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr@suspend: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#1072]) +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@kms_psr@suspend.html * igt@kms_rmfb@close-fd@pipe-a-edp-1: - shard-mtlp: [PASS][78] -> [DMESG-WARN][79] ([i915#1982]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-mtlp-7/igt@kms_rmfb@close-fd@pipe-a-edp-1.html [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-mtlp-5/igt@kms_rmfb@close-fd@pipe-a-edp-1.html * igt@kms_sysfs_edid_timing: - shard-dg2: [PASS][80] -> [FAIL][81] ([IGT#2]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-dg2-11/igt@kms_sysfs_edid_timing.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-6/igt@kms_sysfs_edid_timing.html * igt@perf@per-context-mode-unprivileged: - shard-dg2: NOTRUN -> [SKIP][82] ([fdo#109289]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@perf@per-context-mode-unprivileged.html * igt@prime_vgem@coherency-blt: - shard-mtlp: NOTRUN -> [FAIL][83] ([i915#8445]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-mtlp-7/igt@prime_vgem@coherency-blt.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#3708]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@prime_vgem@fence-read-hang.html * igt@v3d/v3d_submit_csd@multiple-job-submission: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#2575]) +2 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@v3d/v3d_submit_csd@multiple-job-submission.html * igt@vc4/vc4_purgeable_bo@free-purged-bo: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#7711]) +1 similar issue [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@vc4/vc4_purgeable_bo@free-purged-bo.html #### Possible fixes #### * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [FAIL][87] ([i915#6268]) -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-tglu-8/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@reset-stress: - {shard-dg1}: [FAIL][89] ([i915#5784]) -> [PASS][90] [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-dg1-13/igt@gem_eio@reset-stress.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg1-18/igt@gem_eio@reset-stress.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [FAIL][91] ([i915#2846]) -> [PASS][92] [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-glk2/igt@gem_exec_fair@basic-deadline.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-glk1/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-glk: [FAIL][93] ([i915#2842]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-glk6/igt@gem_exec_fair@basic-pace@rcs0.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-glk4/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_whisper@basic-contexts-all: - shard-mtlp: [FAIL][95] ([i915#6363]) -> [PASS][96] +2 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-mtlp-6/igt@gem_exec_whisper@basic-contexts-all.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-mtlp-7/igt@gem_exec_whisper@basic-contexts-all.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][97] ([i915#5493]) -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-dg2-8/igt@gem_lmem_swapping@smem-oom@lmem0.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-3/igt@gem_lmem_swapping@smem-oom@lmem0.html - {shard-dg1}: [TIMEOUT][99] ([i915#5493]) -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gen9_exec_parse@allowed-all: - shard-glk: [ABORT][101] ([i915#5566]) -> [PASS][102] +1 similar issue [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-glk7/igt@gen9_exec_parse@allowed-all.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-glk8/igt@gen9_exec_parse@allowed-all.html * igt@i915_pm_dc@dc6-dpms: - shard-tglu: [FAIL][103] ([i915#3989] / [i915#454]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-tglu-6/igt@i915_pm_dc@dc6-dpms.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-tglu-4/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-rkl: [SKIP][105] ([i915#1937]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-rkl-2/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html - {shard-dg1}: [SKIP][107] ([i915#1937]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-dg1-15/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg1-19/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - {shard-dg1}: [FAIL][109] ([i915#3591]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-rkl: [SKIP][111] ([i915#1397]) -> [PASS][112] +2 similar issues [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-rkl-6/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-dg2: [SKIP][113] ([i915#1397]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-dg2-6/igt@i915_pm_rpm@modeset-lpsp-stress.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-12/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_pm_rpm@modeset-non-lpsp: - {shard-dg1}: [SKIP][115] ([i915#1397]) -> [PASS][116] +1 similar issue [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg1-16/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_selftest@live@gt_mocs: - shard-mtlp: [DMESG-FAIL][117] ([i915#7059]) -> [PASS][118] [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-mtlp-7/igt@i915_selftest@live@gt_mocs.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-mtlp-4/igt@i915_selftest@live@gt_mocs.html * igt@i915_suspend@forcewake: - shard-dg2: [FAIL][119] ([fdo#103375] / [i915#6121]) -> [PASS][120] [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-dg2-5/igt@i915_suspend@forcewake.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@i915_suspend@forcewake.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-mtlp: [FAIL][121] ([i915#3743]) -> [PASS][122] [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-mtlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_plane_scaling@plane-scaler-with-pixel-format-unity-scaling@pipe-b-edp-1: - shard-mtlp: [DMESG-WARN][123] ([i915#1982]) -> [PASS][124] [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-mtlp-5/igt@kms_plane_scaling@plane-scaler-with-pixel-format-unity-scaling@pipe-b-edp-1.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-mtlp-2/igt@kms_plane_scaling@plane-scaler-with-pixel-format-unity-scaling@pipe-b-edp-1.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][125] ([i915#7484]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html #### Warnings #### * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - shard-tglu: [WARN][127] ([i915#2681]) -> [FAIL][128] ([i915#2681] / [i915#3591]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@kms_content_protection@content_type_change: - shard-dg2: [SKIP][129] ([i915#7118]) -> [SKIP][130] ([i915#7118] / [i915#7162]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-dg2-5/igt@kms_content_protection@content_type_change.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-11/igt@kms_content_protection@content_type_change.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][131] ([i915#7118] / [i915#7162]) -> [SKIP][132] ([i915#7118]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-dg2-11/igt@kms_content_protection@type1.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-8/igt@kms_content_protection@type1.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-mtlp: [FAIL][133] ([i915#2346]) -> [DMESG-FAIL][134] ([i915#1982] / [i915#2017] / [i915#5954]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-mtlp-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-mtlp-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][135] ([i915#3955]) -> [SKIP][136] ([fdo#110189] / [i915#3955]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][137] ([fdo#109285]) -> [SKIP][138] ([fdo#109285] / [i915#4098]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-rkl-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][139] ([i915#4070] / [i915#4816]) -> [SKIP][140] ([i915#4816]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [INCOMPLETE][141] ([i915#5493]) -> [CRASH][142] ([i915#7331]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13351/shard-dg2-11/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v1/shard-dg2-8/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954 [i915#6032]: https://gitlab.freedesktop.org/drm/intel/issues/6032 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6363]: https://gitlab.freedesktop.org/drm/intel/issues/6363 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8445]: https://gitlab.freedesktop.org/drm/intel/issues/8445 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8606]: https://gitlab.freedesktop.org/drm/intel/issues/8606 [i915#8682]: https://gitlab.freedesktop.org/drm/intel/issues/8682 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 Build changes ------------- * Linux: CI_DRM_13351 -> Patchwork_120296v1 CI-20190529: 20190529 CI_DRM_13351: c5262da740fe00ef30394118a108dcf0723a0318 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7376: 38af51c0ce6d9573793f53fc32782b77061bf169 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_120296v1: c5262da740fe00ef30394118a108dcf0723a0318 @ 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_120296v1/index.html [-- Attachment #2: Type: text/html, Size: 43625 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read (rev2) 2023-07-03 15:08 [Intel-gfx] [PATCH] drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read Uros Bizjak ` (3 preceding siblings ...) 2023-07-07 0:59 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-07-10 14:11 ` Patchwork 2023-07-10 14:24 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2023-07-10 14:11 UTC (permalink / raw) To: Uros Bizjak; +Cc: intel-gfx == Series Details == Series: drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read (rev2) URL : https://patchwork.freedesktop.org/series/120296/ State : warning == Summary == Error: dim checkpatch failed 417192a1727e drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read -:7: WARNING:COMMIT_LOG_LONG_LINE: Possible unwrapped commit description (prefer a maximum 75 chars per line) #7: in i915_pmu_event_read. x86 CMPXCHG instruction returns success in ZF flag, total: 0 errors, 1 warnings, 0 checks, 16 lines checked ^ permalink raw reply [flat|nested] 12+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read (rev2) 2023-07-03 15:08 [Intel-gfx] [PATCH] drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read Uros Bizjak ` (4 preceding siblings ...) 2023-07-10 14:11 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read (rev2) Patchwork @ 2023-07-10 14:24 ` Patchwork 2023-07-10 17:58 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2023-10-05 10:22 ` [Intel-gfx] [PATCH] drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read Jani Nikula 7 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2023-07-10 14:24 UTC (permalink / raw) To: Uros Bizjak; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 7835 bytes --] == Series Details == Series: drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read (rev2) URL : https://patchwork.freedesktop.org/series/120296/ State : success == Summary == CI Bug Log - changes from CI_DRM_13364 -> Patchwork_120296v2 ==================================================== Summary ------- **WARNING** Minor unknown changes coming with Patchwork_120296v2 need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_120296v2, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/index.html Participating hosts (41 -> 39) ------------------------------ Missing (2): fi-tgl-1115g4 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_120296v2: ### IGT changes ### #### Warnings #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-cfl-guc: [FAIL][1] ([i915#7940]) -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/fi-cfl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/fi-cfl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html Known issues ------------ Here are the changes found in Patchwork_120296v2 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rpm@basic-rte: - fi-cfl-8109u: [PASS][3] -> [FAIL][4] ([i915#7940]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/fi-cfl-8109u/igt@i915_pm_rpm@basic-rte.html * igt@i915_pm_rpm@module-reload: - fi-cfl-8700k: [PASS][5] -> [FAIL][6] ([i915#7940]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/fi-cfl-8700k/igt@i915_pm_rpm@module-reload.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/fi-cfl-8700k/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@gt_heartbeat: - bat-jsl-3: [PASS][7] -> [DMESG-FAIL][8] ([i915#5334]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/bat-jsl-3/igt@i915_selftest@live@gt_heartbeat.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/bat-jsl-3/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@hangcheck: - bat-dg2-11: [PASS][9] -> [ABORT][10] ([i915#7913]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/bat-dg2-11/igt@i915_selftest@live@hangcheck.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/bat-dg2-11/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@slpc: - bat-rpls-2: NOTRUN -> [DMESG-WARN][11] ([i915#6367]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/bat-rpls-2/igt@i915_selftest@live@slpc.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - bat-rpls-2: NOTRUN -> [SKIP][12] ([i915#7828]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/bat-rpls-2/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_pipe_crc_basic@suspend-read-crc: - bat-rpls-2: NOTRUN -> [SKIP][13] ([i915#1845]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/bat-rpls-2/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_psr@primary_page_flip: - bat-rplp-1: NOTRUN -> [SKIP][14] ([i915#1072]) +1 similar issue [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/bat-rplp-1/igt@kms_psr@primary_page_flip.html * igt@kms_psr@sprite_plane_onoff: - bat-rplp-1: NOTRUN -> [ABORT][15] ([i915#8442] / [i915#8668] / [i915#8712]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/bat-rplp-1/igt@kms_psr@sprite_plane_onoff.html #### Possible fixes #### * igt@i915_pm_rpm@basic-pci-d3-state: - fi-kbl-x1275: [SKIP][16] ([fdo#109271]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/fi-kbl-x1275/igt@i915_pm_rpm@basic-pci-d3-state.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/fi-kbl-x1275/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_selftest@live@gt_mocs: - bat-mtlp-8: [DMESG-FAIL][18] ([i915#7059]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/bat-mtlp-8/igt@i915_selftest@live@gt_mocs.html - bat-mtlp-6: [DMESG-FAIL][20] ([i915#7059]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html * igt@i915_selftest@live@requests: - bat-mtlp-8: [DMESG-FAIL][22] ([i915#7269]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/bat-mtlp-8/igt@i915_selftest@live@requests.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/bat-mtlp-8/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@reset: - bat-rpls-2: [ABORT][24] ([i915#4983] / [i915#7461] / [i915#7913] / [i915#8347]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/bat-rpls-2/igt@i915_selftest@live@reset.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/bat-rpls-2/igt@i915_selftest@live@reset.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][26] ([i915#8442] / [i915#8668]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059 [i915#7269]: https://gitlab.freedesktop.org/drm/intel/issues/7269 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 [i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8712]: https://gitlab.freedesktop.org/drm/intel/issues/8712 Build changes ------------- * Linux: CI_DRM_13364 -> Patchwork_120296v2 CI-20190529: 20190529 CI_DRM_13364: 91010bd5ed0a15e689f0fcc3817489bd02433884 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7377: d1574543ba4bb322597345530053475c07be0eb9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_120296v2: 91010bd5ed0a15e689f0fcc3817489bd02433884 @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits 8f46a30ef6f8 drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/index.html [-- Attachment #2: Type: text/html, Size: 9231 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read (rev2) 2023-07-03 15:08 [Intel-gfx] [PATCH] drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read Uros Bizjak ` (5 preceding siblings ...) 2023-07-10 14:24 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork @ 2023-07-10 17:58 ` Patchwork 2023-10-05 10:22 ` [Intel-gfx] [PATCH] drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read Jani Nikula 7 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2023-07-10 17:58 UTC (permalink / raw) To: Uros Bizjak; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 35265 bytes --] == Series Details == Series: drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read (rev2) URL : https://patchwork.freedesktop.org/series/120296/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13364_full -> Patchwork_120296v2_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_120296v2_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_120296v2_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_120296v2_full: ### IGT changes ### #### Possible regressions #### * igt@kms_content_protection@atomic@pipe-a-dp-2: - shard-dg2: NOTRUN -> [DMESG-FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-dg2-12/igt@kms_content_protection@atomic@pipe-a-dp-2.html Known issues ------------ Here are the changes found in Patchwork_120296v2_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@drm_fdinfo@virtual-busy-all: - shard-mtlp: NOTRUN -> [SKIP][2] ([i915#8414]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-mtlp-8/igt@drm_fdinfo@virtual-busy-all.html * igt@drm_fdinfo@virtual-idle: - shard-rkl: [PASS][3] -> [FAIL][4] ([i915#7742]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-rkl-4/igt@drm_fdinfo@virtual-idle.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-rkl-2/igt@drm_fdinfo@virtual-idle.html * igt@gem_create@hog-create@smem0: - shard-dg2: [PASS][5] -> [FAIL][6] ([i915#5892] / [i915#8758]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-dg2-10/igt@gem_create@hog-create@smem0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-dg2-6/igt@gem_create@hog-create@smem0.html * igt@gem_ctx_persistence@hostile: - shard-snb: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#1099]) +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-snb2/igt@gem_ctx_persistence@hostile.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu: NOTRUN -> [SKIP][8] ([i915#280]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][9] -> [FAIL][10] ([i915#2842]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-glk2/igt@gem_exec_fair@basic-pace-share@rcs0.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-rkl: [PASS][11] -> [FAIL][12] ([i915#2842]) +3 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-rkl-2/igt@gem_exec_fair@basic-throttle@rcs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-rkl-4/igt@gem_exec_fair@basic-throttle@rcs0.html - shard-tglu: NOTRUN -> [FAIL][13] ([i915#2842]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_reloc@basic-wc-cpu-active: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#3281]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-mtlp-1/igt@gem_exec_reloc@basic-wc-cpu-active.html * igt@gem_exec_schedule@deep@vcs1: - shard-mtlp: [PASS][15] -> [FAIL][16] ([i915#8606]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-mtlp-8/igt@gem_exec_schedule@deep@vcs1.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-mtlp-8/igt@gem_exec_schedule@deep@vcs1.html * igt@gem_mmap_gtt@fault-concurrent: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#4077]) +1 similar issue [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-mtlp-8/igt@gem_mmap_gtt@fault-concurrent.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][18] ([i915#3297]) +1 similar issue [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gen9_exec_parse@unaligned-access: - shard-tglu: NOTRUN -> [SKIP][19] ([i915#2527] / [i915#2856]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@gen9_exec_parse@unaligned-access.html * igt@i915_module_load@load: - shard-snb: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#6227]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-snb2/igt@i915_module_load@load.html - shard-tglu: NOTRUN -> [SKIP][21] ([i915#6227]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@i915_module_load@load.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-dg2: [PASS][22] -> [SKIP][23] ([i915#1397]) +1 similar issue [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-dg2-8/igt@i915_pm_rpm@dpms-non-lpsp.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-dg2-12/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@fences: - shard-tglu: [PASS][24] -> [FAIL][25] ([i915#7940]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-tglu-4/igt@i915_pm_rpm@fences.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-2/igt@i915_pm_rpm@fences.html * igt@i915_selftest@live@dmabuf: - shard-apl: [PASS][26] -> [DMESG-FAIL][27] ([i915#7562]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-apl6/igt@i915_selftest@live@dmabuf.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-apl7/igt@i915_selftest@live@dmabuf.html * igt@i915_suspend@basic-s3-without-i915: - shard-dg2: [PASS][28] -> [FAIL][29] ([fdo#103375] / [i915#6121]) +1 similar issue [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-dg2-1/igt@i915_suspend@basic-s3-without-i915.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-dg2-5/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-snb: NOTRUN -> [DMESG-WARN][30] ([i915#8841]) +6 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-snb6/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-snb: NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#1769]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-snb6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-tglu: NOTRUN -> [SKIP][32] ([i915#5286]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-mtlp: [PASS][33] -> [FAIL][34] ([i915#3743]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-mtlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][35] ([fdo#111615]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-mtlp-8/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-rkl: [PASS][36] -> [FAIL][37] ([i915#3743]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-rkl-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-rkl-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][38] ([fdo#111615]) +1 similar issue [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#6095]) +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-mtlp-8/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][40] ([i915#5354] / [i915#6095]) +1 similar issue [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_ccs: - shard-snb: NOTRUN -> [SKIP][41] ([fdo#109271]) +277 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-snb6/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][42] ([i915#3689] / [i915#5354] / [i915#6095]) +4 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][43] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][44] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs.html * igt@kms_cdclk@mode-transition@pipe-a-dp-2: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4087] / [i915#7213]) +3 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-dg2-12/igt@kms_cdclk@mode-transition@pipe-a-dp-2.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4087]) +3 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-dg2-10/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_color@ctm-max: - shard-tglu: NOTRUN -> [SKIP][47] ([fdo#111827]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_hpd@dp-hpd: - shard-tglu: NOTRUN -> [SKIP][48] ([i915#7828]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][49] ([i915#7173]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-dg2-11/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html * igt@kms_content_protection@lic: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#7118]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-dg2-7/igt@kms_content_protection@lic.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][51] ([i915#1339]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#8814]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-snb: NOTRUN -> [SKIP][53] ([fdo#109271] / [fdo#111767]) +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-snb2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html - shard-tglu: NOTRUN -> [SKIP][54] ([fdo#109274] / [fdo#111767]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_display_modes@extended-mode-basic: - shard-tglu: NOTRUN -> [SKIP][55] ([i915#3555]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#3804]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][57] ([fdo#109274] / [i915#3637] / [i915#3966]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-tglu: NOTRUN -> [SKIP][58] ([fdo#109274] / [i915#3637]) +1 similar issue [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1: - shard-glk: [PASS][59] -> [FAIL][60] ([i915#79]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-glk6/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-glk9/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#2587] / [i915#2672]) +1 similar issue [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][62] ([fdo#109280]) +4 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#1825]) +2 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#3555] / [i915#8228]) +1 similar issue [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-rkl-1/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3555] / [i915#8228]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-dg2-7/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#1839]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c: - shard-tglu: NOTRUN -> [SKIP][67] ([fdo#109289]) +1 similar issue [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-tglu: NOTRUN -> [SKIP][68] ([fdo#109274]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][69] ([i915#8292]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#5176]) +7 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html - shard-rkl: NOTRUN -> [SKIP][71] ([i915#5176]) +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][72] ([i915#5176]) +3 similar issues [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-dp-2: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#5235]) +19 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-dg2-12/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-dp-2.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#5235]) +3 similar issues [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-rkl-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#5235]) +3 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-mtlp-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_psr@psr2_primary_page_flip: - shard-tglu: NOTRUN -> [SKIP][76] ([fdo#110189]) +9 similar issues [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@kms_psr@psr2_primary_page_flip.html * igt@kms_vrr@negative-basic: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#3555]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-dg2-6/igt@kms_vrr@negative-basic.html * igt@prime_vgem@fence-read-hang: - shard-tglu: NOTRUN -> [SKIP][78] ([fdo#109295]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@prime_vgem@fence-read-hang.html * igt@v3d/v3d_submit_cl@single-out-sync: - shard-tglu: NOTRUN -> [SKIP][79] ([fdo#109315] / [i915#2575]) +1 similar issue [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@v3d/v3d_submit_cl@single-out-sync.html * igt@v3d/v3d_submit_csd@bad-perfmon: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#2575]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-mtlp-8/igt@v3d/v3d_submit_csd@bad-perfmon.html * igt@vc4/vc4_mmap@mmap-bad-handle: - shard-tglu: NOTRUN -> [SKIP][81] ([i915#2575]) +1 similar issue [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-9/igt@vc4/vc4_mmap@mmap-bad-handle.html #### Possible fixes #### * igt@gem_eio@kms: - shard-dg2: [INCOMPLETE][82] ([i915#7892]) -> [PASS][83] [82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-dg2-5/igt@gem_eio@kms.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-dg2-1/igt@gem_eio@kms.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: [FAIL][84] ([i915#2842]) -> [PASS][85] [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-rkl-6/igt@gem_exec_fair@basic-none@bcs0.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-rkl-1/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_schedule@deep@vecs0: - shard-mtlp: [FAIL][86] ([i915#8606]) -> [PASS][87] [86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-mtlp-8/igt@gem_exec_schedule@deep@vecs0.html [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-mtlp-8/igt@gem_exec_schedule@deep@vecs0.html * igt@gem_exec_whisper@basic-contexts-priority-all: - shard-mtlp: [TIMEOUT][88] ([i915#7392]) -> [PASS][89] [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-mtlp-6/igt@gem_exec_whisper@basic-contexts-priority-all.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-mtlp-1/igt@gem_exec_whisper@basic-contexts-priority-all.html * igt@gem_exec_whisper@basic-forked-all: - shard-mtlp: [FAIL][90] ([i915#6363]) -> [PASS][91] [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-mtlp-3/igt@gem_exec_whisper@basic-forked-all.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-mtlp-8/igt@gem_exec_whisper@basic-forked-all.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [DMESG-WARN][92] ([i915#7061]) -> [PASS][93] [92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - shard-dg2: [SKIP][94] ([i915#1937]) -> [PASS][95] [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-dg2-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-dg2-10/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html - shard-rkl: [SKIP][96] ([i915#1937]) -> [PASS][97] [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-rkl-6/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - {shard-dg1}: [FAIL][98] ([i915#3591]) -> [PASS][99] [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@basic-pci-d3-state: - {shard-dg1}: [FAIL][100] ([i915#7691]) -> [PASS][101] [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-dg1-13/igt@i915_pm_rpm@basic-pci-d3-state.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-dg1-19/igt@i915_pm_rpm@basic-pci-d3-state.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [SKIP][102] ([i915#1397]) -> [PASS][103] [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-dg2-7/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html - {shard-dg1}: [SKIP][104] ([i915#1397]) -> [PASS][105] +1 similar issue [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-dg1-15/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@reg-read-ioctl: - {shard-dg1}: [FAIL][106] ([i915#7940]) -> [PASS][107] [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-dg1-16/igt@i915_pm_rpm@reg-read-ioctl.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-dg1-17/igt@i915_pm_rpm@reg-read-ioctl.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-mtlp: [FAIL][108] ([i915#3743]) -> [PASS][109] +2 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][110] ([i915#2346]) -> [PASS][111] [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1: - shard-glk: [FAIL][112] ([i915#79]) -> [PASS][113] [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-glk7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff: - shard-dg2: [FAIL][114] ([i915#6880]) -> [PASS][115] [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-dg2-12/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html #### Warnings #### * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [DMESG-WARN][116] ([i915#4936] / [i915#5493]) -> [TIMEOUT][117] ([i915#5493]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-dg2-7/igt@gem_lmem_swapping@smem-oom@lmem0.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - shard-tglu: [FAIL][118] ([i915#2681] / [i915#3591]) -> [WARN][119] ([i915#2681]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-tglu: [WARN][120] ([i915#2681]) -> [FAIL][121] ([i915#2681] / [i915#3591]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][122] ([i915#7118] / [i915#7162]) -> [SKIP][123] ([i915#7118]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-dg2-11/igt@kms_content_protection@type1.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-dg2-7/igt@kms_content_protection@type1.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][124] ([fdo#110189] / [i915#3955]) -> [SKIP][125] ([i915#3955]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-rkl-2/igt@kms_fbcon_fbt@psr.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-rkl-4/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][126] ([i915#3955]) -> [SKIP][127] ([fdo#110189] / [i915#3955]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][128] ([i915#4070] / [i915#4816]) -> [SKIP][129] ([i915#4816]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13364/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_120296v2/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5892]: https://gitlab.freedesktop.org/drm/intel/issues/5892 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6363]: https://gitlab.freedesktop.org/drm/intel/issues/6363 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7562]: https://gitlab.freedesktop.org/drm/intel/issues/7562 [i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7892]: https://gitlab.freedesktop.org/drm/intel/issues/7892 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8606]: https://gitlab.freedesktop.org/drm/intel/issues/8606 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8758]: https://gitlab.freedesktop.org/drm/intel/issues/8758 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 Build changes ------------- * Linux: CI_DRM_13364 -> Patchwork_120296v2 CI-20190529: 20190529 CI_DRM_13364: 91010bd5ed0a15e689f0fcc3817489bd02433884 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7377: d1574543ba4bb322597345530053475c07be0eb9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_120296v2: 91010bd5ed0a15e689f0fcc3817489bd02433884 @ 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_120296v2/index.html [-- Attachment #2: Type: text/html, Size: 41564 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read 2023-07-03 15:08 [Intel-gfx] [PATCH] drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read Uros Bizjak ` (6 preceding siblings ...) 2023-07-10 17:58 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-10-05 10:22 ` Jani Nikula 7 siblings, 0 replies; 12+ messages in thread From: Jani Nikula @ 2023-10-05 10:22 UTC (permalink / raw) To: Uros Bizjak, intel-gfx, dri-devel, linux-kernel Cc: Uros Bizjak, Daniel Vetter, Rodrigo Vivi, David Airlie On Mon, 03 Jul 2023, Uros Bizjak <ubizjak@gmail.com> wrote: > Use local64_try_cmpxchg instead of local64_cmpxchg (*ptr, old, new) == old > in i915_pmu_event_read. x86 CMPXCHG instruction returns success in ZF flag, > so this change saves a compare after cmpxchg (and related move instruction > in front of cmpxchg). > > Also, try_cmpxchg implicitly assigns old *ptr value to "old" when cmpxchg > fails. There is no need to re-read the value in the loop. > > No functional change intended. > > Cc: Jani Nikula <jani.nikula@linux.intel.com> > Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com> > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com> > Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com> > Cc: David Airlie <airlied@gmail.com> > Cc: Daniel Vetter <daniel@ffwll.ch> > Signed-off-by: Uros Bizjak <ubizjak@gmail.com> > --- > drivers/gpu/drm/i915/i915_pmu.c | 9 ++++----- > 1 file changed, 4 insertions(+), 5 deletions(-) > > diff --git a/drivers/gpu/drm/i915/i915_pmu.c b/drivers/gpu/drm/i915/i915_pmu.c > index d35973b41186..108b675088ba 100644 > --- a/drivers/gpu/drm/i915/i915_pmu.c > +++ b/drivers/gpu/drm/i915/i915_pmu.c > @@ -696,12 +696,11 @@ static void i915_pmu_event_read(struct perf_event *event) > event->hw.state = PERF_HES_STOPPED; > return; > } > -again: > - prev = local64_read(&hwc->prev_count); > - new = __i915_pmu_event_read(event); > > - if (local64_cmpxchg(&hwc->prev_count, prev, new) != prev) > - goto again; > + prev = local64_read(&hwc->prev_count); > + do { > + new = __i915_pmu_event_read(event); > + } while (!local64_try_cmpxchg(&hwc->prev_count, &prev, new)); Chased through the documentation again, and pushed to drm-intel-next. Thanks for the patch. BR, Jani. > > local64_add(new - prev, &event->count); > } -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2023-10-05 10:22 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-07-03 15:08 [Intel-gfx] [PATCH] drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read Uros Bizjak 2023-07-04 7:28 ` Jani Nikula 2023-07-04 8:05 ` Uros Bizjak 2023-07-04 8:37 ` Jani Nikula 2023-07-04 9:25 ` Uros Bizjak 2023-07-06 18:48 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork 2023-07-06 19:00 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2023-07-07 0:59 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2023-07-10 14:11 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read (rev2) Patchwork 2023-07-10 14:24 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2023-07-10 17:58 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2023-10-05 10:22 ` [Intel-gfx] [PATCH] drm/i915/pmu: Use local64_try_cmpxchg in i915_pmu_event_read Jani Nikula
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox