* [Intel-gfx] [PATCH 0/1] fix RC6p related regression on Sandy Bridge
@ 2022-12-19 17:29 Sasa Dragic
2022-12-19 17:29 ` [Intel-gfx] [PATCH 1/1] drm/i915: re-disable RC6p " Sasa Dragic
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Sasa Dragic @ 2022-12-19 17:29 UTC (permalink / raw)
To: intel-gfx
Hi all,
RC6p got re-enabled on Sandy Bridge over time, seemingly by accident
over time, causing graphical glitches and occasional GPU hangs on my
old ThinkPad T420, severity depending on kernel version.
It is a known issue, e.g.:
https://wiki.ubuntu.com/Kernel/PowerManagementRC6
https://www.yoctoproject.org/pipermail/yocto/2012-June/007164.html
It was originally disabled in commit 1c8ecf80fdee ("drm/i915: do not
enable RC6p on Sandy Bridge"), and subsequently re-enabled by
13c5a577b342 ("drm/i915/gt: Select the deepest available parking mode
for rc6"), which seems to focus only on Ivy Bridge.
This patch re-disables RC6p on Sandy Bridge.
I don't know if this issue is fixed otherwise, and I just have a faulty
hardware, but there are few unresolved Sandy Bridge issues floating on
the net, which could be related to this. When disabling RC6p graphics
works flawlessly, as it also works on 4.15 kernel without modifications.
I didn't want to clutter this mail with too much info, so feel free to
ask for details, links or to file bug report if necessary.
Thanks,
Sasa
Sasa Dragic (1):
drm/i915: re-disable RC6p on Sandy Bridge
drivers/gpu/drm/i915/i915_pci.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
--
2.37.2
^ permalink raw reply [flat|nested] 8+ messages in thread* [Intel-gfx] [PATCH 1/1] drm/i915: re-disable RC6p on Sandy Bridge 2022-12-19 17:29 [Intel-gfx] [PATCH 0/1] fix RC6p related regression on Sandy Bridge Sasa Dragic @ 2022-12-19 17:29 ` Sasa Dragic 2022-12-20 10:32 ` Ville Syrjälä 2022-12-21 17:40 ` [Intel-gfx] ✓ Fi.CI.BAT: success for fix RC6p related regression " Patchwork 2022-12-21 18:52 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 1 reply; 8+ messages in thread From: Sasa Dragic @ 2022-12-19 17:29 UTC (permalink / raw) To: intel-gfx RC6p on Sandy Bridge got re-enabled over time, causing visual glitches and GPU hangs. Disabled originally in commit 1c8ecf80fdee ("drm/i915: do not enable RC6p on Sandy Bridge"). Signed-off-by: Sasa Dragic <sasa.dragic@gmail.com> --- drivers/gpu/drm/i915/i915_pci.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/gpu/drm/i915/i915_pci.c b/drivers/gpu/drm/i915/i915_pci.c index 668e9da52584..69377564028a 100644 --- a/drivers/gpu/drm/i915/i915_pci.c +++ b/drivers/gpu/drm/i915/i915_pci.c @@ -423,7 +423,8 @@ static const struct intel_device_info ilk_m_info = { .has_coherent_ggtt = true, \ .has_llc = 1, \ .has_rc6 = 1, \ - .has_rc6p = 1, \ + /* snb does support rc6p, but enabling it causes various issues */ \ + .has_rc6p = 0, \ .has_rps = true, \ .dma_mask_size = 40, \ .__runtime.ppgtt_type = INTEL_PPGTT_ALIASING, \ -- 2.37.2 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH 1/1] drm/i915: re-disable RC6p on Sandy Bridge 2022-12-19 17:29 ` [Intel-gfx] [PATCH 1/1] drm/i915: re-disable RC6p " Sasa Dragic @ 2022-12-20 10:32 ` Ville Syrjälä 2022-12-20 15:50 ` Sasa Dragic 2022-12-21 14:09 ` Rodrigo Vivi 0 siblings, 2 replies; 8+ messages in thread From: Ville Syrjälä @ 2022-12-20 10:32 UTC (permalink / raw) To: Sasa Dragic; +Cc: intel-gfx On Mon, Dec 19, 2022 at 06:29:27PM +0100, Sasa Dragic wrote: > RC6p on Sandy Bridge got re-enabled over time, causing visual glitches > and GPU hangs. > > Disabled originally in commit 1c8ecf80fdee ("drm/i915: do not enable > RC6p on Sandy Bridge"). re cover letter: > It was originally disabled in commit 1c8ecf80fdee ("drm/i915: do not > enable RC6p on Sandy Bridge"), and subsequently re-enabled by > 13c5a577b342 ("drm/i915/gt: Select the deepest available parking mode > for rc6"), which seems to focus only on Ivy Bridge. That only kicks in while parked (ie. fully idle from software POV). I think the real bad commit is fb6db0f5bf1d ("drm/i915: Remove unsafe i915.enable_rc6") which seems to affects which rc6 level is selected while unparked. We should mention both of those commits here: Fixes: fb6db0f5bf1d ("drm/i915: Remove unsafe i915.enable_rc6") Fixes: 13c5a577b342 ("drm/i915/gt: Select the deepest available parking mode for rc6") Also we want Cc: stable@vger.kernel.org We can add those while pushing, so no need to resend for that. > > Signed-off-by: Sasa Dragic <sasa.dragic@gmail.com> > --- > drivers/gpu/drm/i915/i915_pci.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/i915/i915_pci.c b/drivers/gpu/drm/i915/i915_pci.c > index 668e9da52584..69377564028a 100644 > --- a/drivers/gpu/drm/i915/i915_pci.c > +++ b/drivers/gpu/drm/i915/i915_pci.c > @@ -423,7 +423,8 @@ static const struct intel_device_info ilk_m_info = { > .has_coherent_ggtt = true, \ > .has_llc = 1, \ > .has_rc6 = 1, \ > - .has_rc6p = 1, \ > + /* snb does support rc6p, but enabling it causes various issues */ \ > + .has_rc6p = 0, \ The one downside of doing it this way is that we also lose the debugfs/sysfs files so we can't monitor rc6+/++ residency anymore to make sure they are not entered. I think ideally we'd split this into two parts: which rc6 states the hw actually has vs. which rc6 states we actually want to use. But at least for the time being I think this simple should be sufficient, and should be easy to backport to stable releases. > .has_rps = true, \ > .dma_mask_size = 40, \ > .__runtime.ppgtt_type = INTEL_PPGTT_ALIASING, \ > -- > 2.37.2 -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH 1/1] drm/i915: re-disable RC6p on Sandy Bridge 2022-12-20 10:32 ` Ville Syrjälä @ 2022-12-20 15:50 ` Sasa Dragic 2022-12-21 14:09 ` Rodrigo Vivi 1 sibling, 0 replies; 8+ messages in thread From: Sasa Dragic @ 2022-12-20 15:50 UTC (permalink / raw) To: Ville Syrjälä; +Cc: intel-gfx On Tue, Dec 20, 2022 at 11:32 AM Ville Syrjälä <ville.syrjala@linux.intel.com> wrote: > > On Mon, Dec 19, 2022 at 06:29:27PM +0100, Sasa Dragic wrote: > > RC6p on Sandy Bridge got re-enabled over time, causing visual glitches > > and GPU hangs. > > > > Disabled originally in commit 1c8ecf80fdee ("drm/i915: do not enable > > RC6p on Sandy Bridge"). > > re cover letter: > > It was originally disabled in commit 1c8ecf80fdee ("drm/i915: do not > > enable RC6p on Sandy Bridge"), and subsequently re-enabled by > > 13c5a577b342 ("drm/i915/gt: Select the deepest available parking mode > > for rc6"), which seems to focus only on Ivy Bridge. > > That only kicks in while parked (ie. fully idle from > software POV). I think the real bad commit is > fb6db0f5bf1d ("drm/i915: Remove unsafe i915.enable_rc6") > which seems to affects which rc6 level is selected while > unparked. You are correct. Although I'd like to add that most of the glitching happens when system is switching to / from fully idle (e.g. running glxgears in background reduces symptoms tenfold). > We should mention both of those commits here: > Fixes: fb6db0f5bf1d ("drm/i915: Remove unsafe i915.enable_rc6") > Fixes: 13c5a577b342 ("drm/i915/gt: Select the deepest available parking mode for rc6") > > Also we want > Cc: stable@vger.kernel.org > > We can add those while pushing, so no need to resend for that. Ok, thanks. > > > > Signed-off-by: Sasa Dragic <sasa.dragic@gmail.com> > > --- > > drivers/gpu/drm/i915/i915_pci.c | 3 ++- > > 1 file changed, 2 insertions(+), 1 deletion(-) > > > > diff --git a/drivers/gpu/drm/i915/i915_pci.c b/drivers/gpu/drm/i915/i915_pci.c > > index 668e9da52584..69377564028a 100644 > > --- a/drivers/gpu/drm/i915/i915_pci.c > > +++ b/drivers/gpu/drm/i915/i915_pci.c > > @@ -423,7 +423,8 @@ static const struct intel_device_info ilk_m_info = { > > .has_coherent_ggtt = true, \ > > .has_llc = 1, \ > > .has_rc6 = 1, \ > > - .has_rc6p = 1, \ > > + /* snb does support rc6p, but enabling it causes various issues */ \ > > + .has_rc6p = 0, \ > > The one downside of doing it this way is that we also lose > the debugfs/sysfs files so we can't monitor rc6+/++ > residency anymore to make sure they are not entered. > > I think ideally we'd split this into two parts: which rc6 > states the hw actually has vs. which rc6 states we actually > want to use. But at least for the time being I think this > simple should be sufficient, and should be easy to backport > to stable releases. Agreed. > > .has_rps = true, \ > > .dma_mask_size = 40, \ > > .__runtime.ppgtt_type = INTEL_PPGTT_ALIASING, \ > > -- > > 2.37.2 > > -- > Ville Syrjälä > Intel Regards, Sasa ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH 1/1] drm/i915: re-disable RC6p on Sandy Bridge 2022-12-20 10:32 ` Ville Syrjälä 2022-12-20 15:50 ` Sasa Dragic @ 2022-12-21 14:09 ` Rodrigo Vivi 2023-01-17 22:50 ` Ville Syrjälä 1 sibling, 1 reply; 8+ messages in thread From: Rodrigo Vivi @ 2022-12-21 14:09 UTC (permalink / raw) To: Ville Syrjälä; +Cc: intel-gfx On Tue, Dec 20, 2022 at 12:32:05PM +0200, Ville Syrjälä wrote: > On Mon, Dec 19, 2022 at 06:29:27PM +0100, Sasa Dragic wrote: > > RC6p on Sandy Bridge got re-enabled over time, causing visual glitches > > and GPU hangs. > > > > Disabled originally in commit 1c8ecf80fdee ("drm/i915: do not enable > > RC6p on Sandy Bridge"). > > re cover letter: > > It was originally disabled in commit 1c8ecf80fdee ("drm/i915: do not > > enable RC6p on Sandy Bridge"), and subsequently re-enabled by > > 13c5a577b342 ("drm/i915/gt: Select the deepest available parking mode > > for rc6"), which seems to focus only on Ivy Bridge. > > That only kicks in while parked (ie. fully idle from > software POV). I think the real bad commit is > fb6db0f5bf1d ("drm/i915: Remove unsafe i915.enable_rc6") > which seems to affects which rc6 level is selected while > unparked. > > We should mention both of those commits here: > Fixes: fb6db0f5bf1d ("drm/i915: Remove unsafe i915.enable_rc6") > Fixes: 13c5a577b342 ("drm/i915/gt: Select the deepest available parking mode for rc6") > > Also we want > Cc: stable@vger.kernel.org > > We can add those while pushing, so no need to resend for that. agreed. Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > > > > > Signed-off-by: Sasa Dragic <sasa.dragic@gmail.com> > > --- > > drivers/gpu/drm/i915/i915_pci.c | 3 ++- > > 1 file changed, 2 insertions(+), 1 deletion(-) > > > > diff --git a/drivers/gpu/drm/i915/i915_pci.c b/drivers/gpu/drm/i915/i915_pci.c > > index 668e9da52584..69377564028a 100644 > > --- a/drivers/gpu/drm/i915/i915_pci.c > > +++ b/drivers/gpu/drm/i915/i915_pci.c > > @@ -423,7 +423,8 @@ static const struct intel_device_info ilk_m_info = { > > .has_coherent_ggtt = true, \ > > .has_llc = 1, \ > > .has_rc6 = 1, \ > > - .has_rc6p = 1, \ > > + /* snb does support rc6p, but enabling it causes various issues */ \ > > + .has_rc6p = 0, \ > > The one downside of doing it this way is that we also lose > the debugfs/sysfs files so we can't monitor rc6+/++ > residency anymore to make sure they are not entered. > > I think ideally we'd split this into two parts: which rc6 > states the hw actually has vs. which rc6 states we actually > want to use. But at least for the time being I think this > simple should be sufficient, and should be easy to backport > to stable releases. > > > .has_rps = true, \ > > .dma_mask_size = 40, \ > > .__runtime.ppgtt_type = INTEL_PPGTT_ALIASING, \ > > -- > > 2.37.2 > > -- > Ville Syrjälä > Intel ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH 1/1] drm/i915: re-disable RC6p on Sandy Bridge 2022-12-21 14:09 ` Rodrigo Vivi @ 2023-01-17 22:50 ` Ville Syrjälä 0 siblings, 0 replies; 8+ messages in thread From: Ville Syrjälä @ 2023-01-17 22:50 UTC (permalink / raw) To: Rodrigo Vivi; +Cc: intel-gfx On Wed, Dec 21, 2022 at 09:09:17AM -0500, Rodrigo Vivi wrote: > On Tue, Dec 20, 2022 at 12:32:05PM +0200, Ville Syrjälä wrote: > > On Mon, Dec 19, 2022 at 06:29:27PM +0100, Sasa Dragic wrote: > > > RC6p on Sandy Bridge got re-enabled over time, causing visual glitches > > > and GPU hangs. > > > > > > Disabled originally in commit 1c8ecf80fdee ("drm/i915: do not enable > > > RC6p on Sandy Bridge"). > > > > re cover letter: > > > It was originally disabled in commit 1c8ecf80fdee ("drm/i915: do not > > > enable RC6p on Sandy Bridge"), and subsequently re-enabled by > > > 13c5a577b342 ("drm/i915/gt: Select the deepest available parking mode > > > for rc6"), which seems to focus only on Ivy Bridge. > > > > That only kicks in while parked (ie. fully idle from > > software POV). I think the real bad commit is > > fb6db0f5bf1d ("drm/i915: Remove unsafe i915.enable_rc6") > > which seems to affects which rc6 level is selected while > > unparked. > > > > We should mention both of those commits here: > > Fixes: fb6db0f5bf1d ("drm/i915: Remove unsafe i915.enable_rc6") > > Fixes: 13c5a577b342 ("drm/i915/gt: Select the deepest available parking mode for rc6") > > > > Also we want > > Cc: stable@vger.kernel.org > > > > We can add those while pushing, so no need to resend for that. > > agreed. > > Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Pushed to drm-intel-gt-next. Thanks for the patch and review. > > > > > > > > > Signed-off-by: Sasa Dragic <sasa.dragic@gmail.com> > > > --- > > > drivers/gpu/drm/i915/i915_pci.c | 3 ++- > > > 1 file changed, 2 insertions(+), 1 deletion(-) > > > > > > diff --git a/drivers/gpu/drm/i915/i915_pci.c b/drivers/gpu/drm/i915/i915_pci.c > > > index 668e9da52584..69377564028a 100644 > > > --- a/drivers/gpu/drm/i915/i915_pci.c > > > +++ b/drivers/gpu/drm/i915/i915_pci.c > > > @@ -423,7 +423,8 @@ static const struct intel_device_info ilk_m_info = { > > > .has_coherent_ggtt = true, \ > > > .has_llc = 1, \ > > > .has_rc6 = 1, \ > > > - .has_rc6p = 1, \ > > > + /* snb does support rc6p, but enabling it causes various issues */ \ > > > + .has_rc6p = 0, \ > > > > The one downside of doing it this way is that we also lose > > the debugfs/sysfs files so we can't monitor rc6+/++ > > residency anymore to make sure they are not entered. > > > > I think ideally we'd split this into two parts: which rc6 > > states the hw actually has vs. which rc6 states we actually > > want to use. But at least for the time being I think this > > simple should be sufficient, and should be easy to backport > > to stable releases. > > > > > .has_rps = true, \ > > > .dma_mask_size = 40, \ > > > .__runtime.ppgtt_type = INTEL_PPGTT_ALIASING, \ > > > -- > > > 2.37.2 > > > > -- > > Ville Syrjälä > > Intel -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for fix RC6p related regression on Sandy Bridge 2022-12-19 17:29 [Intel-gfx] [PATCH 0/1] fix RC6p related regression on Sandy Bridge Sasa Dragic 2022-12-19 17:29 ` [Intel-gfx] [PATCH 1/1] drm/i915: re-disable RC6p " Sasa Dragic @ 2022-12-21 17:40 ` Patchwork 2022-12-21 18:52 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2022-12-21 17:40 UTC (permalink / raw) To: Sasa Dragic; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 8560 bytes --] == Series Details == Series: fix RC6p related regression on Sandy Bridge URL : https://patchwork.freedesktop.org/series/112072/ State : success == Summary == CI Bug Log - changes from CI_DRM_12518 -> Patchwork_112072v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/index.html Participating hosts (43 -> 46) ------------------------------ Additional (4): fi-kbl-soraka fi-hsw-4770 fi-rkl-11600 fi-pnv-d510 Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_112072v1: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_selftest@live@workarounds: - {bat-rpls-1}: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12518/bat-rpls-1/igt@i915_selftest@live@workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/bat-rpls-1/igt@i915_selftest@live@workarounds.html Known issues ------------ Here are the changes found in Patchwork_112072v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - fi-rkl-11600: NOTRUN -> [SKIP][3] ([i915#7456]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/fi-rkl-11600/igt@debugfs_test@basic-hwmon.html * igt@gem_exec_gttfill@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271]) +7 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/fi-kbl-soraka/igt@gem_exec_gttfill@basic.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#2190]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html - fi-rkl-11600: NOTRUN -> [SKIP][6] ([i915#2190]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/fi-rkl-11600/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#4613]) +3 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html - fi-rkl-11600: NOTRUN -> [SKIP][8] ([i915#4613]) +3 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/fi-rkl-11600/igt@gem_lmem_swapping@basic.html * igt@gem_softpin@allocator-basic-reserve: - fi-hsw-4770: NOTRUN -> [SKIP][9] ([fdo#109271]) +11 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/fi-hsw-4770/igt@gem_softpin@allocator-basic-reserve.html * igt@gem_tiled_pread_basic: - fi-rkl-11600: NOTRUN -> [SKIP][10] ([i915#3282]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/fi-rkl-11600/igt@gem_tiled_pread_basic.html * igt@i915_pm_backlight@basic-brightness: - fi-rkl-11600: NOTRUN -> [SKIP][11] ([i915#7561]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/fi-rkl-11600/igt@i915_pm_backlight@basic-brightness.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][12] ([i915#1886]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@i915_suspend@basic-s3-without-i915: - fi-rkl-11600: NOTRUN -> [INCOMPLETE][13] ([i915#4817]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_chamelium@dp-crc-fast: - fi-hsw-4770: NOTRUN -> [SKIP][14] ([fdo#109271] / [fdo#111827]) +8 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/fi-hsw-4770/igt@kms_chamelium@dp-crc-fast.html * igt@kms_chamelium@hdmi-edid-read: - fi-rkl-11600: NOTRUN -> [SKIP][15] ([fdo#111827]) +7 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/fi-rkl-11600/igt@kms_chamelium@hdmi-edid-read.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-kbl-soraka: NOTRUN -> [SKIP][16] ([fdo#109271] / [fdo#111827]) +7 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/fi-kbl-soraka/igt@kms_chamelium@hdmi-hpd-fast.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor: - fi-rkl-11600: NOTRUN -> [SKIP][17] ([i915#4103]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/fi-rkl-11600/igt@kms_cursor_legacy@basic-busy-flip-before-cursor.html * igt@kms_force_connector_basic@force-load-detect: - fi-rkl-11600: NOTRUN -> [SKIP][18] ([fdo#109285] / [i915#4098]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/fi-rkl-11600/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@primary_page_flip: - fi-pnv-d510: NOTRUN -> [SKIP][19] ([fdo#109271]) +44 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/fi-pnv-d510/igt@kms_psr@primary_page_flip.html - fi-rkl-11600: NOTRUN -> [SKIP][20] ([i915#1072]) +3 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/fi-rkl-11600/igt@kms_psr@primary_page_flip.html * igt@kms_psr@sprite_plane_onoff: - fi-hsw-4770: NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#1072]) +3 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/fi-hsw-4770/igt@kms_psr@sprite_plane_onoff.html * igt@kms_setmode@basic-clone-single-crtc: - fi-rkl-11600: NOTRUN -> [SKIP][22] ([i915#3555] / [i915#4098]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/fi-rkl-11600/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-read: - fi-rkl-11600: NOTRUN -> [SKIP][23] ([fdo#109295] / [i915#3291] / [i915#3708]) +2 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/fi-rkl-11600/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-userptr: - fi-rkl-11600: NOTRUN -> [SKIP][24] ([fdo#109295] / [i915#3301] / [i915#3708]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/fi-rkl-11600/igt@prime_vgem@basic-userptr.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 Build changes ------------- * Linux: CI_DRM_12518 -> Patchwork_112072v1 CI-20190529: 20190529 CI_DRM_12518: df4e12de87c0d61fe5d5047b33399fd3ca8e773c @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7100: 04466b02a9b5356d266a899daa5183c1f6b0e20f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_112072v1: df4e12de87c0d61fe5d5047b33399fd3ca8e773c @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits 47ef18116fa0 drm/i915: re-disable RC6p on Sandy Bridge == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/index.html [-- Attachment #2: Type: text/html, Size: 10587 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Intel-gfx] ✓ Fi.CI.IGT: success for fix RC6p related regression on Sandy Bridge 2022-12-19 17:29 [Intel-gfx] [PATCH 0/1] fix RC6p related regression on Sandy Bridge Sasa Dragic 2022-12-19 17:29 ` [Intel-gfx] [PATCH 1/1] drm/i915: re-disable RC6p " Sasa Dragic 2022-12-21 17:40 ` [Intel-gfx] ✓ Fi.CI.BAT: success for fix RC6p related regression " Patchwork @ 2022-12-21 18:52 ` Patchwork 2 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2022-12-21 18:52 UTC (permalink / raw) To: Sasa Dragic; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 21868 bytes --] == Series Details == Series: fix RC6p related regression on Sandy Bridge URL : https://patchwork.freedesktop.org/series/112072/ State : success == Summary == CI Bug Log - changes from CI_DRM_12518_full -> Patchwork_112072v1_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/index.html Participating hosts (14 -> 10) ------------------------------ Missing (4): shard-rkl0 pig-kbl-iris pig-glk-j5005 pig-skl-6260u Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_112072v1_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_plane_scaling@planes-upscale-20x20: - {shard-tglu}: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-tglu-6/igt@kms_plane_scaling@planes-upscale-20x20.html Known issues ------------ Here are the changes found in Patchwork_112072v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fair@basic-deadline: - shard-glk: NOTRUN -> [FAIL][2] ([i915#2846]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-glk4/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: NOTRUN -> [FAIL][3] ([i915#2842]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-glk4/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-glk: [PASS][4] -> [FAIL][5] ([i915#2842]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12518/shard-glk8/igt@gem_exec_fair@basic-pace-solo@rcs0.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-glk9/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_lmem_swapping@massive: - shard-glk: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#4613]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-glk8/igt@gem_lmem_swapping@massive.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][7] ([i915#2658]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-glk4/igt@gem_pread@exhaustion.html * igt@gem_userptr_blits@input-checking: - shard-glk: NOTRUN -> [DMESG-WARN][8] ([i915#4991]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-glk8/igt@gem_userptr_blits@input-checking.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-glk: NOTRUN -> [SKIP][9] ([fdo#109271]) +96 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-glk4/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#3886]) +4 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-glk4/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_chamelium@hdmi-hpd-for-each-pipe: - shard-glk: NOTRUN -> [SKIP][11] ([fdo#109271] / [fdo#111827]) +3 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-glk4/igt@kms_chamelium@hdmi-hpd-for-each-pipe.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk: NOTRUN -> [FAIL][12] ([i915#4767]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-glk4/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#658]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-glk4/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@kms_writeback@writeback-invalid-parameters: - shard-glk: NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#2437]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-glk8/igt@kms_writeback@writeback-invalid-parameters.html #### Possible fixes #### * igt@fbdev@unaligned-read: - {shard-rkl}: [SKIP][15] ([i915#2582]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12518/shard-rkl-3/igt@fbdev@unaligned-read.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-rkl-6/igt@fbdev@unaligned-read.html * igt@gem_create@create-clear@smem0: - {shard-rkl}: [INCOMPLETE][17] ([i915#7397]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12518/shard-rkl-5/igt@gem_create@create-clear@smem0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-rkl-4/igt@gem_create@create-clear@smem0.html * igt@gem_create@hog-create@smem0: - {shard-rkl}: [FAIL][19] ([i915#7679]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12518/shard-rkl-4/igt@gem_create@hog-create@smem0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-rkl-5/igt@gem_create@hog-create@smem0.html * igt@gem_ctx_shared@q-out-order@vecs0: - {shard-rkl}: [FAIL][21] ([i915#7672]) -> [PASS][22] +3 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12518/shard-rkl-1/igt@gem_ctx_shared@q-out-order@vecs0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-rkl-5/igt@gem_ctx_shared@q-out-order@vecs0.html * igt@gem_eio@suspend: - {shard-rkl}: [FAIL][23] ([i915#7052]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12518/shard-rkl-4/igt@gem_eio@suspend.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-rkl-5/igt@gem_eio@suspend.html * igt@gem_exec_reloc@basic-write-read-noreloc: - {shard-rkl}: [SKIP][25] ([i915#3281]) -> [PASS][26] +7 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12518/shard-rkl-4/igt@gem_exec_reloc@basic-write-read-noreloc.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - {shard-rkl}: [SKIP][27] ([i915#3282]) -> [PASS][28] +7 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12518/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [DMESG-WARN][29] ([i915#5566] / [i915#716]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12518/shard-glk1/igt@gen9_exec_parse@allowed-single.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-glk8/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@unaligned-access: - {shard-rkl}: [SKIP][31] ([i915#2527]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12518/shard-rkl-3/igt@gen9_exec_parse@unaligned-access.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-rkl-5/igt@gen9_exec_parse@unaligned-access.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - {shard-dg1}: [FAIL][33] ([i915#3591]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12518/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-non-lpsp: - {shard-dg1}: [SKIP][35] ([i915#1397]) -> [PASS][36] +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12518/shard-dg1-14/igt@i915_pm_rpm@dpms-non-lpsp.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-dg1-12/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@system-suspend-modeset: - {shard-rkl}: [SKIP][37] ([fdo#109308]) -> [PASS][38] +1 similar issue [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12518/shard-rkl-1/igt@i915_pm_rpm@system-suspend-modeset.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-rkl-6/igt@i915_pm_rpm@system-suspend-modeset.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions: - shard-glk: [FAIL][39] ([i915#2346]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12518/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html * igt@kms_dp_aux_dev: - {shard-rkl}: [SKIP][41] ([i915#1257]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12518/shard-rkl-3/igt@kms_dp_aux_dev.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-rkl-6/igt@kms_dp_aux_dev.html * igt@kms_fbcon_fbt@psr: - {shard-rkl}: [SKIP][43] ([i915#3955]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12518/shard-rkl-4/igt@kms_fbcon_fbt@psr.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-rkl-6/igt@kms_fbcon_fbt@psr.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - {shard-rkl}: [SKIP][45] ([i915#1849] / [i915#4098]) -> [PASS][46] +24 similar issues [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12518/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_hdmi_inject@inject-audio: - {shard-rkl}: [SKIP][47] ([i915#433]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12518/shard-rkl-3/igt@kms_hdmi_inject@inject-audio.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-rkl-6/igt@kms_hdmi_inject@inject-audio.html * igt@kms_properties@crtc-properties-atomic: - {shard-rkl}: [SKIP][49] ([i915#1849]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12518/shard-rkl-1/igt@kms_properties@crtc-properties-atomic.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-rkl-6/igt@kms_properties@crtc-properties-atomic.html * igt@kms_psr@cursor_blt: - {shard-rkl}: [SKIP][51] ([i915#1072]) -> [PASS][52] +2 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12518/shard-rkl-4/igt@kms_psr@cursor_blt.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-rkl-6/igt@kms_psr@cursor_blt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - {shard-rkl}: [SKIP][53] ([i915#5461]) -> [PASS][54] [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12518/shard-rkl-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-a: - {shard-rkl}: [SKIP][55] ([i915#4098]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12518/shard-rkl-4/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-a.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-rkl-6/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-a.html * igt@kms_vblank@pipe-b-query-idle: - {shard-rkl}: [SKIP][57] ([i915#1845] / [i915#4098]) -> [PASS][58] +38 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12518/shard-rkl-4/igt@kms_vblank@pipe-b-query-idle.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-rkl-6/igt@kms_vblank@pipe-b-query-idle.html * igt@prime_vgem@basic-fence-flip: - {shard-rkl}: [SKIP][59] ([fdo#109295] / [i915#3708] / [i915#4098]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12518/shard-rkl-4/igt@prime_vgem@basic-fence-flip.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112072v1/shard-rkl-6/igt@prime_vgem@basic-fence-flip.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#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#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#2232]: https://gitlab.freedesktop.org/drm/intel/issues/2232 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [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#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536 [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#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [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#3810]: https://gitlab.freedesktop.org/drm/intel/issues/3810 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122 [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#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#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [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#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6355]: https://gitlab.freedesktop.org/drm/intel/issues/6355 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7052]: https://gitlab.freedesktop.org/drm/intel/issues/7052 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7128]: https://gitlab.freedesktop.org/drm/intel/issues/7128 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#7397]: https://gitlab.freedesktop.org/drm/intel/issues/7397 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 [i915#7672]: https://gitlab.freedesktop.org/drm/intel/issues/7672 [i915#7679]: https://gitlab.freedesktop.org/drm/intel/issues/7679 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 Build changes ------------- * Linux: CI_DRM_12518 -> Patchwork_112072v1 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12518: df4e12de87c0d61fe5d5047b33399fd3ca8e773c @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7100: 04466b02a9b5356d266a899daa5183c1f6b0e20f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_112072v1: df4e12de87c0d61fe5d5047b33399fd3ca8e773c @ 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_112072v1/index.html [-- Attachment #2: Type: text/html, Size: 17928 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-01-17 22:50 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-12-19 17:29 [Intel-gfx] [PATCH 0/1] fix RC6p related regression on Sandy Bridge Sasa Dragic 2022-12-19 17:29 ` [Intel-gfx] [PATCH 1/1] drm/i915: re-disable RC6p " Sasa Dragic 2022-12-20 10:32 ` Ville Syrjälä 2022-12-20 15:50 ` Sasa Dragic 2022-12-21 14:09 ` Rodrigo Vivi 2023-01-17 22:50 ` Ville Syrjälä 2022-12-21 17:40 ` [Intel-gfx] ✓ Fi.CI.BAT: success for fix RC6p related regression " Patchwork 2022-12-21 18:52 ` [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