* [Intel-gfx] [PATCH] drm/i915/huc: always init the delayed load fence
@ 2022-11-23 23:54 Daniele Ceraolo Spurio
2022-11-24 0:46 ` [Intel-gfx] ✗ Fi.CI.DOCS: warning for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Daniele Ceraolo Spurio @ 2022-11-23 23:54 UTC (permalink / raw)
To: intel-gfx; +Cc: Alan Previn, dri-devel
The fence is only tracking if the HuC load is in progress or not and
doesn't distinguish between already loaded, not supported or disabled,
so we can always initialize it to completed, no matter the actual
support. We already do that for most platforms, but we skip it on
GTs that lack VCS engines (i.e. MTL root GT), so fix that. Note that the
cleanup is already unconditional.
While at it, move the init/fini to helper functions.
Fixes: 02224691cb0f ("drm/i915/huc: fix leak of debug object in huc load fence on driver unload")
Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Cc: John Harrison <John.C.Harrison@Intel.com>
Cc: Alan Previn <alan.previn.teres.alexis@intel.com>
---
drivers/gpu/drm/i915/gt/uc/intel_huc.c | 47 +++++++++++++++++++-------
1 file changed, 34 insertions(+), 13 deletions(-)
diff --git a/drivers/gpu/drm/i915/gt/uc/intel_huc.c b/drivers/gpu/drm/i915/gt/uc/intel_huc.c
index 0976e9101346..5f393f8e8b2e 100644
--- a/drivers/gpu/drm/i915/gt/uc/intel_huc.c
+++ b/drivers/gpu/drm/i915/gt/uc/intel_huc.c
@@ -211,6 +211,30 @@ void intel_huc_unregister_gsc_notifier(struct intel_huc *huc, struct bus_type *b
huc->delayed_load.nb.notifier_call = NULL;
}
+static void delayed_huc_load_init(struct intel_huc *huc)
+{
+ /*
+ * Initialize fence to be complete as this is expected to be complete
+ * unless there is a delayed HuC reload in progress.
+ */
+ i915_sw_fence_init(&huc->delayed_load.fence,
+ sw_fence_dummy_notify);
+ i915_sw_fence_commit(&huc->delayed_load.fence);
+
+ hrtimer_init(&huc->delayed_load.timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
+ huc->delayed_load.timer.function = huc_delayed_load_timer_callback;
+}
+
+static void delayed_huc_load_fini(struct intel_huc *huc)
+{
+ /*
+ * the fence is initialized in init_early, so we need to clean it up
+ * even if HuC loading is off.
+ */
+ delayed_huc_load_complete(huc);
+ i915_sw_fence_fini(&huc->delayed_load.fence);
+}
+
static bool vcs_supported(struct intel_gt *gt)
{
intel_engine_mask_t mask = gt->info.engine_mask;
@@ -241,6 +265,15 @@ void intel_huc_init_early(struct intel_huc *huc)
intel_uc_fw_init_early(&huc->fw, INTEL_UC_FW_TYPE_HUC);
+ /*
+ * we always init the fence as already completed, even if HuC is not
+ * supported. This way we don't have to distinguish between HuC not
+ * supported/disabled or already loaded, band can focus on if the load
+ * is currently in progress (fence not complete) or not, which is what
+ * we care about for stalling userspace submissions.
+ */
+ delayed_huc_load_init(huc);
+
if (!vcs_supported(gt)) {
intel_uc_fw_change_status(&huc->fw, INTEL_UC_FIRMWARE_NOT_SUPPORTED);
return;
@@ -255,17 +288,6 @@ void intel_huc_init_early(struct intel_huc *huc)
huc->status.mask = HUC_FW_VERIFIED;
huc->status.value = HUC_FW_VERIFIED;
}
-
- /*
- * Initialize fence to be complete as this is expected to be complete
- * unless there is a delayed HuC reload in progress.
- */
- i915_sw_fence_init(&huc->delayed_load.fence,
- sw_fence_dummy_notify);
- i915_sw_fence_commit(&huc->delayed_load.fence);
-
- hrtimer_init(&huc->delayed_load.timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
- huc->delayed_load.timer.function = huc_delayed_load_timer_callback;
}
#define HUC_LOAD_MODE_STRING(x) (x ? "GSC" : "legacy")
@@ -333,8 +355,7 @@ void intel_huc_fini(struct intel_huc *huc)
* the fence is initialized in init_early, so we need to clean it up
* even if HuC loading is off.
*/
- delayed_huc_load_complete(huc);
- i915_sw_fence_fini(&huc->delayed_load.fence);
+ delayed_huc_load_fini(huc);
if (intel_uc_fw_is_loadable(&huc->fw))
intel_uc_fw_fini(&huc->fw);
--
2.37.3
^ permalink raw reply related [flat|nested] 6+ messages in thread* [Intel-gfx] ✗ Fi.CI.DOCS: warning for drm/i915/huc: always init the delayed load fence 2022-11-23 23:54 [Intel-gfx] [PATCH] drm/i915/huc: always init the delayed load fence Daniele Ceraolo Spurio @ 2022-11-24 0:46 ` Patchwork 2022-11-24 1:30 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2022-11-24 0:46 UTC (permalink / raw) To: Daniele Ceraolo Spurio; +Cc: intel-gfx == Series Details == Series: drm/i915/huc: always init the delayed load fence URL : https://patchwork.freedesktop.org/series/111288/ State : warning == Summary == Error: make htmldocs had i915 warnings ./drivers/gpu/drm/i915/gt/intel_gt_mcr.c:739: warning: expecting prototype for intel_gt_mcr_wait_for_reg_fw(). Prototype was for intel_gt_mcr_wait_for_reg() instead ./drivers/gpu/drm/i915/gt/intel_gt_mcr.c:739: warning: expecting prototype for intel_gt_mcr_wait_for_reg_fw(). Prototype was for intel_gt_mcr_wait_for_reg() instead ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/huc: always init the delayed load fence 2022-11-23 23:54 [Intel-gfx] [PATCH] drm/i915/huc: always init the delayed load fence Daniele Ceraolo Spurio 2022-11-24 0:46 ` [Intel-gfx] ✗ Fi.CI.DOCS: warning for " Patchwork @ 2022-11-24 1:30 ` Patchwork 2022-11-28 18:54 ` [Intel-gfx] [PATCH] " John Harrison ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2022-11-24 1:30 UTC (permalink / raw) To: Daniele Ceraolo Spurio; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 5177 bytes --] == Series Details == Series: drm/i915/huc: always init the delayed load fence URL : https://patchwork.freedesktop.org/series/111288/ State : success == Summary == CI Bug Log - changes from CI_DRM_12425 -> Patchwork_111288v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v1/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-ctg-p8600 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_111288v1: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_exec_suspend@basic-s3@smem: - {bat-dg2-11}: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12425/bat-dg2-11/igt@gem_exec_suspend@basic-s3@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v1/bat-dg2-11/igt@gem_exec_suspend@basic-s3@smem.html Known issues ------------ Here are the changes found in Patchwork_111288v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_lmem_swapping@basic: - fi-pnv-d510: NOTRUN -> [SKIP][3] ([fdo#109271]) +5 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v1/fi-pnv-d510/igt@gem_lmem_swapping@basic.html * igt@i915_pm_rpm@module-reload: - fi-blb-e6850: NOTRUN -> [SKIP][4] ([fdo#109271]) +5 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v1/fi-blb-e6850/igt@i915_pm_rpm@module-reload.html * igt@kms_chamelium@common-hpd-after-suspend: - fi-hsw-4770: NOTRUN -> [SKIP][5] ([fdo#109271] / [fdo#111827]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v1/fi-hsw-4770/igt@kms_chamelium@common-hpd-after-suspend.html #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - fi-blb-e6850: [INCOMPLETE][6] -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12425/fi-blb-e6850/igt@core_hotunplug@unbind-rebind.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v1/fi-blb-e6850/igt@core_hotunplug@unbind-rebind.html - fi-pnv-d510: [INCOMPLETE][8] -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12425/fi-pnv-d510/igt@core_hotunplug@unbind-rebind.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v1/fi-pnv-d510/igt@core_hotunplug@unbind-rebind.html * igt@fbdev@read: - {bat-rpls-2}: [SKIP][10] ([i915#2582]) -> [PASS][11] +4 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12425/bat-rpls-2/igt@fbdev@read.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v1/bat-rpls-2/igt@fbdev@read.html * igt@gem_exec_gttfill@basic: - fi-pnv-d510: [FAIL][12] ([i915#7229]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12425/fi-pnv-d510/igt@gem_exec_gttfill@basic.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v1/fi-pnv-d510/igt@gem_exec_gttfill@basic.html * igt@i915_selftest@live@hangcheck: - fi-hsw-4770: [INCOMPLETE][14] ([i915#4785]) -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12425/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v1/fi-hsw-4770/igt@i915_selftest@live@hangcheck.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4785]: https://gitlab.freedesktop.org/drm/intel/issues/4785 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#6794]: https://gitlab.freedesktop.org/drm/intel/issues/6794 [i915#6818]: https://gitlab.freedesktop.org/drm/intel/issues/6818 [i915#7229]: https://gitlab.freedesktop.org/drm/intel/issues/7229 [i915#7346]: https://gitlab.freedesktop.org/drm/intel/issues/7346 Build changes ------------- * Linux: CI_DRM_12425 -> Patchwork_111288v1 CI-20190529: 20190529 CI_DRM_12425: 66e5d8e0cdb991feba4fde2c851e700f993d240a @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7072: 69ba7163475925cdc69aebbdfa0e87453ae165c7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_111288v1: 66e5d8e0cdb991feba4fde2c851e700f993d240a @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits a55709dfeb14 drm/i915/huc: always init the delayed load fence == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v1/index.html [-- Attachment #2: Type: text/html, Size: 5669 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915/huc: always init the delayed load fence 2022-11-23 23:54 [Intel-gfx] [PATCH] drm/i915/huc: always init the delayed load fence Daniele Ceraolo Spurio 2022-11-24 0:46 ` [Intel-gfx] ✗ Fi.CI.DOCS: warning for " Patchwork 2022-11-24 1:30 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork @ 2022-11-28 18:54 ` John Harrison 2022-11-28 21:54 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/huc: always init the delayed load fence (rev2) Patchwork 2022-11-29 4:55 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: John Harrison @ 2022-11-28 18:54 UTC (permalink / raw) To: Daniele Ceraolo Spurio, intel-gfx; +Cc: Alan Previn, dri-devel On 11/23/2022 15:54, Daniele Ceraolo Spurio wrote: > The fence is only tracking if the HuC load is in progress or not and > doesn't distinguish between already loaded, not supported or disabled, > so we can always initialize it to completed, no matter the actual > support. We already do that for most platforms, but we skip it on > GTs that lack VCS engines (i.e. MTL root GT), so fix that. Note that the i.e. -> e.g., there is more than just MTL root GT. > cleanup is already unconditional. > > While at it, move the init/fini to helper functions. > > Fixes: 02224691cb0f ("drm/i915/huc: fix leak of debug object in huc load fence on driver unload") > Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com> > Cc: John Harrison <John.C.Harrison@Intel.com> > Cc: Alan Previn <alan.previn.teres.alexis@intel.com> > --- > drivers/gpu/drm/i915/gt/uc/intel_huc.c | 47 +++++++++++++++++++------- > 1 file changed, 34 insertions(+), 13 deletions(-) > > diff --git a/drivers/gpu/drm/i915/gt/uc/intel_huc.c b/drivers/gpu/drm/i915/gt/uc/intel_huc.c > index 0976e9101346..5f393f8e8b2e 100644 > --- a/drivers/gpu/drm/i915/gt/uc/intel_huc.c > +++ b/drivers/gpu/drm/i915/gt/uc/intel_huc.c > @@ -211,6 +211,30 @@ void intel_huc_unregister_gsc_notifier(struct intel_huc *huc, struct bus_type *b > huc->delayed_load.nb.notifier_call = NULL; > } > > +static void delayed_huc_load_init(struct intel_huc *huc) > +{ > + /* > + * Initialize fence to be complete as this is expected to be complete > + * unless there is a delayed HuC reload in progress. reload -> load? > + */ > + i915_sw_fence_init(&huc->delayed_load.fence, > + sw_fence_dummy_notify); > + i915_sw_fence_commit(&huc->delayed_load.fence); > + > + hrtimer_init(&huc->delayed_load.timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); > + huc->delayed_load.timer.function = huc_delayed_load_timer_callback; > +} > + > +static void delayed_huc_load_fini(struct intel_huc *huc) > +{ > + /* > + * the fence is initialized in init_early, so we need to clean it up > + * even if HuC loading is off. > + */ > + delayed_huc_load_complete(huc); > + i915_sw_fence_fini(&huc->delayed_load.fence); > +} > + > static bool vcs_supported(struct intel_gt *gt) > { > intel_engine_mask_t mask = gt->info.engine_mask; > @@ -241,6 +265,15 @@ void intel_huc_init_early(struct intel_huc *huc) > > intel_uc_fw_init_early(&huc->fw, INTEL_UC_FW_TYPE_HUC); > > + /* > + * we always init the fence as already completed, even if HuC is not > + * supported. This way we don't have to distinguish between HuC not > + * supported/disabled or already loaded, band can focus on if the load band -> and Looks good otherwise. So with the typos fixed: Reviewed-by: John Harrison <John.C.Harrison@Intel.com> > + * is currently in progress (fence not complete) or not, which is what > + * we care about for stalling userspace submissions. > + */ > + delayed_huc_load_init(huc); > + > if (!vcs_supported(gt)) { > intel_uc_fw_change_status(&huc->fw, INTEL_UC_FIRMWARE_NOT_SUPPORTED); > return; > @@ -255,17 +288,6 @@ void intel_huc_init_early(struct intel_huc *huc) > huc->status.mask = HUC_FW_VERIFIED; > huc->status.value = HUC_FW_VERIFIED; > } > - > - /* > - * Initialize fence to be complete as this is expected to be complete > - * unless there is a delayed HuC reload in progress. > - */ > - i915_sw_fence_init(&huc->delayed_load.fence, > - sw_fence_dummy_notify); > - i915_sw_fence_commit(&huc->delayed_load.fence); > - > - hrtimer_init(&huc->delayed_load.timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); > - huc->delayed_load.timer.function = huc_delayed_load_timer_callback; > } > > #define HUC_LOAD_MODE_STRING(x) (x ? "GSC" : "legacy") > @@ -333,8 +355,7 @@ void intel_huc_fini(struct intel_huc *huc) > * the fence is initialized in init_early, so we need to clean it up > * even if HuC loading is off. > */ > - delayed_huc_load_complete(huc); > - i915_sw_fence_fini(&huc->delayed_load.fence); > + delayed_huc_load_fini(huc); > > if (intel_uc_fw_is_loadable(&huc->fw)) > intel_uc_fw_fini(&huc->fw); ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/huc: always init the delayed load fence (rev2) 2022-11-23 23:54 [Intel-gfx] [PATCH] drm/i915/huc: always init the delayed load fence Daniele Ceraolo Spurio ` (2 preceding siblings ...) 2022-11-28 18:54 ` [Intel-gfx] [PATCH] " John Harrison @ 2022-11-28 21:54 ` Patchwork 2022-11-29 4:55 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2022-11-28 21:54 UTC (permalink / raw) To: Ceraolo Spurio, Daniele; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 5096 bytes --] == Series Details == Series: drm/i915/huc: always init the delayed load fence (rev2) URL : https://patchwork.freedesktop.org/series/111288/ State : success == Summary == CI Bug Log - changes from CI_DRM_12440 -> Patchwork_111288v2 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/index.html Participating hosts (34 -> 31) ------------------------------ Missing (3): bat-kbl-2 bat-adlp-4 bat-jsl-3 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_111288v2: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_suspend@basic-s3-without-i915: - {bat-rpls-1}: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-2: - {bat-dg2-11}: [PASS][2] -> [FAIL][3] +1 similar issue [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/bat-dg2-11/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-2.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/bat-dg2-11/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-2.html Known issues ------------ Here are the changes found in Patchwork_111288v2 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_linear_blits@basic: - fi-pnv-d510: [PASS][4] -> [SKIP][5] ([fdo#109271]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/fi-pnv-d510/igt@gem_linear_blits@basic.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/fi-pnv-d510/igt@gem_linear_blits@basic.html * igt@gem_lmem_swapping@basic: - fi-pnv-d510: NOTRUN -> [SKIP][6] ([fdo#109271]) +5 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/fi-pnv-d510/igt@gem_lmem_swapping@basic.html * igt@i915_pm_rpm@module-reload: - fi-blb-e6850: NOTRUN -> [SKIP][7] ([fdo#109271]) +5 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/fi-blb-e6850/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@hangcheck: - fi-rkl-guc: [PASS][8] -> [INCOMPLETE][9] ([i915#4983]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/fi-rkl-guc/igt@i915_selftest@live@hangcheck.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/fi-rkl-guc/igt@i915_selftest@live@hangcheck.html #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - fi-blb-e6850: [INCOMPLETE][10] ([i915#7605]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/fi-blb-e6850/igt@core_hotunplug@unbind-rebind.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/fi-blb-e6850/igt@core_hotunplug@unbind-rebind.html - fi-pnv-d510: [INCOMPLETE][12] ([i915#7605]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/fi-pnv-d510/igt@core_hotunplug@unbind-rebind.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/fi-pnv-d510/igt@core_hotunplug@unbind-rebind.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#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6434]: https://gitlab.freedesktop.org/drm/intel/issues/6434 [i915#6559]: https://gitlab.freedesktop.org/drm/intel/issues/6559 [i915#6794]: https://gitlab.freedesktop.org/drm/intel/issues/6794 [i915#6818]: https://gitlab.freedesktop.org/drm/intel/issues/6818 [i915#7348]: https://gitlab.freedesktop.org/drm/intel/issues/7348 [i915#7605]: https://gitlab.freedesktop.org/drm/intel/issues/7605 Build changes ------------- * Linux: CI_DRM_12440 -> Patchwork_111288v2 CI-20190529: 20190529 CI_DRM_12440: d21d6474a37e5d43075a24668807ea40a7ee9fc1 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7073: d021d66e389f4a759dc749b5f74f278ecd2e6cbf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_111288v2: d21d6474a37e5d43075a24668807ea40a7ee9fc1 @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits 1d52f400e75d drm/i915/huc: always init the delayed load fence == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/index.html [-- Attachment #2: Type: text/html, Size: 5369 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915/huc: always init the delayed load fence (rev2) 2022-11-23 23:54 [Intel-gfx] [PATCH] drm/i915/huc: always init the delayed load fence Daniele Ceraolo Spurio ` (3 preceding siblings ...) 2022-11-28 21:54 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/huc: always init the delayed load fence (rev2) Patchwork @ 2022-11-29 4:55 ` Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2022-11-29 4:55 UTC (permalink / raw) To: Ceraolo Spurio, Daniele; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 44697 bytes --] == Series Details == Series: drm/i915/huc: always init the delayed load fence (rev2) URL : https://patchwork.freedesktop.org/series/111288/ State : success == Summary == CI Bug Log - changes from CI_DRM_12440_full -> Patchwork_111288v2_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_111288v2_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a4: - {shard-dg1}: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-dg1-18/igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a4.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-dg1-15/igt@kms_flip@plain-flip-fb-recreate@d-hdmi-a4.html New tests --------- New tests have been introduced between CI_DRM_12440_full and Patchwork_111288v2_full: ### New IGT tests (1) ### * igt@kms_atomic_transition: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in Patchwork_111288v2_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_balancer@parallel: - shard-iclb: [PASS][3] -> [SKIP][4] ([i915#4525]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-iclb2/igt@gem_exec_balancer@parallel.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb8/igt@gem_exec_balancer@parallel.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [PASS][5] -> [FAIL][6] ([i915#2842]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_params@secure-non-root: - shard-iclb: NOTRUN -> [SKIP][7] ([fdo#112283]) +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb5/igt@gem_exec_params@secure-non-root.html * igt@gem_huc_copy@huc-copy: - shard-apl: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#2190]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-apl1/igt@gem_huc_copy@huc-copy.html - shard-tglb: [PASS][9] -> [SKIP][10] ([i915#2190]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-tglb3/igt@gem_huc_copy@huc-copy.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-tglb7/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-apl: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#4613]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-apl3/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-skl: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#4613]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-skl7/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglb: NOTRUN -> [SKIP][13] ([i915#4613]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-tglb2/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_pxp@create-protected-buffer: - shard-iclb: NOTRUN -> [SKIP][14] ([i915#4270]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb5/igt@gem_pxp@create-protected-buffer.html * igt@gem_render_copy@x-tiled-to-vebox-y-tiled: - shard-iclb: NOTRUN -> [SKIP][15] ([i915#768]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb5/igt@gem_render_copy@x-tiled-to-vebox-y-tiled.html * igt@gem_softpin@evict-single-offset: - shard-tglb: [PASS][16] -> [FAIL][17] ([i915#4171]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-tglb7/igt@gem_softpin@evict-single-offset.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-tglb3/igt@gem_softpin@evict-single-offset.html * igt@gem_userptr_blits@coherency-sync: - shard-iclb: NOTRUN -> [SKIP][18] ([fdo#109290]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb6/igt@gem_userptr_blits@coherency-sync.html - shard-tglb: NOTRUN -> [SKIP][19] ([fdo#110542]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-tglb2/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@coherency-unsync: - shard-iclb: NOTRUN -> [SKIP][20] ([i915#3297]) +2 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb5/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@input-checking: - shard-skl: NOTRUN -> [DMESG-WARN][21] ([i915#4991]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-skl9/igt@gem_userptr_blits@input-checking.html * igt@gen9_exec_parse@allowed-all: - shard-skl: [PASS][22] -> [DMESG-WARN][23] ([i915#5566] / [i915#716]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-skl10/igt@gen9_exec_parse@allowed-all.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-skl7/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@bb-start-far: - shard-iclb: NOTRUN -> [SKIP][24] ([i915#2856]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb5/igt@gen9_exec_parse@bb-start-far.html * igt@i915_pm_dc@dc6-dpms: - shard-skl: NOTRUN -> [FAIL][25] ([i915#3989] / [i915#454]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-skl6/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_dc@dc6-psr: - shard-iclb: [PASS][26] -> [FAIL][27] ([i915#3989] / [i915#454]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-iclb1/igt@i915_pm_dc@dc6-psr.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb3/igt@i915_pm_dc@dc6-psr.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-skl: [PASS][28] -> [WARN][29] ([i915#1804]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-skl9/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-skl4/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-iclb: NOTRUN -> [SKIP][30] ([i915#5286]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-iclb: NOTRUN -> [SKIP][31] ([fdo#110725] / [fdo#111614]) +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-16bpp-rotate-180: - shard-iclb: [PASS][32] -> [FAIL][33] ([i915#5138]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-iclb6/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb2/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-tglb: NOTRUN -> [SKIP][34] ([fdo#111614]) +1 similar issue [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-tglb2/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-skl: NOTRUN -> [SKIP][35] ([fdo#109271] / [i915#3886]) +3 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-skl7/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-iclb: NOTRUN -> [SKIP][36] ([fdo#109278] / [i915#3886]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb5/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_ccs: - shard-tglb: NOTRUN -> [SKIP][37] ([i915#3689]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-tglb2/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][38] ([fdo#109271] / [i915#3886]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-apl1/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs: - shard-tglb: NOTRUN -> [SKIP][39] ([i915#3689] / [i915#6095]) +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-tglb2/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_mc_ccs: - shard-iclb: NOTRUN -> [SKIP][40] ([fdo#109278]) +10 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb6/igt@kms_ccs@pipe-c-bad-pixel-format-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_ccs: - shard-apl: NOTRUN -> [SKIP][41] ([fdo#109271]) +87 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-apl1/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_ccs.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc: - shard-tglb: NOTRUN -> [SKIP][42] ([i915#6095]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-tglb2/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html * igt@kms_chamelium@dp-audio-edid: - shard-tglb: NOTRUN -> [SKIP][43] ([fdo#109284] / [fdo#111827]) +1 similar issue [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-tglb2/igt@kms_chamelium@dp-audio-edid.html * igt@kms_chamelium@hdmi-crc-multiple: - shard-iclb: NOTRUN -> [SKIP][44] ([fdo#109284] / [fdo#111827]) +2 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb6/igt@kms_chamelium@hdmi-crc-multiple.html * igt@kms_chamelium@hdmi-hpd-for-each-pipe: - shard-apl: NOTRUN -> [SKIP][45] ([fdo#109271] / [fdo#111827]) +5 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-apl1/igt@kms_chamelium@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium@hdmi-mode-timings: - shard-skl: NOTRUN -> [SKIP][46] ([fdo#109271] / [fdo#111827]) +2 similar issues [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-skl7/igt@kms_chamelium@hdmi-mode-timings.html * igt@kms_content_protection@atomic@pipe-a-dp-1: - shard-apl: NOTRUN -> [TIMEOUT][47] ([i915#7173]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-apl3/igt@kms_content_protection@atomic@pipe-a-dp-1.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglb: NOTRUN -> [SKIP][48] ([i915#3359]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-tglb2/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor: - shard-iclb: NOTRUN -> [SKIP][49] ([i915#4103]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor.html * igt@kms_cursor_legacy@cursora-vs-flipb@atomic: - shard-iclb: NOTRUN -> [SKIP][50] ([fdo#109274]) +8 similar issues [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb6/igt@kms_cursor_legacy@cursora-vs-flipb@atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb@varying-size: - shard-tglb: NOTRUN -> [SKIP][51] ([fdo#109274] / [fdo#111825]) +5 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-tglb2/igt@kms_cursor_legacy@cursora-vs-flipb@varying-size.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-iclb: NOTRUN -> [SKIP][52] ([i915#3840]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb6/igt@kms_dsc@dsc-with-bpc-formats.html - shard-apl: NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#7205]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-apl8/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-skl: [PASS][54] -> [FAIL][55] ([i915#79]) +1 similar issue [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-skl7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-skl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-skl: [PASS][56] -> [FAIL][57] ([i915#2122]) +1 similar issue [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-skl7/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-skl3/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-iclb: NOTRUN -> [SKIP][58] ([i915#2587] / [i915#2672]) +4 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html - shard-tglb: NOTRUN -> [SKIP][59] ([i915#2587] / [i915#2672]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-tglb2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][60] ([i915#3555]) +2 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-default-mode: - shard-iclb: NOTRUN -> [SKIP][61] ([i915#2672]) +4 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt: - shard-iclb: NOTRUN -> [SKIP][62] ([fdo#109280]) +13 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy: - shard-tglb: NOTRUN -> [SKIP][63] ([i915#6497]) +2 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-tglb2/igt@kms_frontbuffer_tracking@fbcpsr-modesetfrombusy.html * igt@kms_frontbuffer_tracking@fbcpsr-suspend: - shard-skl: NOTRUN -> [SKIP][64] ([fdo#109271]) +44 similar issues [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-skl7/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-tglb: NOTRUN -> [SKIP][65] ([fdo#109280] / [fdo#111825]) +4 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-tglb2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-1: - shard-apl: NOTRUN -> [FAIL][66] ([i915#4573]) +2 similar issues [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-apl1/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-dp-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-edp-1: - shard-tglb: NOTRUN -> [SKIP][67] ([i915#5176]) +3 similar issues [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-tglb2/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-edp-1.html - shard-iclb: NOTRUN -> [SKIP][68] ([i915#5176]) +2 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb6/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1: - shard-iclb: [PASS][69] -> [SKIP][70] ([i915#5235]) +5 similar issues [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-iclb8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-edp-1.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf: - shard-apl: NOTRUN -> [SKIP][71] ([fdo#109271] / [i915#658]) +1 similar issue [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-apl1/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-skl: NOTRUN -> [SKIP][72] ([fdo#109271] / [i915#658]) +1 similar issue [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-skl7/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-iclb: NOTRUN -> [SKIP][73] ([fdo#109642] / [fdo#111068] / [i915#658]) +2 similar issues [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb5/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr2_cursor_blt: - shard-iclb: NOTRUN -> [SKIP][74] ([fdo#109441]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb6/igt@kms_psr@psr2_cursor_blt.html - shard-tglb: NOTRUN -> [FAIL][75] ([i915#132] / [i915#3467]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-tglb2/igt@kms_psr@psr2_cursor_blt.html * igt@kms_psr@psr2_primary_page_flip: - shard-iclb: [PASS][76] -> [SKIP][77] ([fdo#109441]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb8/igt@kms_psr@psr2_primary_page_flip.html * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-b: - shard-iclb: NOTRUN -> [SKIP][78] ([i915#5030]) +2 similar issues [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb5/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-b.html * igt@perf@gen12-oa-tlb-invalidate: - shard-iclb: NOTRUN -> [SKIP][79] ([fdo#109289]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb5/igt@perf@gen12-oa-tlb-invalidate.html * igt@perf_pmu@event-wait@rcs0: - shard-tglb: NOTRUN -> [SKIP][80] ([fdo#112283]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-tglb2/igt@perf_pmu@event-wait@rcs0.html * igt@sysfs_clients@fair-0: - shard-apl: NOTRUN -> [SKIP][81] ([fdo#109271] / [i915#2994]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-apl8/igt@sysfs_clients@fair-0.html - shard-tglb: NOTRUN -> [SKIP][82] ([i915#2994]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-tglb2/igt@sysfs_clients@fair-0.html - shard-iclb: NOTRUN -> [SKIP][83] ([i915#2994]) +1 similar issue [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb6/igt@sysfs_clients@fair-0.html * igt@sysfs_clients@sema-10: - shard-skl: NOTRUN -> [SKIP][84] ([fdo#109271] / [i915#2994]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-skl7/igt@sysfs_clients@sema-10.html #### Possible fixes #### * igt@drm_read@short-buffer-nonblock: - {shard-rkl}: [SKIP][85] ([i915#4098]) -> [PASS][86] +1 similar issue [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-rkl-2/igt@drm_read@short-buffer-nonblock.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-rkl-6/igt@drm_read@short-buffer-nonblock.html * igt@fbdev@info: - {shard-rkl}: [SKIP][87] ([i915#2582]) -> [PASS][88] +1 similar issue [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-rkl-2/igt@fbdev@info.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-rkl-6/igt@fbdev@info.html * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-apl: [DMESG-WARN][89] ([i915#180]) -> [PASS][90] [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-apl6/igt@gem_ctx_isolation@preservation-s3@bcs0.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-apl1/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-iclb: [SKIP][91] ([i915#4525]) -> [PASS][92] [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-iclb5/igt@gem_exec_balancer@parallel-keep-submit-fence.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb1/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-apl: [FAIL][93] ([i915#2842]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-apl8/igt@gem_exec_fair@basic-pace-solo@rcs0.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-apl6/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - {shard-rkl}: [SKIP][95] ([i915#3281]) -> [PASS][96] +7 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-rkl-4/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_whisper@basic-contexts-priority: - {shard-rkl}: [FAIL][97] -> [PASS][98] [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-rkl-5/igt@gem_exec_whisper@basic-contexts-priority.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-rkl-4/igt@gem_exec_whisper@basic-contexts-priority.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - {shard-rkl}: [SKIP][99] ([i915#3282]) -> [PASS][100] +5 similar issues [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gen9_exec_parse@allowed-all: - {shard-rkl}: [SKIP][101] ([i915#2527]) -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-rkl-4/igt@gen9_exec_parse@allowed-all.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-rkl-5/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [DMESG-WARN][103] ([i915#5566] / [i915#716]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-apl2/igt@gen9_exec_parse@allowed-single.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-apl3/igt@gen9_exec_parse@allowed-single.html * igt@i915_pm_dc@dc9-dpms: - shard-iclb: [SKIP][105] ([i915#4281]) -> [PASS][106] [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb6/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - {shard-rkl}: [SKIP][107] ([i915#1397]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-rkl-2/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@pm-tiling: - {shard-rkl}: [SKIP][109] ([fdo#109308]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-rkl-4/igt@i915_pm_rpm@pm-tiling.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-rkl-6/igt@i915_pm_rpm@pm-tiling.html * igt@i915_selftest@live@hangcheck: - shard-tglb: [DMESG-WARN][111] ([i915#5591]) -> [PASS][112] [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-tglb8/igt@i915_selftest@live@hangcheck.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-tglb6/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@mock@timelines: - shard-iclb: [INCOMPLETE][113] ([i915#7605]) -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-iclb1/igt@i915_selftest@mock@timelines.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb6/igt@i915_selftest@mock@timelines.html - {shard-rkl}: [INCOMPLETE][115] ([i915#7605]) -> [PASS][116] [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-rkl-5/igt@i915_selftest@mock@timelines.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-rkl-4/igt@i915_selftest@mock@timelines.html - {shard-dg1}: [INCOMPLETE][117] ([i915#7605]) -> [PASS][118] [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-dg1-17/igt@i915_selftest@mock@timelines.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-dg1-19/igt@i915_selftest@mock@timelines.html - shard-apl: [INCOMPLETE][119] ([i915#7605]) -> [PASS][120] [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-apl7/igt@i915_selftest@mock@timelines.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-apl8/igt@i915_selftest@mock@timelines.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1: - shard-skl: [FAIL][121] ([i915#2521]) -> [PASS][122] +1 similar issue [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-skl9/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-skl4/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-edp-1.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-skl: [FAIL][123] ([i915#79]) -> [PASS][124] +1 similar issue [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-skl7/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-skl3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_flip@flip-vs-suspend@c-edp1: - shard-tglb: [DMESG-WARN][125] ([i915#2411] / [i915#2867]) -> [PASS][126] [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-tglb8/igt@kms_flip@flip-vs-suspend@c-edp1.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-tglb1/igt@kms_flip@flip-vs-suspend@c-edp1.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - {shard-rkl}: [SKIP][127] ([i915#1849] / [i915#4098]) -> [PASS][128] +17 similar issues [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_properties@plane-properties-legacy: - {shard-rkl}: [SKIP][129] ([i915#1849]) -> [PASS][130] +1 similar issue [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-rkl-2/igt@kms_properties@plane-properties-legacy.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-rkl-6/igt@kms_properties@plane-properties-legacy.html * igt@kms_psr@cursor_render: - {shard-rkl}: [SKIP][131] ([i915#1072]) -> [PASS][132] +5 similar issues [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-rkl-2/igt@kms_psr@cursor_render.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-rkl-6/igt@kms_psr@cursor_render.html * igt@kms_universal_plane@disable-primary-vs-flip-pipe-b: - {shard-rkl}: [SKIP][133] ([i915#1845] / [i915#4070] / [i915#4098]) -> [PASS][134] [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-rkl-1/igt@kms_universal_plane@disable-primary-vs-flip-pipe-b.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-rkl-6/igt@kms_universal_plane@disable-primary-vs-flip-pipe-b.html * igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-b: - {shard-rkl}: [SKIP][135] ([i915#4070] / [i915#4098]) -> [PASS][136] [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-rkl-1/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-b.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-rkl-6/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-b.html * igt@kms_vblank@pipe-b-query-idle: - {shard-rkl}: [SKIP][137] ([i915#1845] / [i915#4098]) -> [PASS][138] +26 similar issues [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-rkl-1/igt@kms_vblank@pipe-b-query-idle.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-rkl-6/igt@kms_vblank@pipe-b-query-idle.html * igt@perf@polling: - shard-skl: [FAIL][139] ([i915#1542]) -> [PASS][140] [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-skl9/igt@perf@polling.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-skl9/igt@perf@polling.html #### Warnings #### * igt@kms_fbcon_fbt@fbc-suspend: - shard-tglb: [FAIL][141] ([i915#2411] / [i915#4767]) -> [INCOMPLETE][142] ([i915#2411]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-tglb7/igt@kms_fbcon_fbt@fbc-suspend.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-tglb8/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-edp-1: - shard-skl: [FAIL][143] ([i915#4573]) -> [DMESG-FAIL][144] ([IGT#6]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-skl10/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-edp-1.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-skl9/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-edp-1.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-iclb: [SKIP][145] ([i915#658]) -> [SKIP][146] ([i915#2920]) +1 similar issue [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-iclb6/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@runner@aborted: - shard-apl: ([FAIL][147], [FAIL][148], [FAIL][149], [FAIL][150]) ([fdo#109271] / [i915#180] / [i915#3002] / [i915#4312]) -> [FAIL][151] ([i915#3002] / [i915#4312]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-apl6/igt@runner@aborted.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-apl7/igt@runner@aborted.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-apl1/igt@runner@aborted.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-apl2/igt@runner@aborted.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-apl8/igt@runner@aborted.html - shard-skl: [FAIL][152] ([i915#6949]) -> ([FAIL][153], [FAIL][154], [FAIL][155], [FAIL][156]) ([i915#3002] / [i915#4312] / [i915#6949]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12440/shard-skl1/igt@runner@aborted.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-skl7/igt@runner@aborted.html [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-skl9/igt@runner@aborted.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-skl1/igt@runner@aborted.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_111288v2/shard-skl3/igt@runner@aborted.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#6]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/6 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109290]: https://bugs.freedesktop.org/show_bug.cgi?id=109290 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#110725]: https://bugs.freedesktop.org/show_bug.cgi?id=110725 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542 [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1804]: https://gitlab.freedesktop.org/drm/intel/issues/1804 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2232]: https://gitlab.freedesktop.org/drm/intel/issues/2232 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2532]: https://gitlab.freedesktop.org/drm/intel/issues/2532 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [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#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [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#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258 [i915#6259]: https://gitlab.freedesktop.org/drm/intel/issues/6259 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#6949]: https://gitlab.freedesktop.org/drm/intel/issues/6949 [i915#7052]: https://gitlab.freedesktop.org/drm/intel/issues/7052 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7205]: https://gitlab.freedesktop.org/drm/intel/issues/7205 [i915#7248]: https://gitlab.freedesktop.org/drm/intel/issues/7248 [i915#7605]: https://gitlab.freedesktop.org/drm/intel/issues/7605 [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * Linux: CI_DRM_12440 -> Patchwork_111288v2 CI-20190529: 20190529 CI_DRM_12440: d21d6474a37e5d43075a24668807ea40a7ee9fc1 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7073: d021d66e389f4a759dc749b5f74f278ecd2e6cbf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_111288v2: d21d6474a37e5d43075a24668807ea40a7ee9fc1 @ 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_111288v2/index.html [-- Attachment #2: Type: text/html, Size: 47877 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2022-11-29 4:55 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-11-23 23:54 [Intel-gfx] [PATCH] drm/i915/huc: always init the delayed load fence Daniele Ceraolo Spurio 2022-11-24 0:46 ` [Intel-gfx] ✗ Fi.CI.DOCS: warning for " Patchwork 2022-11-24 1:30 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2022-11-28 18:54 ` [Intel-gfx] [PATCH] " John Harrison 2022-11-28 21:54 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/huc: always init the delayed load fence (rev2) Patchwork 2022-11-29 4:55 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox