* [Intel-gfx] [PATCH] drm/i915: Remove unused variable
@ 2023-01-18 17:06 Nirmoy Das
2023-01-18 18:34 ` Rodrigo Vivi
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Nirmoy Das @ 2023-01-18 17:06 UTC (permalink / raw)
To: intel-gfx; +Cc: Nirmoy Das, rodrigo.vivi
Removed unused i915 var.
Fixes: a273e95721e9 ("drm/i915: Allow switching away via vga-switcheroo if uninitialized")
Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
---
drivers/gpu/drm/i915/i915_driver.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
index 33e231b120c1..6469c7c1e154 100644
--- a/drivers/gpu/drm/i915/i915_driver.c
+++ b/drivers/gpu/drm/i915/i915_driver.c
@@ -1071,8 +1071,6 @@ static int i915_driver_open(struct drm_device *dev, struct drm_file *file)
*/
static void i915_driver_lastclose(struct drm_device *dev)
{
- struct drm_i915_private *i915 = to_i915(dev);
-
intel_fbdev_restore_mode(dev);
vga_switcheroo_process_delayed_switch();
--
2.39.0
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [Intel-gfx] [PATCH] drm/i915: Remove unused variable 2023-01-18 17:06 [Intel-gfx] [PATCH] drm/i915: Remove unused variable Nirmoy Das @ 2023-01-18 18:34 ` Rodrigo Vivi 2023-01-18 18:39 ` Rodrigo Vivi 2023-01-19 9:21 ` Jani Nikula 2023-01-19 0:45 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for " Patchwork ` (2 subsequent siblings) 3 siblings, 2 replies; 8+ messages in thread From: Rodrigo Vivi @ 2023-01-18 18:34 UTC (permalink / raw) To: Nirmoy Das; +Cc: intel-gfx On Wed, Jan 18, 2023 at 06:06:24PM +0100, Nirmoy Das wrote: > Removed unused i915 var. > > Fixes: a273e95721e9 ("drm/i915: Allow switching away via vga-switcheroo if uninitialized") > Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> and pushed to drm-misc-fixes. Thanks for the patch. > --- > drivers/gpu/drm/i915/i915_driver.c | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c > index 33e231b120c1..6469c7c1e154 100644 > --- a/drivers/gpu/drm/i915/i915_driver.c > +++ b/drivers/gpu/drm/i915/i915_driver.c > @@ -1071,8 +1071,6 @@ static int i915_driver_open(struct drm_device *dev, struct drm_file *file) > */ > static void i915_driver_lastclose(struct drm_device *dev) > { > - struct drm_i915_private *i915 = to_i915(dev); > - > intel_fbdev_restore_mode(dev); > > vga_switcheroo_process_delayed_switch(); > -- > 2.39.0 > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: Remove unused variable 2023-01-18 18:34 ` Rodrigo Vivi @ 2023-01-18 18:39 ` Rodrigo Vivi 2023-01-19 9:21 ` Jani Nikula 1 sibling, 0 replies; 8+ messages in thread From: Rodrigo Vivi @ 2023-01-18 18:39 UTC (permalink / raw) To: Rodrigo Vivi, DRI mailing list; +Cc: intel-gfx, Nirmoy Das On Wed, Jan 18, 2023 at 1:35 PM Rodrigo Vivi <rodrigo.vivi@intel.com> wrote: > > On Wed, Jan 18, 2023 at 06:06:24PM +0100, Nirmoy Das wrote: > > Removed unused i915 var. > > > > Fixes: a273e95721e9 ("drm/i915: Allow switching away via vga-switcheroo if uninitialized") > > Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> > > Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > > and pushed to drm-misc-fixes. > > Thanks for the patch. +dri-devel ml which was forgotten on the patch and on my reply. sorry about that. just noticed after had hit sent in the email here... > > > --- > > drivers/gpu/drm/i915/i915_driver.c | 2 -- > > 1 file changed, 2 deletions(-) > > > > diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c > > index 33e231b120c1..6469c7c1e154 100644 > > --- a/drivers/gpu/drm/i915/i915_driver.c > > +++ b/drivers/gpu/drm/i915/i915_driver.c > > @@ -1071,8 +1071,6 @@ static int i915_driver_open(struct drm_device *dev, struct drm_file *file) > > */ > > static void i915_driver_lastclose(struct drm_device *dev) > > { > > - struct drm_i915_private *i915 = to_i915(dev); > > - > > intel_fbdev_restore_mode(dev); > > > > vga_switcheroo_process_delayed_switch(); > > -- > > 2.39.0 > > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: Remove unused variable 2023-01-18 18:34 ` Rodrigo Vivi 2023-01-18 18:39 ` Rodrigo Vivi @ 2023-01-19 9:21 ` Jani Nikula 2023-01-19 9:59 ` Das, Nirmoy 1 sibling, 1 reply; 8+ messages in thread From: Jani Nikula @ 2023-01-19 9:21 UTC (permalink / raw) To: Rodrigo Vivi, Nirmoy Das; +Cc: intel-gfx On Wed, 18 Jan 2023, Rodrigo Vivi <rodrigo.vivi@intel.com> wrote: > On Wed, Jan 18, 2023 at 06:06:24PM +0100, Nirmoy Das wrote: >> Removed unused i915 var. >> >> Fixes: a273e95721e9 ("drm/i915: Allow switching away via vga-switcheroo if uninitialized") >> Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> > > Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> > > and pushed to drm-misc-fixes. > > Thanks for the patch. I guess this was a quick fix to avoid warnings about it. But really, for i915 the way to go would be to have i915 local var, and pass that around instead of struct drm_device *dev. BR, Jani. > >> --- >> drivers/gpu/drm/i915/i915_driver.c | 2 -- >> 1 file changed, 2 deletions(-) >> >> diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c >> index 33e231b120c1..6469c7c1e154 100644 >> --- a/drivers/gpu/drm/i915/i915_driver.c >> +++ b/drivers/gpu/drm/i915/i915_driver.c >> @@ -1071,8 +1071,6 @@ static int i915_driver_open(struct drm_device *dev, struct drm_file *file) >> */ >> static void i915_driver_lastclose(struct drm_device *dev) >> { >> - struct drm_i915_private *i915 = to_i915(dev); >> - >> intel_fbdev_restore_mode(dev); >> >> vga_switcheroo_process_delayed_switch(); >> -- >> 2.39.0 >> -- Jani Nikula, Intel Open Source Graphics Center ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: Remove unused variable 2023-01-19 9:21 ` Jani Nikula @ 2023-01-19 9:59 ` Das, Nirmoy 0 siblings, 0 replies; 8+ messages in thread From: Das, Nirmoy @ 2023-01-19 9:59 UTC (permalink / raw) To: Jani Nikula, Rodrigo Vivi, Nirmoy Das; +Cc: intel-gfx On 1/19/2023 10:21 AM, Jani Nikula wrote: > On Wed, 18 Jan 2023, Rodrigo Vivi <rodrigo.vivi@intel.com> wrote: >> On Wed, Jan 18, 2023 at 06:06:24PM +0100, Nirmoy Das wrote: >>> Removed unused i915 var. >>> >>> Fixes: a273e95721e9 ("drm/i915: Allow switching away via vga-switcheroo if uninitialized") >>> Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> >> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> >> >> and pushed to drm-misc-fixes. >> >> Thanks for the patch. > I guess this was a quick fix to avoid warnings about it. Yes, it was quick fix. > > But really, for i915 the way to go would be to have i915 local var, and > pass that around instead of struct drm_device *dev. Yes makes sense. I sent a patch for that. Thanks, Nirmoy > > BR, > Jani. > > >>> --- >>> drivers/gpu/drm/i915/i915_driver.c | 2 -- >>> 1 file changed, 2 deletions(-) >>> >>> diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c >>> index 33e231b120c1..6469c7c1e154 100644 >>> --- a/drivers/gpu/drm/i915/i915_driver.c >>> +++ b/drivers/gpu/drm/i915/i915_driver.c >>> @@ -1071,8 +1071,6 @@ static int i915_driver_open(struct drm_device *dev, struct drm_file *file) >>> */ >>> static void i915_driver_lastclose(struct drm_device *dev) >>> { >>> - struct drm_i915_private *i915 = to_i915(dev); >>> - >>> intel_fbdev_restore_mode(dev); >>> >>> vga_switcheroo_process_delayed_switch(); >>> -- >>> 2.39.0 >>> ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Intel-gfx] ✗ Fi.CI.SPARSE: warning for drm/i915: Remove unused variable 2023-01-18 17:06 [Intel-gfx] [PATCH] drm/i915: Remove unused variable Nirmoy Das 2023-01-18 18:34 ` Rodrigo Vivi @ 2023-01-19 0:45 ` Patchwork 2023-01-19 0:58 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2023-01-19 23:30 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-01-19 0:45 UTC (permalink / raw) To: Nirmoy Das; +Cc: intel-gfx == Series Details == Series: drm/i915: Remove unused variable URL : https://patchwork.freedesktop.org/series/113046/ State : warning == Summary == Error: dim sparse failed Sparse version: v0.6.2 ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Remove unused variable 2023-01-18 17:06 [Intel-gfx] [PATCH] drm/i915: Remove unused variable Nirmoy Das 2023-01-18 18:34 ` Rodrigo Vivi 2023-01-19 0:45 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for " Patchwork @ 2023-01-19 0:58 ` Patchwork 2023-01-19 23:30 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-01-19 0:58 UTC (permalink / raw) To: Nirmoy Das; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 3973 bytes --] == Series Details == Series: drm/i915: Remove unused variable URL : https://patchwork.freedesktop.org/series/113046/ State : success == Summary == CI Bug Log - changes from CI_DRM_12605 -> Patchwork_113046v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/index.html Participating hosts (43 -> 42) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_113046v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_chamelium_hpd@common-hpd-after-suspend: - fi-rkl-guc: NOTRUN -> [SKIP][1] ([i915#7828]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/fi-rkl-guc/igt@kms_chamelium_hpd@common-hpd-after-suspend.html #### Possible fixes #### * igt@i915_selftest@live@gt_pm: - {bat-rpls-2}: [DMESG-FAIL][2] ([i915#4258]) -> [PASS][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/bat-rpls-2/igt@i915_selftest@live@gt_pm.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/bat-rpls-2/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@hangcheck: - fi-rkl-guc: [INCOMPLETE][4] ([i915#4983]) -> [PASS][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/fi-rkl-guc/igt@i915_selftest@live@hangcheck.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/fi-rkl-guc/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@reset: - {bat-rpls-2}: [DMESG-FAIL][6] ([i915#4983]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/bat-rpls-2/igt@i915_selftest@live@reset.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/bat-rpls-2/igt@i915_selftest@live@reset.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size: - fi-bsw-n3050: [FAIL][8] ([i915#6298]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/fi-bsw-n3050/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/fi-bsw-n3050/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-3: - {bat-dg2-11}: [INCOMPLETE][10] -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/bat-dg2-11/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-3.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/bat-dg2-11/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-3.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#6298]: https://gitlab.freedesktop.org/drm/intel/issues/6298 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 Build changes ------------- * Linux: CI_DRM_12605 -> Patchwork_113046v1 CI-20190529: 20190529 CI_DRM_12605: 1e863b59056127f55822b29a8f0cabf476806979 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7123: 2b29e8ac07fbcfadc48b9d60e4d736a6e3b289ab @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_113046v1: 1e863b59056127f55822b29a8f0cabf476806979 @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/index.html [-- Attachment #2: Type: text/html, Size: 4585 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915: Remove unused variable 2023-01-18 17:06 [Intel-gfx] [PATCH] drm/i915: Remove unused variable Nirmoy Das ` (2 preceding siblings ...) 2023-01-19 0:58 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork @ 2023-01-19 23:30 ` Patchwork 3 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-01-19 23:30 UTC (permalink / raw) To: Das, Nirmoy; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 19804 bytes --] == Series Details == Series: drm/i915: Remove unused variable URL : https://patchwork.freedesktop.org/series/113046/ State : success == Summary == CI Bug Log - changes from CI_DRM_12605_full -> Patchwork_113046v1_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/index.html Participating hosts (12 -> 10) ------------------------------ Missing (2): pig-skl-6260u pig-kbl-iris Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_113046v1_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@device_reset@unbind-reset-rebind: - {shard-rkl}: [DMESG-WARN][1] ([i915#5507]) -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/shard-rkl-3/igt@device_reset@unbind-reset-rebind.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/shard-rkl-5/igt@device_reset@unbind-reset-rebind.html Known issues ------------ Here are the changes found in Patchwork_113046v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fair@basic-none@vecs0: - shard-glk: [PASS][3] -> [FAIL][4] ([i915#2842]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/shard-glk8/igt@gem_exec_fair@basic-none@vecs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/shard-glk1/igt@gem_exec_fair@basic-none@vecs0.html #### Possible fixes #### * igt@fbdev@nullptr: - {shard-rkl}: [SKIP][5] ([i915#2582]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/shard-rkl-5/igt@fbdev@nullptr.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/shard-rkl-6/igt@fbdev@nullptr.html * igt@gem_exec_fair@basic-none-solo@rcs0: - {shard-rkl}: [FAIL][7] ([i915#2842]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/shard-rkl-3/igt@gem_exec_fair@basic-none-solo@rcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/shard-rkl-2/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_reloc@basic-write-read-noreloc: - {shard-rkl}: [SKIP][9] ([i915#3281]) -> [PASS][10] +8 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/shard-rkl-3/igt@gem_exec_reloc@basic-write-read-noreloc.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - {shard-rkl}: [SKIP][11] ([i915#3282]) -> [PASS][12] +5 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gen9_exec_parse@batch-without-end: - {shard-rkl}: [SKIP][13] ([i915#2527]) -> [PASS][14] +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/shard-rkl-3/igt@gen9_exec_parse@batch-without-end.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/shard-rkl-5/igt@gen9_exec_parse@batch-without-end.html * igt@i915_pm_dc@dc5-psr: - {shard-rkl}: [SKIP][15] ([i915#658]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/shard-rkl-5/igt@i915_pm_dc@dc5-psr.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/shard-rkl-6/igt@i915_pm_dc@dc5-psr.html * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a: - {shard-dg1}: [SKIP][17] ([i915#1937]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/shard-dg1-16/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/shard-dg1-14/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - {shard-rkl}: [WARN][19] ([i915#2681]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/shard-rkl-5/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/shard-rkl-3/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - {shard-tglu}: [SKIP][21] ([i915#1397]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/shard-tglu-6/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/shard-tglu-1/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@system-suspend-modeset: - {shard-tglu}: [SKIP][23] ([i915#3547]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/shard-tglu-6/igt@i915_pm_rpm@system-suspend-modeset.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/shard-tglu-1/igt@i915_pm_rpm@system-suspend-modeset.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-glk: [FAIL][25] ([i915#72]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/shard-glk3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/shard-glk7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_draw_crc@fill-fb: - {shard-tglu}: [SKIP][27] ([i915#1845]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/shard-tglu-6/igt@kms_draw_crc@fill-fb.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/shard-tglu-1/igt@kms_draw_crc@fill-fb.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][29] ([i915#79]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt: - {shard-tglu}: [SKIP][31] ([i915#1849]) -> [PASS][32] +1 similar issue [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - {shard-rkl}: [SKIP][33] ([i915#1849] / [i915#4098]) -> [PASS][34] +9 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes: - {shard-rkl}: [SKIP][35] ([i915#1849]) -> [PASS][36] +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/shard-rkl-5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html * igt@kms_psr@cursor_plane_onoff: - {shard-rkl}: [SKIP][37] ([i915#1072]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/shard-rkl-1/igt@kms_psr@cursor_plane_onoff.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/shard-rkl-6/igt@kms_psr@cursor_plane_onoff.html * igt@kms_universal_plane@cursor-fb-leak-pipe-c: - {shard-tglu}: [SKIP][39] ([fdo#109274]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/shard-tglu-1/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html * igt@kms_vblank@pipe-a-wait-busy: - {shard-tglu}: [SKIP][41] ([i915#7651]) -> [PASS][42] +8 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/shard-tglu-6/igt@kms_vblank@pipe-a-wait-busy.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/shard-tglu-1/igt@kms_vblank@pipe-a-wait-busy.html * igt@kms_vblank@pipe-b-query-idle: - {shard-rkl}: [SKIP][43] ([i915#1845] / [i915#4098]) -> [PASS][44] +15 similar issues [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/shard-rkl-1/igt@kms_vblank@pipe-b-query-idle.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/shard-rkl-6/igt@kms_vblank@pipe-b-query-idle.html * igt@kms_vblank@pipe-b-ts-continuation-idle-hang: - {shard-tglu}: [SKIP][45] ([i915#1845] / [i915#7651]) -> [PASS][46] +1 similar issue [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/shard-tglu-6/igt@kms_vblank@pipe-b-ts-continuation-idle-hang.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/shard-tglu-1/igt@kms_vblank@pipe-b-ts-continuation-idle-hang.html * igt@prime_vgem@basic-write: - {shard-rkl}: [SKIP][47] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/shard-rkl-3/igt@prime_vgem@basic-write.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/shard-rkl-5/igt@prime_vgem@basic-write.html * igt@sysfs_timeslice_duration@timeout@vcs1: - {shard-dg1}: [FAIL][49] ([i915#1755]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12605/shard-dg1-15/igt@sysfs_timeslice_duration@timeout@vcs1.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113046v1/shard-dg1-16/igt@sysfs_timeslice_duration@timeout@vcs1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#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#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [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#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [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#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [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#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3547]: https://gitlab.freedesktop.org/drm/intel/issues/3547 [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#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#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#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [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#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5507]: https://gitlab.freedesktop.org/drm/intel/issues/5507 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258 [i915#6259]: https://gitlab.freedesktop.org/drm/intel/issues/6259 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6403]: https://gitlab.freedesktop.org/drm/intel/issues/6403 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 [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#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 [i915#7294]: https://gitlab.freedesktop.org/drm/intel/issues/7294 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 [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#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * Linux: CI_DRM_12605 -> Patchwork_113046v1 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12605: 1e863b59056127f55822b29a8f0cabf476806979 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7123: 2b29e8ac07fbcfadc48b9d60e4d736a6e3b289ab @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_113046v1: 1e863b59056127f55822b29a8f0cabf476806979 @ 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_113046v1/index.html [-- Attachment #2: Type: text/html, Size: 14367 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-01-19 23:30 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-01-18 17:06 [Intel-gfx] [PATCH] drm/i915: Remove unused variable Nirmoy Das 2023-01-18 18:34 ` Rodrigo Vivi 2023-01-18 18:39 ` Rodrigo Vivi 2023-01-19 9:21 ` Jani Nikula 2023-01-19 9:59 ` Das, Nirmoy 2023-01-19 0:45 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for " Patchwork 2023-01-19 0:58 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2023-01-19 23:30 ` [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