* [Intel-gfx] [PATCH v5] drm/i915: Re-use i915 macros for checking PTEs
2021-11-18 20:54 [Intel-gfx] [PATCH v5 0/1] Use i915 macros to check for PTEs Michael Cheng
@ 2021-11-18 20:54 ` Michael Cheng
2021-12-01 0:58 ` Lucas De Marchi
2021-11-18 22:11 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
` (13 subsequent siblings)
14 siblings, 1 reply; 18+ messages in thread
From: Michael Cheng @ 2021-11-18 20:54 UTC (permalink / raw)
To: intel-gfx
Cc: michael.cheng, wayne.boyer, jani.nikula, lucas.demarchi,
dri-devel, siva.mullati
Certain gen8 ppgtt/gtt functions are using _PAGE_RW and _PAGE_PRESENT to check
bits 0 and 1 for PTEs. These macros are defined per architectures, and some
architectures do not have these defined (like arm64). This patch replaces these
two macros with their i915 equivalent implementation.
Signed-off-by: Michael Cheng <michael.cheng@intel.com>
---
drivers/gpu/drm/i915/gt/gen8_ppgtt.c | 6 +++---
drivers/gpu/drm/i915/gt/intel_ggtt.c | 2 +-
drivers/gpu/drm/i915/gvt/gtt.c | 12 ++++++------
3 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/drivers/gpu/drm/i915/gt/gen8_ppgtt.c b/drivers/gpu/drm/i915/gt/gen8_ppgtt.c
index 9966e9dc5218..cc484cc6c26f 100644
--- a/drivers/gpu/drm/i915/gt/gen8_ppgtt.c
+++ b/drivers/gpu/drm/i915/gt/gen8_ppgtt.c
@@ -18,7 +18,7 @@
static u64 gen8_pde_encode(const dma_addr_t addr,
const enum i915_cache_level level)
{
- u64 pde = addr | _PAGE_PRESENT | _PAGE_RW;
+ u64 pde = addr | GEN6_PTE_VALID | BYT_PTE_WRITEABLE;
if (level != I915_CACHE_NONE)
pde |= PPAT_CACHED_PDE;
@@ -32,10 +32,10 @@ static u64 gen8_pte_encode(dma_addr_t addr,
enum i915_cache_level level,
u32 flags)
{
- gen8_pte_t pte = addr | _PAGE_PRESENT | _PAGE_RW;
+ gen8_pte_t pte = addr | GEN6_PTE_VALID | BYT_PTE_WRITEABLE;
if (unlikely(flags & PTE_READ_ONLY))
- pte &= ~_PAGE_RW;
+ pte &= ~BYT_PTE_WRITEABLE;
if (flags & PTE_LM)
pte |= GEN12_PPGTT_PTE_LM;
diff --git a/drivers/gpu/drm/i915/gt/intel_ggtt.c b/drivers/gpu/drm/i915/gt/intel_ggtt.c
index 555111c3bee5..76495deaddc2 100644
--- a/drivers/gpu/drm/i915/gt/intel_ggtt.c
+++ b/drivers/gpu/drm/i915/gt/intel_ggtt.c
@@ -209,7 +209,7 @@ u64 gen8_ggtt_pte_encode(dma_addr_t addr,
enum i915_cache_level level,
u32 flags)
{
- gen8_pte_t pte = addr | _PAGE_PRESENT;
+ gen8_pte_t pte = addr | GEN6_PTE_VALID;
if (flags & PTE_LM)
pte |= GEN12_GGTT_PTE_LM;
diff --git a/drivers/gpu/drm/i915/gvt/gtt.c b/drivers/gpu/drm/i915/gvt/gtt.c
index 53d0cb327539..e481b639ba0a 100644
--- a/drivers/gpu/drm/i915/gvt/gtt.c
+++ b/drivers/gpu/drm/i915/gvt/gtt.c
@@ -446,17 +446,17 @@ static bool gen8_gtt_test_present(struct intel_gvt_gtt_entry *e)
|| e->type == GTT_TYPE_PPGTT_ROOT_L4_ENTRY)
return (e->val64 != 0);
else
- return (e->val64 & _PAGE_PRESENT);
+ return (e->val64 & GEN6_PTE_VALID);
}
static void gtt_entry_clear_present(struct intel_gvt_gtt_entry *e)
{
- e->val64 &= ~_PAGE_PRESENT;
+ e->val64 &= ~GEN6_PTE_VALID;
}
static void gtt_entry_set_present(struct intel_gvt_gtt_entry *e)
{
- e->val64 |= _PAGE_PRESENT;
+ e->val64 |= GEN6_PTE_VALID;
}
static bool gen8_gtt_test_64k_splited(struct intel_gvt_gtt_entry *e)
@@ -2439,7 +2439,7 @@ static int alloc_scratch_pages(struct intel_vgpu *vgpu,
/* The entry parameters like present/writeable/cache type
* set to the same as i915's scratch page tree.
*/
- se.val64 |= _PAGE_PRESENT | _PAGE_RW;
+ se.val64 |= GEN6_PTE_VALID | BYT_PTE_WRITEABLE;
if (type == GTT_TYPE_PPGTT_PDE_PT)
se.val64 |= PPAT_CACHED;
@@ -2896,7 +2896,7 @@ void intel_gvt_restore_ggtt(struct intel_gvt *gvt)
offset = vgpu_aperture_gmadr_base(vgpu) >> PAGE_SHIFT;
for (idx = 0; idx < num_low; idx++) {
pte = mm->ggtt_mm.host_ggtt_aperture[idx];
- if (pte & _PAGE_PRESENT)
+ if (pte & GEN6_PTE_VALID)
write_pte64(vgpu->gvt->gt->ggtt, offset + idx, pte);
}
@@ -2904,7 +2904,7 @@ void intel_gvt_restore_ggtt(struct intel_gvt *gvt)
offset = vgpu_hidden_gmadr_base(vgpu) >> PAGE_SHIFT;
for (idx = 0; idx < num_hi; idx++) {
pte = mm->ggtt_mm.host_ggtt_hidden[idx];
- if (pte & _PAGE_PRESENT)
+ if (pte & GEN6_PTE_VALID)
write_pte64(vgpu->gvt->gt->ggtt, offset + idx, pte);
}
}
--
2.25.1
^ permalink raw reply related [flat|nested] 18+ messages in thread* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Re-use i915 macros for checking PTEs
2021-11-18 20:54 [Intel-gfx] [PATCH v5 0/1] Use i915 macros to check for PTEs Michael Cheng
2021-11-18 20:54 ` [Intel-gfx] [PATCH v5] drm/i915: Re-use i915 macros for checking PTEs Michael Cheng
@ 2021-11-18 22:11 ` Patchwork
2021-11-18 22:44 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
` (12 subsequent siblings)
14 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2021-11-18 22:11 UTC (permalink / raw)
To: Michael Cheng; +Cc: intel-gfx
== Series Details ==
Series: drm/i915: Re-use i915 macros for checking PTEs
URL : https://patchwork.freedesktop.org/series/97090/
State : warning
== Summary ==
$ dim checkpatch origin/drm-tip
07d207216906 drm/i915: Re-use i915 macros for checking PTEs
-:6: WARNING:COMMIT_LOG_LONG_LINE: Possible unwrapped commit description (prefer a maximum 75 chars per line)
#6:
Certain gen8 ppgtt/gtt functions are using _PAGE_RW and _PAGE_PRESENT to check
total: 0 errors, 1 warnings, 0 checks, 72 lines checked
^ permalink raw reply [flat|nested] 18+ messages in thread* [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Re-use i915 macros for checking PTEs
2021-11-18 20:54 [Intel-gfx] [PATCH v5 0/1] Use i915 macros to check for PTEs Michael Cheng
2021-11-18 20:54 ` [Intel-gfx] [PATCH v5] drm/i915: Re-use i915 macros for checking PTEs Michael Cheng
2021-11-18 22:11 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
@ 2021-11-18 22:44 ` Patchwork
2021-12-01 18:12 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Re-use i915 macros for checking PTEs (rev7) Patchwork
` (11 subsequent siblings)
14 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2021-11-18 22:44 UTC (permalink / raw)
To: Michael Cheng; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 8622 bytes --]
== Series Details ==
Series: drm/i915: Re-use i915 macros for checking PTEs
URL : https://patchwork.freedesktop.org/series/97090/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_10901 -> Patchwork_21635
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_21635 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_21635, 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_21635/index.html
Participating hosts (36 -> 32)
------------------------------
Additional (1): fi-tgl-1115g4
Missing (5): bat-dg1-6 fi-tgl-u2 fi-bsw-cyan fi-ctg-p8600 bat-jsl-1
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_21635:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@gem_contexts:
- fi-bsw-kefka: [PASS][1] -> [DMESG-FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10901/fi-bsw-kefka/igt@i915_selftest@live@gem_contexts.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21635/fi-bsw-kefka/igt@i915_selftest@live@gem_contexts.html
- fi-skl-6700k2: [PASS][3] -> [DMESG-FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10901/fi-skl-6700k2/igt@i915_selftest@live@gem_contexts.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21635/fi-skl-6700k2/igt@i915_selftest@live@gem_contexts.html
- fi-cfl-8700k: [PASS][5] -> [DMESG-FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10901/fi-cfl-8700k/igt@i915_selftest@live@gem_contexts.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21635/fi-cfl-8700k/igt@i915_selftest@live@gem_contexts.html
- fi-kbl-7567u: [PASS][7] -> [DMESG-FAIL][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10901/fi-kbl-7567u/igt@i915_selftest@live@gem_contexts.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21635/fi-kbl-7567u/igt@i915_selftest@live@gem_contexts.html
- fi-cfl-guc: [PASS][9] -> [DMESG-FAIL][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10901/fi-cfl-guc/igt@i915_selftest@live@gem_contexts.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21635/fi-cfl-guc/igt@i915_selftest@live@gem_contexts.html
- fi-bdw-5557u: [PASS][11] -> [DMESG-FAIL][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10901/fi-bdw-5557u/igt@i915_selftest@live@gem_contexts.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21635/fi-bdw-5557u/igt@i915_selftest@live@gem_contexts.html
- fi-kbl-7500u: [PASS][13] -> [DMESG-FAIL][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10901/fi-kbl-7500u/igt@i915_selftest@live@gem_contexts.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21635/fi-kbl-7500u/igt@i915_selftest@live@gem_contexts.html
Known issues
------------
Here are the changes found in Patchwork_21635 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@amdgpu/amd_basic@query-info:
- fi-tgl-1115g4: NOTRUN -> [SKIP][15] ([fdo#109315])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21635/fi-tgl-1115g4/igt@amdgpu/amd_basic@query-info.html
* igt@amdgpu/amd_cs_nop@nop-gfx0:
- fi-tgl-1115g4: NOTRUN -> [SKIP][16] ([fdo#109315] / [i915#2575]) +16 similar issues
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21635/fi-tgl-1115g4/igt@amdgpu/amd_cs_nop@nop-gfx0.html
* igt@gem_exec_suspend@basic-s0:
- fi-tgl-1115g4: NOTRUN -> [FAIL][17] ([i915#1888])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21635/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s0.html
* igt@gem_flink_basic@bad-flink:
- fi-skl-6600u: NOTRUN -> [FAIL][18] ([i915#4547])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21635/fi-skl-6600u/igt@gem_flink_basic@bad-flink.html
* igt@gem_huc_copy@huc-copy:
- fi-tgl-1115g4: NOTRUN -> [SKIP][19] ([i915#2190])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21635/fi-tgl-1115g4/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-tgl-1115g4: NOTRUN -> [SKIP][20] ([i915#4555])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21635/fi-tgl-1115g4/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@verify-random:
- fi-tgl-1115g4: NOTRUN -> [SKIP][21] ([i915#4555] / [i915#4565]) +2 similar issues
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21635/fi-tgl-1115g4/igt@gem_lmem_swapping@verify-random.html
* igt@i915_pm_backlight@basic-brightness:
- fi-tgl-1115g4: NOTRUN -> [SKIP][22] ([i915#1155])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21635/fi-tgl-1115g4/igt@i915_pm_backlight@basic-brightness.html
* igt@i915_pm_rpm@module-reload:
- fi-kbl-guc: [PASS][23] -> [SKIP][24] ([fdo#109271])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10901/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21635/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html
* igt@kms_chamelium@common-hpd-after-suspend:
- fi-tgl-1115g4: NOTRUN -> [SKIP][25] ([fdo#111827]) +8 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21635/fi-tgl-1115g4/igt@kms_chamelium@common-hpd-after-suspend.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- fi-tgl-1115g4: NOTRUN -> [SKIP][26] ([i915#4103]) +1 similar issue
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21635/fi-tgl-1115g4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_force_connector_basic@force-load-detect:
- fi-tgl-1115g4: NOTRUN -> [SKIP][27] ([fdo#109285])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21635/fi-tgl-1115g4/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_psr@primary_mmap_gtt:
- fi-tgl-1115g4: NOTRUN -> [SKIP][28] ([i915#1072]) +3 similar issues
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21635/fi-tgl-1115g4/igt@kms_psr@primary_mmap_gtt.html
* igt@prime_vgem@basic-userptr:
- fi-tgl-1115g4: NOTRUN -> [SKIP][29] ([i915#3301])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21635/fi-tgl-1115g4/igt@prime_vgem@basic-userptr.html
#### Possible fixes ####
* igt@gem_exec_suspend@basic-s3:
- fi-skl-6600u: [INCOMPLETE][30] ([i915#2369]) -> [PASS][31]
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10901/fi-skl-6600u/igt@gem_exec_suspend@basic-s3.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21635/fi-skl-6600u/igt@gem_exec_suspend@basic-s3.html
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
[i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2369]: https://gitlab.freedesktop.org/drm/intel/issues/2369
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4547]: https://gitlab.freedesktop.org/drm/intel/issues/4547
[i915#4555]: https://gitlab.freedesktop.org/drm/intel/issues/4555
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
Build changes
-------------
* Linux: CI_DRM_10901 -> Patchwork_21635
CI-20190529: 20190529
CI_DRM_10901: 86af48fb380e4576aa15ef3d60f91c422ec356d6 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_6285: 2e0355faad5c2e81cd6705b76e529ce526c7c9bf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_21635: 07d207216906b2aefb9b87c8de4dbdb664edd759 @ git://anongit.freedesktop.org/gfx-ci/linux
== Linux commits ==
07d207216906 drm/i915: Re-use i915 macros for checking PTEs
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21635/index.html
[-- Attachment #2: Type: text/html, Size: 9862 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Re-use i915 macros for checking PTEs (rev7)
2021-11-18 20:54 [Intel-gfx] [PATCH v5 0/1] Use i915 macros to check for PTEs Michael Cheng
` (2 preceding siblings ...)
2021-11-18 22:44 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
@ 2021-12-01 18:12 ` Patchwork
2021-12-01 18:46 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
` (10 subsequent siblings)
14 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2021-12-01 18:12 UTC (permalink / raw)
To: Michael Cheng; +Cc: intel-gfx
== Series Details ==
Series: drm/i915: Re-use i915 macros for checking PTEs (rev7)
URL : https://patchwork.freedesktop.org/series/97090/
State : warning
== Summary ==
$ dim checkpatch origin/drm-tip
68b441f63a8e drm/i915: Re-use i915 macros for checking PTEs
-:6: WARNING:COMMIT_LOG_LONG_LINE: Possible unwrapped commit description (prefer a maximum 75 chars per line)
#6:
Certain gen8 ppgtt/gtt functions are using _PAGE_RW and _PAGE_PRESENT to check
total: 0 errors, 1 warnings, 0 checks, 72 lines checked
^ permalink raw reply [flat|nested] 18+ messages in thread* [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Re-use i915 macros for checking PTEs (rev7)
2021-11-18 20:54 [Intel-gfx] [PATCH v5 0/1] Use i915 macros to check for PTEs Michael Cheng
` (3 preceding siblings ...)
2021-12-01 18:12 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Re-use i915 macros for checking PTEs (rev7) Patchwork
@ 2021-12-01 18:46 ` Patchwork
2021-12-01 20:18 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Re-use i915 macros for checking PTEs (rev8) Patchwork
` (9 subsequent siblings)
14 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2021-12-01 18:46 UTC (permalink / raw)
To: Michael Cheng; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 7663 bytes --]
== Series Details ==
Series: drm/i915: Re-use i915 macros for checking PTEs (rev7)
URL : https://patchwork.freedesktop.org/series/97090/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_10950 -> Patchwork_21717
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_21717 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_21717, 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_21717/index.html
Participating hosts (40 -> 32)
------------------------------
Additional (1): fi-kbl-soraka
Missing (9): bat-dg1-6 bat-dg1-5 fi-bsw-cyan fi-apl-guc bat-adlp-6 bat-adlp-4 fi-pnv-d510 bat-jsl-2 bat-jsl-1
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_21717:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@gem_contexts:
- fi-bsw-kefka: [PASS][1] -> [DMESG-FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10950/fi-bsw-kefka/igt@i915_selftest@live@gem_contexts.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21717/fi-bsw-kefka/igt@i915_selftest@live@gem_contexts.html
- fi-glk-dsi: [PASS][3] -> [DMESG-FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10950/fi-glk-dsi/igt@i915_selftest@live@gem_contexts.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21717/fi-glk-dsi/igt@i915_selftest@live@gem_contexts.html
- fi-skl-6700k2: [PASS][5] -> [DMESG-FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10950/fi-skl-6700k2/igt@i915_selftest@live@gem_contexts.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21717/fi-skl-6700k2/igt@i915_selftest@live@gem_contexts.html
- fi-cfl-8700k: [PASS][7] -> [DMESG-FAIL][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10950/fi-cfl-8700k/igt@i915_selftest@live@gem_contexts.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21717/fi-cfl-8700k/igt@i915_selftest@live@gem_contexts.html
- fi-bsw-n3050: [PASS][9] -> [DMESG-FAIL][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10950/fi-bsw-n3050/igt@i915_selftest@live@gem_contexts.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21717/fi-bsw-n3050/igt@i915_selftest@live@gem_contexts.html
- fi-kbl-7567u: [PASS][11] -> [DMESG-FAIL][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10950/fi-kbl-7567u/igt@i915_selftest@live@gem_contexts.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21717/fi-kbl-7567u/igt@i915_selftest@live@gem_contexts.html
- fi-cfl-guc: [PASS][13] -> [DMESG-FAIL][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10950/fi-cfl-guc/igt@i915_selftest@live@gem_contexts.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21717/fi-cfl-guc/igt@i915_selftest@live@gem_contexts.html
- fi-bxt-dsi: [PASS][15] -> [DMESG-FAIL][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10950/fi-bxt-dsi/igt@i915_selftest@live@gem_contexts.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21717/fi-bxt-dsi/igt@i915_selftest@live@gem_contexts.html
- fi-bdw-5557u: [PASS][17] -> [DMESG-FAIL][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10950/fi-bdw-5557u/igt@i915_selftest@live@gem_contexts.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21717/fi-bdw-5557u/igt@i915_selftest@live@gem_contexts.html
- fi-kbl-7500u: [PASS][19] -> [DMESG-FAIL][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10950/fi-kbl-7500u/igt@i915_selftest@live@gem_contexts.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21717/fi-kbl-7500u/igt@i915_selftest@live@gem_contexts.html
Known issues
------------
Here are the changes found in Patchwork_21717 that come from known issues:
### CI changes ###
#### Issues hit ####
* boot:
- fi-kbl-soraka: NOTRUN -> [FAIL][21] ([i915#4337])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21717/fi-kbl-soraka/boot.html
### IGT changes ###
#### Issues hit ####
* igt@amdgpu/amd_basic@cs-gfx:
- fi-rkl-guc: NOTRUN -> [SKIP][22] ([fdo#109315]) +17 similar issues
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21717/fi-rkl-guc/igt@amdgpu/amd_basic@cs-gfx.html
* igt@kms_psr@primary_page_flip:
- fi-skl-6600u: [PASS][23] -> [INCOMPLETE][24] ([i915#198])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10950/fi-skl-6600u/igt@kms_psr@primary_page_flip.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21717/fi-skl-6600u/igt@kms_psr@primary_page_flip.html
#### Possible fixes ####
* igt@gem_exec_suspend@basic-s3:
- fi-tgl-1115g4: [FAIL][25] ([i915#1888]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10950/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21717/fi-tgl-1115g4/igt@gem_exec_suspend@basic-s3.html
* igt@i915_selftest@live@gt_engines:
- fi-rkl-guc: [INCOMPLETE][27] ([i915#4432]) -> [PASS][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10950/fi-rkl-guc/igt@i915_selftest@live@gt_engines.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21717/fi-rkl-guc/igt@i915_selftest@live@gt_engines.html
* igt@i915_selftest@live@gt_heartbeat:
- fi-bdw-5557u: [DMESG-FAIL][29] ([i915#541]) -> [PASS][30]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10950/fi-bdw-5557u/igt@i915_selftest@live@gt_heartbeat.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21717/fi-bdw-5557u/igt@i915_selftest@live@gt_heartbeat.html
* igt@kms_frontbuffer_tracking@basic:
- fi-cml-u2: [DMESG-WARN][31] ([i915#4269]) -> [PASS][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10950/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21717/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
[i915#198]: https://gitlab.freedesktop.org/drm/intel/issues/198
[i915#4269]: https://gitlab.freedesktop.org/drm/intel/issues/4269
[i915#4337]: https://gitlab.freedesktop.org/drm/intel/issues/4337
[i915#4432]: https://gitlab.freedesktop.org/drm/intel/issues/4432
[i915#456]: https://gitlab.freedesktop.org/drm/intel/issues/456
[i915#541]: https://gitlab.freedesktop.org/drm/intel/issues/541
Build changes
-------------
* Linux: CI_DRM_10950 -> Patchwork_21717
CI-20190529: 20190529
CI_DRM_10950: 8088766e298d5a8504c59be3a3812adfb8655fb7 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_6298: f062f4ae60ecf47af4b037c8f9952a1360662579 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_21717: 68b441f63a8e78c026b90db4cf48b11862615826 @ git://anongit.freedesktop.org/gfx-ci/linux
== Linux commits ==
68b441f63a8e drm/i915: Re-use i915 macros for checking PTEs
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21717/index.html
[-- Attachment #2: Type: text/html, Size: 8556 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Re-use i915 macros for checking PTEs (rev8)
2021-11-18 20:54 [Intel-gfx] [PATCH v5 0/1] Use i915 macros to check for PTEs Michael Cheng
` (4 preceding siblings ...)
2021-12-01 18:46 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
@ 2021-12-01 20:18 ` Patchwork
2021-12-01 20:50 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
` (8 subsequent siblings)
14 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2021-12-01 20:18 UTC (permalink / raw)
To: Michael Cheng; +Cc: intel-gfx
== Series Details ==
Series: drm/i915: Re-use i915 macros for checking PTEs (rev8)
URL : https://patchwork.freedesktop.org/series/97090/
State : warning
== Summary ==
$ dim checkpatch origin/drm-tip
6a888e8bac16 drm/i915: Re-use i915 macros for checking PTEs
-:6: WARNING:COMMIT_LOG_LONG_LINE: Possible unwrapped commit description (prefer a maximum 75 chars per line)
#6:
Certain gen8 ppgtt/gtt functions are using _PAGE_RW and _PAGE_PRESENT to check
total: 0 errors, 1 warnings, 0 checks, 72 lines checked
^ permalink raw reply [flat|nested] 18+ messages in thread* [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Re-use i915 macros for checking PTEs (rev8)
2021-11-18 20:54 [Intel-gfx] [PATCH v5 0/1] Use i915 macros to check for PTEs Michael Cheng
` (5 preceding siblings ...)
2021-12-01 20:18 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Re-use i915 macros for checking PTEs (rev8) Patchwork
@ 2021-12-01 20:50 ` Patchwork
2021-12-01 22:29 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Re-use i915 macros for checking PTEs (rev9) Patchwork
` (7 subsequent siblings)
14 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2021-12-01 20:50 UTC (permalink / raw)
To: Michael Cheng; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 8249 bytes --]
== Series Details ==
Series: drm/i915: Re-use i915 macros for checking PTEs (rev8)
URL : https://patchwork.freedesktop.org/series/97090/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_10951 -> Patchwork_21719
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_21719 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_21719, 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_21719/index.html
Participating hosts (39 -> 33)
------------------------------
Additional (1): fi-icl-u2
Missing (7): bat-dg1-6 bat-dg1-5 fi-bsw-cyan bat-adlp-6 fi-pnv-d510 bat-jsl-2 bat-jsl-1
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_21719:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@gem_contexts:
- fi-skl-6600u: NOTRUN -> [DMESG-FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21719/fi-skl-6600u/igt@i915_selftest@live@gem_contexts.html
- fi-bsw-kefka: [PASS][2] -> [DMESG-FAIL][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10951/fi-bsw-kefka/igt@i915_selftest@live@gem_contexts.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21719/fi-bsw-kefka/igt@i915_selftest@live@gem_contexts.html
- fi-glk-dsi: [PASS][4] -> [DMESG-FAIL][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10951/fi-glk-dsi/igt@i915_selftest@live@gem_contexts.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21719/fi-glk-dsi/igt@i915_selftest@live@gem_contexts.html
- fi-skl-6700k2: [PASS][6] -> [DMESG-FAIL][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10951/fi-skl-6700k2/igt@i915_selftest@live@gem_contexts.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21719/fi-skl-6700k2/igt@i915_selftest@live@gem_contexts.html
- fi-cfl-8700k: [PASS][8] -> [DMESG-FAIL][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10951/fi-cfl-8700k/igt@i915_selftest@live@gem_contexts.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21719/fi-cfl-8700k/igt@i915_selftest@live@gem_contexts.html
- fi-bsw-n3050: [PASS][10] -> [DMESG-FAIL][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10951/fi-bsw-n3050/igt@i915_selftest@live@gem_contexts.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21719/fi-bsw-n3050/igt@i915_selftest@live@gem_contexts.html
- fi-kbl-7567u: [PASS][12] -> [DMESG-FAIL][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10951/fi-kbl-7567u/igt@i915_selftest@live@gem_contexts.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21719/fi-kbl-7567u/igt@i915_selftest@live@gem_contexts.html
- fi-cfl-guc: [PASS][14] -> [DMESG-FAIL][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10951/fi-cfl-guc/igt@i915_selftest@live@gem_contexts.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21719/fi-cfl-guc/igt@i915_selftest@live@gem_contexts.html
- fi-bxt-dsi: [PASS][16] -> [DMESG-FAIL][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10951/fi-bxt-dsi/igt@i915_selftest@live@gem_contexts.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21719/fi-bxt-dsi/igt@i915_selftest@live@gem_contexts.html
- fi-bdw-5557u: [PASS][18] -> [DMESG-FAIL][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10951/fi-bdw-5557u/igt@i915_selftest@live@gem_contexts.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21719/fi-bdw-5557u/igt@i915_selftest@live@gem_contexts.html
- fi-kbl-7500u: [PASS][20] -> [DMESG-FAIL][21]
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10951/fi-kbl-7500u/igt@i915_selftest@live@gem_contexts.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21719/fi-kbl-7500u/igt@i915_selftest@live@gem_contexts.html
Known issues
------------
Here are the changes found in Patchwork_21719 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@amdgpu/amd_cs_nop@fork-gfx0:
- fi-icl-u2: NOTRUN -> [SKIP][22] ([fdo#109315]) +17 similar issues
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21719/fi-icl-u2/igt@amdgpu/amd_cs_nop@fork-gfx0.html
* igt@amdgpu/amd_cs_nop@sync-fork-gfx0:
- fi-skl-6600u: NOTRUN -> [SKIP][23] ([fdo#109271]) +18 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21719/fi-skl-6600u/igt@amdgpu/amd_cs_nop@sync-fork-gfx0.html
* igt@gem_huc_copy@huc-copy:
- fi-icl-u2: NOTRUN -> [SKIP][24] ([i915#2190])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21719/fi-icl-u2/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@parallel-random-engines:
- fi-icl-u2: NOTRUN -> [SKIP][25] ([i915#4613]) +3 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21719/fi-icl-u2/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@kms_chamelium@hdmi-hpd-fast:
- fi-icl-u2: NOTRUN -> [SKIP][26] ([fdo#111827]) +8 similar issues
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21719/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- fi-icl-u2: NOTRUN -> [SKIP][27] ([fdo#109278]) +2 similar issues
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21719/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_force_connector_basic@force-load-detect:
- fi-icl-u2: NOTRUN -> [SKIP][28] ([fdo#109285])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21719/fi-icl-u2/igt@kms_force_connector_basic@force-load-detect.html
* igt@prime_vgem@basic-userptr:
- fi-icl-u2: NOTRUN -> [SKIP][29] ([i915#3301])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21719/fi-icl-u2/igt@prime_vgem@basic-userptr.html
#### Possible fixes ####
* igt@kms_frontbuffer_tracking@basic:
- fi-cml-u2: [DMESG-WARN][30] ([i915#4269]) -> [PASS][31]
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10951/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21719/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_psr@primary_page_flip:
- fi-skl-6600u: [FAIL][32] ([i915#4547]) -> [PASS][33]
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10951/fi-skl-6600u/igt@kms_psr@primary_page_flip.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21719/fi-skl-6600u/igt@kms_psr@primary_page_flip.html
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#4269]: https://gitlab.freedesktop.org/drm/intel/issues/4269
[i915#4547]: https://gitlab.freedesktop.org/drm/intel/issues/4547
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
Build changes
-------------
* Linux: CI_DRM_10951 -> Patchwork_21719
CI-20190529: 20190529
CI_DRM_10951: b2f27a7653d9b5787aef65fc2976d47d38a51768 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_6298: f062f4ae60ecf47af4b037c8f9952a1360662579 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_21719: 6a888e8bac1691922dd9b4035e3c9e906aca1195 @ git://anongit.freedesktop.org/gfx-ci/linux
== Linux commits ==
6a888e8bac16 drm/i915: Re-use i915 macros for checking PTEs
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21719/index.html
[-- Attachment #2: Type: text/html, Size: 9291 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Re-use i915 macros for checking PTEs (rev9)
2021-11-18 20:54 [Intel-gfx] [PATCH v5 0/1] Use i915 macros to check for PTEs Michael Cheng
` (6 preceding siblings ...)
2021-12-01 20:50 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
@ 2021-12-01 22:29 ` Patchwork
2021-12-01 23:02 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
` (6 subsequent siblings)
14 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2021-12-01 22:29 UTC (permalink / raw)
To: Michael Cheng; +Cc: intel-gfx
== Series Details ==
Series: drm/i915: Re-use i915 macros for checking PTEs (rev9)
URL : https://patchwork.freedesktop.org/series/97090/
State : warning
== Summary ==
$ dim checkpatch origin/drm-tip
3809a1d72d34 drm/i915: Re-use i915 macros for checking PTEs
-:6: WARNING:COMMIT_LOG_LONG_LINE: Possible unwrapped commit description (prefer a maximum 75 chars per line)
#6:
Certain gen8 ppgtt/gtt functions are using _PAGE_RW and _PAGE_PRESENT to check
total: 0 errors, 1 warnings, 0 checks, 72 lines checked
^ permalink raw reply [flat|nested] 18+ messages in thread* [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Re-use i915 macros for checking PTEs (rev9)
2021-11-18 20:54 [Intel-gfx] [PATCH v5 0/1] Use i915 macros to check for PTEs Michael Cheng
` (7 preceding siblings ...)
2021-12-01 22:29 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Re-use i915 macros for checking PTEs (rev9) Patchwork
@ 2021-12-01 23:02 ` Patchwork
2021-12-02 18:30 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Re-use i915 macros for checking PTEs (rev10) Patchwork
` (5 subsequent siblings)
14 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2021-12-01 23:02 UTC (permalink / raw)
To: Michael Cheng; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 9604 bytes --]
== Series Details ==
Series: drm/i915: Re-use i915 macros for checking PTEs (rev9)
URL : https://patchwork.freedesktop.org/series/97090/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_10951 -> Patchwork_21721
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_21721 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_21721, 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_21721/index.html
Participating hosts (39 -> 34)
------------------------------
Additional (2): fi-kbl-soraka fi-icl-u2
Missing (7): bat-dg1-6 bat-dg1-5 fi-bsw-cyan bat-adlp-6 fi-pnv-d510 bat-jsl-2 bat-jsl-1
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_21721:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@gem_contexts:
- fi-skl-6600u: NOTRUN -> [DMESG-FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/fi-skl-6600u/igt@i915_selftest@live@gem_contexts.html
- fi-bsw-kefka: [PASS][2] -> [DMESG-FAIL][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10951/fi-bsw-kefka/igt@i915_selftest@live@gem_contexts.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/fi-bsw-kefka/igt@i915_selftest@live@gem_contexts.html
- fi-glk-dsi: [PASS][4] -> [DMESG-FAIL][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10951/fi-glk-dsi/igt@i915_selftest@live@gem_contexts.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/fi-glk-dsi/igt@i915_selftest@live@gem_contexts.html
- fi-skl-6700k2: [PASS][6] -> [DMESG-FAIL][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10951/fi-skl-6700k2/igt@i915_selftest@live@gem_contexts.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/fi-skl-6700k2/igt@i915_selftest@live@gem_contexts.html
- fi-cfl-8700k: [PASS][8] -> [DMESG-FAIL][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10951/fi-cfl-8700k/igt@i915_selftest@live@gem_contexts.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/fi-cfl-8700k/igt@i915_selftest@live@gem_contexts.html
- fi-bsw-n3050: [PASS][10] -> [DMESG-FAIL][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10951/fi-bsw-n3050/igt@i915_selftest@live@gem_contexts.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/fi-bsw-n3050/igt@i915_selftest@live@gem_contexts.html
- fi-kbl-7567u: [PASS][12] -> [DMESG-FAIL][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10951/fi-kbl-7567u/igt@i915_selftest@live@gem_contexts.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/fi-kbl-7567u/igt@i915_selftest@live@gem_contexts.html
- fi-cfl-guc: [PASS][14] -> [DMESG-FAIL][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10951/fi-cfl-guc/igt@i915_selftest@live@gem_contexts.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/fi-cfl-guc/igt@i915_selftest@live@gem_contexts.html
- fi-bxt-dsi: [PASS][16] -> [DMESG-FAIL][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10951/fi-bxt-dsi/igt@i915_selftest@live@gem_contexts.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/fi-bxt-dsi/igt@i915_selftest@live@gem_contexts.html
- fi-kbl-7500u: [PASS][18] -> [DMESG-FAIL][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10951/fi-kbl-7500u/igt@i915_selftest@live@gem_contexts.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/fi-kbl-7500u/igt@i915_selftest@live@gem_contexts.html
Known issues
------------
Here are the changes found in Patchwork_21721 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@amdgpu/amd_cs_nop@fork-gfx0:
- fi-icl-u2: NOTRUN -> [SKIP][20] ([fdo#109315]) +17 similar issues
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/fi-icl-u2/igt@amdgpu/amd_cs_nop@fork-gfx0.html
* igt@amdgpu/amd_cs_nop@sync-fork-gfx0:
- fi-skl-6600u: NOTRUN -> [SKIP][21] ([fdo#109271]) +18 similar issues
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/fi-skl-6600u/igt@amdgpu/amd_cs_nop@sync-fork-gfx0.html
* igt@gem_exec_fence@basic-busy@bcs0:
- fi-kbl-soraka: NOTRUN -> [SKIP][22] ([fdo#109271]) +8 similar issues
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/fi-kbl-soraka/igt@gem_exec_fence@basic-busy@bcs0.html
* igt@gem_exec_suspend@basic-s3:
- fi-bdw-5557u: [PASS][23] -> [INCOMPLETE][24] ([i915#146])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10951/fi-bdw-5557u/igt@gem_exec_suspend@basic-s3.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/fi-bdw-5557u/igt@gem_exec_suspend@basic-s3.html
* igt@gem_huc_copy@huc-copy:
- fi-kbl-soraka: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#2190])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
- fi-icl-u2: NOTRUN -> [SKIP][26] ([i915#2190])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/fi-icl-u2/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-kbl-soraka: NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#4613]) +3 similar issues
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@parallel-random-engines:
- fi-icl-u2: NOTRUN -> [SKIP][28] ([i915#4613]) +3 similar issues
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/fi-icl-u2/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@i915_selftest@live@gt_pm:
- fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][29] ([i915#1886] / [i915#2291])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html
* igt@kms_chamelium@common-hpd-after-suspend:
- fi-kbl-soraka: NOTRUN -> [SKIP][30] ([fdo#109271] / [fdo#111827]) +8 similar issues
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/fi-kbl-soraka/igt@kms_chamelium@common-hpd-after-suspend.html
* igt@kms_chamelium@hdmi-hpd-fast:
- fi-icl-u2: NOTRUN -> [SKIP][31] ([fdo#111827]) +8 similar issues
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- fi-icl-u2: NOTRUN -> [SKIP][32] ([fdo#109278]) +2 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_force_connector_basic@force-load-detect:
- fi-icl-u2: NOTRUN -> [SKIP][33] ([fdo#109285])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/fi-icl-u2/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
- fi-kbl-soraka: NOTRUN -> [SKIP][34] ([fdo#109271] / [i915#533])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/fi-kbl-soraka/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html
* igt@prime_vgem@basic-userptr:
- fi-icl-u2: NOTRUN -> [SKIP][35] ([i915#3301])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/fi-icl-u2/igt@prime_vgem@basic-userptr.html
#### Possible fixes ####
* igt@kms_psr@primary_page_flip:
- fi-skl-6600u: [FAIL][36] ([i915#4547]) -> [PASS][37]
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10951/fi-skl-6600u/igt@kms_psr@primary_page_flip.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/fi-skl-6600u/igt@kms_psr@primary_page_flip.html
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#146]: https://gitlab.freedesktop.org/drm/intel/issues/146
[i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2291]: https://gitlab.freedesktop.org/drm/intel/issues/2291
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#4547]: https://gitlab.freedesktop.org/drm/intel/issues/4547
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
Build changes
-------------
* Linux: CI_DRM_10951 -> Patchwork_21721
CI-20190529: 20190529
CI_DRM_10951: b2f27a7653d9b5787aef65fc2976d47d38a51768 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_6298: f062f4ae60ecf47af4b037c8f9952a1360662579 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_21721: 3809a1d72d34fddd31fe42edcd25f8f0845510c2 @ git://anongit.freedesktop.org/gfx-ci/linux
== Linux commits ==
3809a1d72d34 drm/i915: Re-use i915 macros for checking PTEs
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21721/index.html
[-- Attachment #2: Type: text/html, Size: 11299 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Re-use i915 macros for checking PTEs (rev10)
2021-11-18 20:54 [Intel-gfx] [PATCH v5 0/1] Use i915 macros to check for PTEs Michael Cheng
` (8 preceding siblings ...)
2021-12-01 23:02 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
@ 2021-12-02 18:30 ` Patchwork
2021-12-02 19:11 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
` (4 subsequent siblings)
14 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2021-12-02 18:30 UTC (permalink / raw)
To: Michael Cheng; +Cc: intel-gfx
== Series Details ==
Series: drm/i915: Re-use i915 macros for checking PTEs (rev10)
URL : https://patchwork.freedesktop.org/series/97090/
State : warning
== Summary ==
$ dim checkpatch origin/drm-tip
ccb569c471b6 drm/i915: Re-use i915 macros for checking PTEs
-:6: WARNING:COMMIT_LOG_LONG_LINE: Possible unwrapped commit description (prefer a maximum 75 chars per line)
#6:
Certain gen8 ppgtt/gtt functions are using _PAGE_RW and _PAGE_PRESENT to check
total: 0 errors, 1 warnings, 0 checks, 72 lines checked
^ permalink raw reply [flat|nested] 18+ messages in thread* [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Re-use i915 macros for checking PTEs (rev10)
2021-11-18 20:54 [Intel-gfx] [PATCH v5 0/1] Use i915 macros to check for PTEs Michael Cheng
` (9 preceding siblings ...)
2021-12-02 18:30 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Re-use i915 macros for checking PTEs (rev10) Patchwork
@ 2021-12-02 19:11 ` Patchwork
2021-12-02 19:51 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Re-use i915 macros for checking PTEs (rev11) Patchwork
` (3 subsequent siblings)
14 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2021-12-02 19:11 UTC (permalink / raw)
To: Michael Cheng; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 6372 bytes --]
== Series Details ==
Series: drm/i915: Re-use i915 macros for checking PTEs (rev10)
URL : https://patchwork.freedesktop.org/series/97090/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_10956 -> Patchwork_21732
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_21732 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_21732, 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_21732/index.html
Participating hosts (39 -> 32)
------------------------------
Missing (7): bat-dg1-6 bat-dg1-5 fi-icl-u2 fi-bsw-cyan bat-adlp-4 bat-jsl-2 bat-jsl-1
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_21732:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@gem_contexts:
- fi-bsw-kefka: [PASS][1] -> [DMESG-FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-bsw-kefka/igt@i915_selftest@live@gem_contexts.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21732/fi-bsw-kefka/igt@i915_selftest@live@gem_contexts.html
- fi-glk-dsi: [PASS][3] -> [DMESG-FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-glk-dsi/igt@i915_selftest@live@gem_contexts.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21732/fi-glk-dsi/igt@i915_selftest@live@gem_contexts.html
- fi-skl-6700k2: [PASS][5] -> [DMESG-FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-skl-6700k2/igt@i915_selftest@live@gem_contexts.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21732/fi-skl-6700k2/igt@i915_selftest@live@gem_contexts.html
- fi-cfl-8700k: [PASS][7] -> [DMESG-FAIL][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-cfl-8700k/igt@i915_selftest@live@gem_contexts.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21732/fi-cfl-8700k/igt@i915_selftest@live@gem_contexts.html
- fi-bsw-n3050: [PASS][9] -> [DMESG-FAIL][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-bsw-n3050/igt@i915_selftest@live@gem_contexts.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21732/fi-bsw-n3050/igt@i915_selftest@live@gem_contexts.html
- fi-kbl-7567u: [PASS][11] -> [DMESG-FAIL][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-kbl-7567u/igt@i915_selftest@live@gem_contexts.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21732/fi-kbl-7567u/igt@i915_selftest@live@gem_contexts.html
- fi-cfl-guc: [PASS][13] -> [DMESG-FAIL][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-cfl-guc/igt@i915_selftest@live@gem_contexts.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21732/fi-cfl-guc/igt@i915_selftest@live@gem_contexts.html
- fi-bxt-dsi: [PASS][15] -> [DMESG-FAIL][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-bxt-dsi/igt@i915_selftest@live@gem_contexts.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21732/fi-bxt-dsi/igt@i915_selftest@live@gem_contexts.html
- fi-kbl-7500u: [PASS][17] -> [DMESG-FAIL][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-kbl-7500u/igt@i915_selftest@live@gem_contexts.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21732/fi-kbl-7500u/igt@i915_selftest@live@gem_contexts.html
Known issues
------------
Here are the changes found in Patchwork_21732 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_flink_basic@bad-flink:
- fi-skl-6600u: [PASS][19] -> [FAIL][20] ([i915#4547])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-skl-6600u/igt@gem_flink_basic@bad-flink.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21732/fi-skl-6600u/igt@gem_flink_basic@bad-flink.html
* igt@i915_selftest@live@requests:
- fi-blb-e6850: [PASS][21] -> [DMESG-FAIL][22] ([i915#4528])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-blb-e6850/igt@i915_selftest@live@requests.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21732/fi-blb-e6850/igt@i915_selftest@live@requests.html
* igt@runner@aborted:
- fi-bdw-5557u: NOTRUN -> [FAIL][23] ([i915#2426] / [i915#4312])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21732/fi-bdw-5557u/igt@runner@aborted.html
- fi-blb-e6850: NOTRUN -> [FAIL][24] ([fdo#109271] / [i915#2403] / [i915#4312])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21732/fi-blb-e6850/igt@runner@aborted.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- fi-bwr-2160: [FAIL][25] ([i915#3194]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-bwr-2160/igt@core_hotunplug@unbind-rebind.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21732/fi-bwr-2160/igt@core_hotunplug@unbind-rebind.html
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[i915#2403]: https://gitlab.freedesktop.org/drm/intel/issues/2403
[i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426
[i915#3194]: https://gitlab.freedesktop.org/drm/intel/issues/3194
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
[i915#4547]: https://gitlab.freedesktop.org/drm/intel/issues/4547
Build changes
-------------
* Linux: CI_DRM_10956 -> Patchwork_21732
CI-20190529: 20190529
CI_DRM_10956: 3e61582553e3b43064fa2069f20307a9df91a0d2 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_6299: 0933b7ccdb2bb054b6a8154171e35315d84299b7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_21732: ccb569c471b68f46d29155eac9d6f499e2db997e @ git://anongit.freedesktop.org/gfx-ci/linux
== Linux commits ==
ccb569c471b6 drm/i915: Re-use i915 macros for checking PTEs
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21732/index.html
[-- Attachment #2: Type: text/html, Size: 7298 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Re-use i915 macros for checking PTEs (rev11)
2021-11-18 20:54 [Intel-gfx] [PATCH v5 0/1] Use i915 macros to check for PTEs Michael Cheng
` (10 preceding siblings ...)
2021-12-02 19:11 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
@ 2021-12-02 19:51 ` Patchwork
2021-12-02 20:28 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
` (2 subsequent siblings)
14 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2021-12-02 19:51 UTC (permalink / raw)
To: Michael Cheng; +Cc: intel-gfx
== Series Details ==
Series: drm/i915: Re-use i915 macros for checking PTEs (rev11)
URL : https://patchwork.freedesktop.org/series/97090/
State : warning
== Summary ==
$ dim checkpatch origin/drm-tip
13238fd0ba2e drm/i915: Re-use i915 macros for checking PTEs
-:6: WARNING:COMMIT_LOG_LONG_LINE: Possible unwrapped commit description (prefer a maximum 75 chars per line)
#6:
Certain gen8 ppgtt/gtt functions are using _PAGE_RW and _PAGE_PRESENT to check
total: 0 errors, 1 warnings, 0 checks, 72 lines checked
^ permalink raw reply [flat|nested] 18+ messages in thread* [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Re-use i915 macros for checking PTEs (rev11)
2021-11-18 20:54 [Intel-gfx] [PATCH v5 0/1] Use i915 macros to check for PTEs Michael Cheng
` (11 preceding siblings ...)
2021-12-02 19:51 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Re-use i915 macros for checking PTEs (rev11) Patchwork
@ 2021-12-02 20:28 ` Patchwork
2021-12-02 20:29 ` Cheng, Michael
2021-12-03 2:04 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Re-use i915 macros for checking PTEs (rev12) Patchwork
2021-12-03 2:47 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
14 siblings, 1 reply; 18+ messages in thread
From: Patchwork @ 2021-12-02 20:28 UTC (permalink / raw)
To: Michael Cheng; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 7319 bytes --]
== Series Details ==
Series: drm/i915: Re-use i915 macros for checking PTEs (rev11)
URL : https://patchwork.freedesktop.org/series/97090/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_10956 -> Patchwork_21734
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_21734 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_21734, 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_21734/index.html
Participating hosts (39 -> 33)
------------------------------
Missing (6): bat-dg1-6 bat-dg1-5 fi-bsw-cyan bat-adlp-4 bat-jsl-2 bat-jsl-1
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_21734:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@gem_contexts:
- fi-skl-6600u: NOTRUN -> [DMESG-FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-skl-6600u/igt@i915_selftest@live@gem_contexts.html
- fi-bsw-kefka: [PASS][2] -> [DMESG-FAIL][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-bsw-kefka/igt@i915_selftest@live@gem_contexts.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-bsw-kefka/igt@i915_selftest@live@gem_contexts.html
- fi-glk-dsi: [PASS][4] -> [DMESG-FAIL][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-glk-dsi/igt@i915_selftest@live@gem_contexts.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-glk-dsi/igt@i915_selftest@live@gem_contexts.html
- fi-skl-6700k2: [PASS][6] -> [DMESG-FAIL][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-skl-6700k2/igt@i915_selftest@live@gem_contexts.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-skl-6700k2/igt@i915_selftest@live@gem_contexts.html
- fi-cfl-8700k: [PASS][8] -> [DMESG-FAIL][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-cfl-8700k/igt@i915_selftest@live@gem_contexts.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-cfl-8700k/igt@i915_selftest@live@gem_contexts.html
- fi-bsw-n3050: [PASS][10] -> [DMESG-FAIL][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-bsw-n3050/igt@i915_selftest@live@gem_contexts.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-bsw-n3050/igt@i915_selftest@live@gem_contexts.html
- fi-kbl-7567u: [PASS][12] -> [DMESG-FAIL][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-kbl-7567u/igt@i915_selftest@live@gem_contexts.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-kbl-7567u/igt@i915_selftest@live@gem_contexts.html
- fi-cfl-guc: [PASS][14] -> [DMESG-FAIL][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-cfl-guc/igt@i915_selftest@live@gem_contexts.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-cfl-guc/igt@i915_selftest@live@gem_contexts.html
- fi-bxt-dsi: [PASS][16] -> [DMESG-FAIL][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-bxt-dsi/igt@i915_selftest@live@gem_contexts.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-bxt-dsi/igt@i915_selftest@live@gem_contexts.html
- fi-bdw-5557u: [PASS][18] -> [DMESG-FAIL][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-bdw-5557u/igt@i915_selftest@live@gem_contexts.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-bdw-5557u/igt@i915_selftest@live@gem_contexts.html
- fi-kbl-7500u: [PASS][20] -> [DMESG-FAIL][21]
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-kbl-7500u/igt@i915_selftest@live@gem_contexts.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-kbl-7500u/igt@i915_selftest@live@gem_contexts.html
Known issues
------------
Here are the changes found in Patchwork_21734 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@amdgpu/amd_cs_nop@sync-fork-gfx0:
- fi-skl-6600u: NOTRUN -> [SKIP][22] ([fdo#109271]) +18 similar issues
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-skl-6600u/igt@amdgpu/amd_cs_nop@sync-fork-gfx0.html
* igt@i915_selftest@live@execlists:
- fi-bsw-nick: [PASS][23] -> [INCOMPLETE][24] ([i915#2940])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-bsw-nick/igt@i915_selftest@live@execlists.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-bsw-nick/igt@i915_selftest@live@execlists.html
* igt@runner@aborted:
- fi-bsw-nick: NOTRUN -> [FAIL][25] ([fdo#109271] / [i915#1436] / [i915#3428] / [i915#4312])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-bsw-nick/igt@runner@aborted.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- fi-bwr-2160: [FAIL][26] ([i915#3194]) -> [PASS][27]
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-bwr-2160/igt@core_hotunplug@unbind-rebind.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-bwr-2160/igt@core_hotunplug@unbind-rebind.html
* igt@kms_frontbuffer_tracking@basic:
- fi-cml-u2: [DMESG-WARN][28] ([i915#4269]) -> [PASS][29]
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_psr@primary_page_flip:
- fi-skl-6600u: [FAIL][30] ([i915#4547]) -> [PASS][31]
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-skl-6600u/igt@kms_psr@primary_page_flip.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-skl-6600u/igt@kms_psr@primary_page_flip.html
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[i915#1436]: https://gitlab.freedesktop.org/drm/intel/issues/1436
[i915#2940]: https://gitlab.freedesktop.org/drm/intel/issues/2940
[i915#3194]: https://gitlab.freedesktop.org/drm/intel/issues/3194
[i915#3428]: https://gitlab.freedesktop.org/drm/intel/issues/3428
[i915#4269]: https://gitlab.freedesktop.org/drm/intel/issues/4269
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4547]: https://gitlab.freedesktop.org/drm/intel/issues/4547
Build changes
-------------
* Linux: CI_DRM_10956 -> Patchwork_21734
CI-20190529: 20190529
CI_DRM_10956: 3e61582553e3b43064fa2069f20307a9df91a0d2 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_6299: 0933b7ccdb2bb054b6a8154171e35315d84299b7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_21734: 13238fd0ba2e6c9e4013620f00be0b70ab5acc72 @ git://anongit.freedesktop.org/gfx-ci/linux
== Linux commits ==
13238fd0ba2e drm/i915: Re-use i915 macros for checking PTEs
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/index.html
[-- Attachment #2: Type: text/html, Size: 8311 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread* Re: [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Re-use i915 macros for checking PTEs (rev11)
2021-12-02 20:28 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
@ 2021-12-02 20:29 ` Cheng, Michael
0 siblings, 0 replies; 18+ messages in thread
From: Cheng, Michael @ 2021-12-02 20:29 UTC (permalink / raw)
To: intel-gfx@lists.freedesktop.org, Vudum, Lakshminarayana
[-- Attachment #1: Type: text/plain, Size: 7074 bytes --]
Hey Lakshmi,
I believe the following errors are unrelated to my change, could you please help update the CI?
Thanks,
Michael Cheng
________________________________
From: Patchwork <patchwork@emeril.freedesktop.org>
Sent: 02 December 2021 12:28
To: Cheng, Michael <michael.cheng@intel.com>
Cc: intel-gfx@lists.freedesktop.org <intel-gfx@lists.freedesktop.org>
Subject: ✗ Fi.CI.BAT: failure for drm/i915: Re-use i915 macros for checking PTEs (rev11)
Patch Details
Series: drm/i915: Re-use i915 macros for checking PTEs (rev11)
URL: https://patchwork.freedesktop.org/series/97090/
State: failure
Details: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/index.html
CI Bug Log - changes from CI_DRM_10956 -> Patchwork_21734
Summary
FAILURE
Serious unknown changes coming with Patchwork_21734 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_21734, 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_21734/index.html
Participating hosts (39 -> 33)
Missing (6): bat-dg1-6 bat-dg1-5 fi-bsw-cyan bat-adlp-4 bat-jsl-2 bat-jsl-1
Possible new issues
Here are the unknown changes that may have been introduced in Patchwork_21734:
IGT changes
Possible regressions
* igt@i915_selftest@live@gem_contexts:
* fi-skl-6600u: NOTRUN -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-skl-6600u/igt@i915_selftest@live@gem_contexts.html>
* fi-bsw-kefka: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-bsw-kefka/igt@i915_selftest@live@gem_contexts.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-bsw-kefka/igt@i915_selftest@live@gem_contexts.html>
* fi-glk-dsi: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-glk-dsi/igt@i915_selftest@live@gem_contexts.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-glk-dsi/igt@i915_selftest@live@gem_contexts.html>
* fi-skl-6700k2: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-skl-6700k2/igt@i915_selftest@live@gem_contexts.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-skl-6700k2/igt@i915_selftest@live@gem_contexts.html>
* fi-cfl-8700k: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-cfl-8700k/igt@i915_selftest@live@gem_contexts.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-cfl-8700k/igt@i915_selftest@live@gem_contexts.html>
* fi-bsw-n3050: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-bsw-n3050/igt@i915_selftest@live@gem_contexts.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-bsw-n3050/igt@i915_selftest@live@gem_contexts.html>
* fi-kbl-7567u: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-kbl-7567u/igt@i915_selftest@live@gem_contexts.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-kbl-7567u/igt@i915_selftest@live@gem_contexts.html>
* fi-cfl-guc: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-cfl-guc/igt@i915_selftest@live@gem_contexts.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-cfl-guc/igt@i915_selftest@live@gem_contexts.html>
* fi-bxt-dsi: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-bxt-dsi/igt@i915_selftest@live@gem_contexts.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-bxt-dsi/igt@i915_selftest@live@gem_contexts.html>
* fi-bdw-5557u: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-bdw-5557u/igt@i915_selftest@live@gem_contexts.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-bdw-5557u/igt@i915_selftest@live@gem_contexts.html>
* fi-kbl-7500u: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-kbl-7500u/igt@i915_selftest@live@gem_contexts.html> -> DMESG-FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-kbl-7500u/igt@i915_selftest@live@gem_contexts.html>
Known issues
Here are the changes found in Patchwork_21734 that come from known issues:
IGT changes
Issues hit
* igt@amdgpu/amd_cs_nop@sync-fork-gfx0:
* fi-skl-6600u: NOTRUN -> SKIP<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-skl-6600u/igt@amdgpu/amd_cs_nop@sync-fork-gfx0.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +18 similar issues
* igt@i915_selftest@live@execlists:
* fi-bsw-nick: PASS<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-bsw-nick/igt@i915_selftest@live@execlists.html> -> INCOMPLETE<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-bsw-nick/igt@i915_selftest@live@execlists.html> (i915#2940<https://gitlab.freedesktop.org/drm/intel/issues/2940>)
* igt@runner@aborted:
* fi-bsw-nick: NOTRUN -> FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-bsw-nick/igt@runner@aborted.html> (fdo#109271<https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1436<https://gitlab.freedesktop.org/drm/intel/issues/1436> / i915#3428<https://gitlab.freedesktop.org/drm/intel/issues/3428> / i915#4312<https://gitlab.freedesktop.org/drm/intel/issues/4312>)
Possible fixes
* igt@core_hotunplug@unbind-rebind:
* fi-bwr-2160: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-bwr-2160/igt@core_hotunplug@unbind-rebind.html> (i915#3194<https://gitlab.freedesktop.org/drm/intel/issues/3194>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-bwr-2160/igt@core_hotunplug@unbind-rebind.html>
* igt@kms_frontbuffer_tracking@basic:
* fi-cml-u2: DMESG-WARN<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html> (i915#4269<https://gitlab.freedesktop.org/drm/intel/issues/4269>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-cml-u2/igt@kms_frontbuffer_tracking@basic.html>
* igt@kms_psr@primary_page_flip:
* fi-skl-6600u: FAIL<https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10956/fi-skl-6600u/igt@kms_psr@primary_page_flip.html> (i915#4547<https://gitlab.freedesktop.org/drm/intel/issues/4547>) -> PASS<https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21734/fi-skl-6600u/igt@kms_psr@primary_page_flip.html>
Build changes
* Linux: CI_DRM_10956 -> Patchwork_21734
CI-20190529: 20190529
CI_DRM_10956: 3e61582553e3b43064fa2069f20307a9df91a0d2 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_6299: 0933b7ccdb2bb054b6a8154171e35315d84299b7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_21734: 13238fd0ba2e6c9e4013620f00be0b70ab5acc72 @ git://anongit.freedesktop.org/gfx-ci/linux
== Linux commits ==
13238fd0ba2e drm/i915: Re-use i915 macros for checking PTEs
[-- Attachment #2: Type: text/html, Size: 9894 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Re-use i915 macros for checking PTEs (rev12)
2021-11-18 20:54 [Intel-gfx] [PATCH v5 0/1] Use i915 macros to check for PTEs Michael Cheng
` (12 preceding siblings ...)
2021-12-02 20:28 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
@ 2021-12-03 2:04 ` Patchwork
2021-12-03 2:47 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
14 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2021-12-03 2:04 UTC (permalink / raw)
To: Michael Cheng; +Cc: intel-gfx
== Series Details ==
Series: drm/i915: Re-use i915 macros for checking PTEs (rev12)
URL : https://patchwork.freedesktop.org/series/97090/
State : warning
== Summary ==
$ dim checkpatch origin/drm-tip
11b7af9a808e drm/i915: Re-use i915 macros for checking PTEs
-:6: WARNING:COMMIT_LOG_LONG_LINE: Possible unwrapped commit description (prefer a maximum 75 chars per line)
#6:
Certain gen8 ppgtt/gtt functions are using _PAGE_RW and _PAGE_PRESENT to check
total: 0 errors, 1 warnings, 0 checks, 72 lines checked
^ permalink raw reply [flat|nested] 18+ messages in thread* [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Re-use i915 macros for checking PTEs (rev12)
2021-11-18 20:54 [Intel-gfx] [PATCH v5 0/1] Use i915 macros to check for PTEs Michael Cheng
` (13 preceding siblings ...)
2021-12-03 2:04 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Re-use i915 macros for checking PTEs (rev12) Patchwork
@ 2021-12-03 2:47 ` Patchwork
14 siblings, 0 replies; 18+ messages in thread
From: Patchwork @ 2021-12-03 2:47 UTC (permalink / raw)
To: Michael Cheng; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 10816 bytes --]
== Series Details ==
Series: drm/i915: Re-use i915 macros for checking PTEs (rev12)
URL : https://patchwork.freedesktop.org/series/97090/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_10957 -> Patchwork_21736
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_21736 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_21736, 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_21736/index.html
Participating hosts (38 -> 35)
------------------------------
Additional (2): fi-kbl-soraka fi-pnv-d510
Missing (5): bat-dg1-6 bat-dg1-5 fi-bsw-cyan bat-jsl-2 bat-jsl-1
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_21736:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@gem_contexts:
- fi-skl-6600u: [PASS][1] -> [DMESG-FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10957/fi-skl-6600u/igt@i915_selftest@live@gem_contexts.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-skl-6600u/igt@i915_selftest@live@gem_contexts.html
- fi-bsw-kefka: [PASS][3] -> [DMESG-FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10957/fi-bsw-kefka/igt@i915_selftest@live@gem_contexts.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-bsw-kefka/igt@i915_selftest@live@gem_contexts.html
- fi-glk-dsi: [PASS][5] -> [DMESG-FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10957/fi-glk-dsi/igt@i915_selftest@live@gem_contexts.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-glk-dsi/igt@i915_selftest@live@gem_contexts.html
- fi-skl-6700k2: NOTRUN -> [DMESG-FAIL][7]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-skl-6700k2/igt@i915_selftest@live@gem_contexts.html
- fi-cfl-8700k: [PASS][8] -> [DMESG-FAIL][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10957/fi-cfl-8700k/igt@i915_selftest@live@gem_contexts.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-cfl-8700k/igt@i915_selftest@live@gem_contexts.html
- fi-bsw-n3050: [PASS][10] -> [DMESG-FAIL][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10957/fi-bsw-n3050/igt@i915_selftest@live@gem_contexts.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-bsw-n3050/igt@i915_selftest@live@gem_contexts.html
- fi-kbl-7567u: [PASS][12] -> [DMESG-FAIL][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10957/fi-kbl-7567u/igt@i915_selftest@live@gem_contexts.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-kbl-7567u/igt@i915_selftest@live@gem_contexts.html
- fi-cfl-guc: [PASS][14] -> [DMESG-FAIL][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10957/fi-cfl-guc/igt@i915_selftest@live@gem_contexts.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-cfl-guc/igt@i915_selftest@live@gem_contexts.html
- fi-bxt-dsi: [PASS][16] -> [DMESG-FAIL][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10957/fi-bxt-dsi/igt@i915_selftest@live@gem_contexts.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-bxt-dsi/igt@i915_selftest@live@gem_contexts.html
- fi-kbl-7500u: [PASS][18] -> [DMESG-FAIL][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10957/fi-kbl-7500u/igt@i915_selftest@live@gem_contexts.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-kbl-7500u/igt@i915_selftest@live@gem_contexts.html
Known issues
------------
Here are the changes found in Patchwork_21736 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@amdgpu/amd_basic@cs-gfx:
- fi-skl-6700k2: NOTRUN -> [SKIP][20] ([fdo#109271]) +23 similar issues
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-skl-6700k2/igt@amdgpu/amd_basic@cs-gfx.html
* igt@amdgpu/amd_cs_nop@fork-compute0:
- fi-ivb-3770: NOTRUN -> [SKIP][21] ([fdo#109271]) +17 similar issues
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-ivb-3770/igt@amdgpu/amd_cs_nop@fork-compute0.html
* igt@gem_exec_fence@basic-busy@bcs0:
- fi-kbl-soraka: NOTRUN -> [SKIP][22] ([fdo#109271]) +8 similar issues
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-kbl-soraka/igt@gem_exec_fence@basic-busy@bcs0.html
* igt@gem_huc_copy@huc-copy:
- fi-kbl-soraka: NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#2190])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-kbl-soraka: NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#4613]) +3 similar issues
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html
* igt@i915_pm_rpm@module-reload:
- fi-icl-u2: [PASS][25] -> [FAIL][26] ([i915#3049])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10957/fi-icl-u2/igt@i915_pm_rpm@module-reload.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-icl-u2/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live@gt_engines:
- fi-rkl-guc: [PASS][27] -> [INCOMPLETE][28] ([i915#4432])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10957/fi-rkl-guc/igt@i915_selftest@live@gt_engines.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-rkl-guc/igt@i915_selftest@live@gt_engines.html
* igt@i915_selftest@live@gt_pm:
- fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][29] ([i915#1886] / [i915#2291])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html
* igt@i915_selftest@live@objects:
- fi-icl-u2: [PASS][30] -> [DMESG-WARN][31] ([i915#2867]) +4 similar issues
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10957/fi-icl-u2/igt@i915_selftest@live@objects.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-icl-u2/igt@i915_selftest@live@objects.html
* igt@i915_selftest@live@requests:
- fi-blb-e6850: [PASS][32] -> [DMESG-FAIL][33] ([i915#4528])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10957/fi-blb-e6850/igt@i915_selftest@live@requests.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-blb-e6850/igt@i915_selftest@live@requests.html
* igt@kms_chamelium@common-hpd-after-suspend:
- fi-kbl-soraka: NOTRUN -> [SKIP][34] ([fdo#109271] / [fdo#111827]) +8 similar issues
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-kbl-soraka/igt@kms_chamelium@common-hpd-after-suspend.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d:
- fi-kbl-soraka: NOTRUN -> [SKIP][35] ([fdo#109271] / [i915#533])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-kbl-soraka/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-pipe-d.html
* igt@prime_vgem@basic-userptr:
- fi-pnv-d510: NOTRUN -> [SKIP][36] ([fdo#109271]) +57 similar issues
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-pnv-d510/igt@prime_vgem@basic-userptr.html
* igt@runner@aborted:
- fi-bdw-5557u: NOTRUN -> [FAIL][37] ([i915#2426] / [i915#4312])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-bdw-5557u/igt@runner@aborted.html
- fi-rkl-guc: NOTRUN -> [FAIL][38] ([i915#3928] / [i915#4312])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-rkl-guc/igt@runner@aborted.html
- fi-blb-e6850: NOTRUN -> [FAIL][39] ([fdo#109271] / [i915#2403] / [i915#4312])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-blb-e6850/igt@runner@aborted.html
#### Possible fixes ####
* igt@i915_selftest@live@hangcheck:
- fi-ivb-3770: [INCOMPLETE][40] ([i915#3303]) -> [PASS][41]
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10957/fi-ivb-3770/igt@i915_selftest@live@hangcheck.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-ivb-3770/igt@i915_selftest@live@hangcheck.html
* igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
- fi-skl-6700k2: [INCOMPLETE][42] ([i915#198]) -> [PASS][43]
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_10957/fi-skl-6700k2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/fi-skl-6700k2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.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#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
[i915#198]: https://gitlab.freedesktop.org/drm/intel/issues/198
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2291]: https://gitlab.freedesktop.org/drm/intel/issues/2291
[i915#2403]: https://gitlab.freedesktop.org/drm/intel/issues/2403
[i915#2426]: https://gitlab.freedesktop.org/drm/intel/issues/2426
[i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867
[i915#3049]: https://gitlab.freedesktop.org/drm/intel/issues/3049
[i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303
[i915#3928]: https://gitlab.freedesktop.org/drm/intel/issues/3928
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4432]: https://gitlab.freedesktop.org/drm/intel/issues/4432
[i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
Build changes
-------------
* Linux: CI_DRM_10957 -> Patchwork_21736
CI-20190529: 20190529
CI_DRM_10957: 10716ba5171eb4158a11d1c4fa773254751023e9 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_6299: 0933b7ccdb2bb054b6a8154171e35315d84299b7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_21736: 11b7af9a808ea221e144dcb400df84f8ac04e016 @ git://anongit.freedesktop.org/gfx-ci/linux
== Linux commits ==
11b7af9a808e drm/i915: Re-use i915 macros for checking PTEs
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_21736/index.html
[-- Attachment #2: Type: text/html, Size: 12688 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread