* [Intel-gfx] [PATCH] drm/i915: fix intel_display_irq.c include order
@ 2023-05-16 12:29 Jani Nikula
2023-05-16 13:04 ` Gustavo Sousa
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Jani Nikula @ 2023-05-16 12:29 UTC (permalink / raw)
To: intel-gfx; +Cc: jani.nikula
I meant to sort the includes before submitting commit 2b874a027810
("drm/i915/irq: split out display irq handling") but forgot, and it
wasn't noticed in review either. Sort the includes.
Cc: Gustavo Sousa <gustavo.sousa@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/display/intel_display_irq.c | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_irq.c b/drivers/gpu/drm/i915/display/intel_display_irq.c
index 0eedd1ebb389..3b2a287d2041 100644
--- a/drivers/gpu/drm/i915/display/intel_display_irq.c
+++ b/drivers/gpu/drm/i915/display/intel_display_irq.c
@@ -3,23 +3,23 @@
* Copyright © 2023 Intel Corporation
*/
+#include "gt/intel_rps.h"
#include "i915_drv.h"
#include "i915_irq.h"
#include "i915_reg.h"
#include "icl_dsi_regs.h"
-#include "intel_display_irq.h"
-#include "intel_display_types.h"
-#include "intel_hotplug_irq.h"
-#include "intel_psr_regs.h"
#include "intel_crtc.h"
+#include "intel_de.h"
+#include "intel_display_irq.h"
#include "intel_display_trace.h"
+#include "intel_display_types.h"
#include "intel_dp_aux.h"
-#include "intel_gmbus.h"
+#include "intel_fdi_regs.h"
#include "intel_fifo_underrun.h"
+#include "intel_gmbus.h"
+#include "intel_hotplug_irq.h"
#include "intel_psr.h"
-#include "intel_fdi_regs.h"
-#include "gt/intel_rps.h"
-#include "intel_de.h"
+#include "intel_psr_regs.h"
static void
intel_handle_vblank(struct drm_i915_private *dev_priv, enum pipe pipe)
--
2.39.2
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [Intel-gfx] [PATCH] drm/i915: fix intel_display_irq.c include order 2023-05-16 12:29 [Intel-gfx] [PATCH] drm/i915: fix intel_display_irq.c include order Jani Nikula @ 2023-05-16 13:04 ` Gustavo Sousa 2023-05-17 8:24 ` Jani Nikula 2023-05-16 14:38 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork 2023-05-16 20:57 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 1 reply; 5+ messages in thread From: Gustavo Sousa @ 2023-05-16 13:04 UTC (permalink / raw) To: Jani Nikula, intel-gfx; +Cc: jani.nikula Quoting Jani Nikula (2023-05-16 09:29:26) >I meant to sort the includes before submitting commit 2b874a027810 >("drm/i915/irq: split out display irq handling") but forgot, and it >wasn't noticed in review either. Sort the includes. Oops... My bad. > >Cc: Gustavo Sousa <gustavo.sousa@intel.com> >Signed-off-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com> >--- > drivers/gpu/drm/i915/display/intel_display_irq.c | 16 ++++++++-------- > 1 file changed, 8 insertions(+), 8 deletions(-) > >diff --git a/drivers/gpu/drm/i915/display/intel_display_irq.c b/drivers/gpu/drm/i915/display/intel_display_irq.c >index 0eedd1ebb389..3b2a287d2041 100644 >--- a/drivers/gpu/drm/i915/display/intel_display_irq.c >+++ b/drivers/gpu/drm/i915/display/intel_display_irq.c >@@ -3,23 +3,23 @@ > * Copyright © 2023 Intel Corporation > */ > >+#include "gt/intel_rps.h" > #include "i915_drv.h" > #include "i915_irq.h" > #include "i915_reg.h" > #include "icl_dsi_regs.h" >-#include "intel_display_irq.h" >-#include "intel_display_types.h" >-#include "intel_hotplug_irq.h" >-#include "intel_psr_regs.h" > #include "intel_crtc.h" >+#include "intel_de.h" >+#include "intel_display_irq.h" > #include "intel_display_trace.h" >+#include "intel_display_types.h" > #include "intel_dp_aux.h" >-#include "intel_gmbus.h" >+#include "intel_fdi_regs.h" > #include "intel_fifo_underrun.h" >+#include "intel_gmbus.h" >+#include "intel_hotplug_irq.h" > #include "intel_psr.h" >-#include "intel_fdi_regs.h" >-#include "gt/intel_rps.h" >-#include "intel_de.h" >+#include "intel_psr_regs.h" > > static void > intel_handle_vblank(struct drm_i915_private *dev_priv, enum pipe pipe) >-- >2.39.2 > ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: fix intel_display_irq.c include order 2023-05-16 13:04 ` Gustavo Sousa @ 2023-05-17 8:24 ` Jani Nikula 0 siblings, 0 replies; 5+ messages in thread From: Jani Nikula @ 2023-05-17 8:24 UTC (permalink / raw) To: Gustavo Sousa, intel-gfx On Tue, 16 May 2023, Gustavo Sousa <gustavo.sousa@intel.com> wrote: > Quoting Jani Nikula (2023-05-16 09:29:26) >>I meant to sort the includes before submitting commit 2b874a027810 >>("drm/i915/irq: split out display irq handling") but forgot, and it >>wasn't noticed in review either. Sort the includes. > > Oops... My bad. Nah, mine, really. > >> >>Cc: Gustavo Sousa <gustavo.sousa@intel.com> >>Signed-off-by: Jani Nikula <jani.nikula@intel.com> > > Reviewed-by: Gustavo Sousa <gustavo.sousa@intel.com> Thanks, pushed to din. BR, Jani. > >>--- >> drivers/gpu/drm/i915/display/intel_display_irq.c | 16 ++++++++-------- >> 1 file changed, 8 insertions(+), 8 deletions(-) >> >>diff --git a/drivers/gpu/drm/i915/display/intel_display_irq.c b/drivers/gpu/drm/i915/display/intel_display_irq.c >>index 0eedd1ebb389..3b2a287d2041 100644 >>--- a/drivers/gpu/drm/i915/display/intel_display_irq.c >>+++ b/drivers/gpu/drm/i915/display/intel_display_irq.c >>@@ -3,23 +3,23 @@ >> * Copyright © 2023 Intel Corporation >> */ >> >>+#include "gt/intel_rps.h" >> #include "i915_drv.h" >> #include "i915_irq.h" >> #include "i915_reg.h" >> #include "icl_dsi_regs.h" >>-#include "intel_display_irq.h" >>-#include "intel_display_types.h" >>-#include "intel_hotplug_irq.h" >>-#include "intel_psr_regs.h" >> #include "intel_crtc.h" >>+#include "intel_de.h" >>+#include "intel_display_irq.h" >> #include "intel_display_trace.h" >>+#include "intel_display_types.h" >> #include "intel_dp_aux.h" >>-#include "intel_gmbus.h" >>+#include "intel_fdi_regs.h" >> #include "intel_fifo_underrun.h" >>+#include "intel_gmbus.h" >>+#include "intel_hotplug_irq.h" >> #include "intel_psr.h" >>-#include "intel_fdi_regs.h" >>-#include "gt/intel_rps.h" >>-#include "intel_de.h" >>+#include "intel_psr_regs.h" >> >> static void >> intel_handle_vblank(struct drm_i915_private *dev_priv, enum pipe pipe) >>-- >>2.39.2 >> -- Jani Nikula, Intel Open Source Graphics Center ^ permalink raw reply [flat|nested] 5+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: fix intel_display_irq.c include order 2023-05-16 12:29 [Intel-gfx] [PATCH] drm/i915: fix intel_display_irq.c include order Jani Nikula 2023-05-16 13:04 ` Gustavo Sousa @ 2023-05-16 14:38 ` Patchwork 2023-05-16 20:57 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-05-16 14:38 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 5861 bytes --] == Series Details == Series: drm/i915: fix intel_display_irq.c include order URL : https://patchwork.freedesktop.org/series/117816/ State : success == Summary == CI Bug Log - changes from CI_DRM_13151 -> Patchwork_117816v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_117816v1/index.html Participating hosts (38 -> 37) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_117816v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_module_load@load: - bat-adls-5: [PASS][1] -> [ABORT][2] ([i915#4391]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13151/bat-adls-5/igt@i915_module_load@load.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_117816v1/bat-adls-5/igt@i915_module_load@load.html * igt@i915_selftest@live@slpc: - bat-rpls-2: NOTRUN -> [DMESG-WARN][3] ([i915#6367]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_117816v1/bat-rpls-2/igt@i915_selftest@live@slpc.html * igt@i915_suspend@basic-s2idle-without-i915: - bat-rpls-2: NOTRUN -> [ABORT][4] ([i915#6687]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_117816v1/bat-rpls-2/igt@i915_suspend@basic-s2idle-without-i915.html #### Possible fixes #### * igt@i915_pm_rpm@basic-rte: - {bat-mtlp-8}: [TIMEOUT][5] -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13151/bat-mtlp-8/igt@i915_pm_rpm@basic-rte.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_117816v1/bat-mtlp-8/igt@i915_pm_rpm@basic-rte.html * igt@i915_selftest@live@requests: - {bat-mtlp-8}: [ABORT][7] ([i915#4983] / [i915#7920] / [i915#7953]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13151/bat-mtlp-8/igt@i915_selftest@live@requests.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_117816v1/bat-mtlp-8/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@reset: - bat-rpls-2: [ABORT][9] ([i915#4983] / [i915#7461] / [i915#7913] / [i915#8347]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13151/bat-rpls-2/igt@i915_selftest@live@reset.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_117816v1/bat-rpls-2/igt@i915_selftest@live@reset.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck@pipe-d-dp-1: - bat-dg2-8: [FAIL][11] ([i915#7932]) -> [PASS][12] +2 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13151/bat-dg2-8/igt@kms_pipe_crc_basic@compare-crc-sanitycheck@pipe-d-dp-1.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_117816v1/bat-dg2-8/igt@kms_pipe_crc_basic@compare-crc-sanitycheck@pipe-d-dp-1.html #### Warnings #### * igt@i915_selftest@live@slpc: - bat-rpls-1: [DMESG-WARN][13] ([i915#6367] / [i915#7953]) -> [DMESG-WARN][14] ([i915#6367]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13151/bat-rpls-1/igt@i915_selftest@live@slpc.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_117816v1/bat-rpls-1/igt@i915_selftest@live@slpc.html * igt@i915_suspend@basic-s3-without-i915: - fi-tgl-1115g4: [INCOMPLETE][15] ([i915#7443] / [i915#7953] / [i915#8102]) -> [INCOMPLETE][16] ([i915#7443] / [i915#8102]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13151/fi-tgl-1115g4/igt@i915_suspend@basic-s3-without-i915.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_117816v1/fi-tgl-1115g4/igt@i915_suspend@basic-s3-without-i915.html - bat-rpls-1: [ABORT][17] ([i915#6687] / [i915#7953] / [i915#7978]) -> [ABORT][18] ([i915#6687] / [i915#7978]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13151/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_117816v1/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920 [i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932 [i915#7953]: https://gitlab.freedesktop.org/drm/intel/issues/7953 [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978 [i915#8102]: https://gitlab.freedesktop.org/drm/intel/issues/8102 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 Build changes ------------- * Linux: CI_DRM_13151 -> Patchwork_117816v1 CI-20190529: 20190529 CI_DRM_13151: 4a28d03908b9d284f0b64a1fd9f5304761460db8 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7292: 9d9475ffd3b5ae18fd8ec120595385f6c562f249 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_117816v1: 4a28d03908b9d284f0b64a1fd9f5304761460db8 @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits 265d72fc1d44 drm/i915: fix intel_display_irq.c include order == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_117816v1/index.html [-- Attachment #2: Type: text/html, Size: 7292 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915: fix intel_display_irq.c include order 2023-05-16 12:29 [Intel-gfx] [PATCH] drm/i915: fix intel_display_irq.c include order Jani Nikula 2023-05-16 13:04 ` Gustavo Sousa 2023-05-16 14:38 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork @ 2023-05-16 20:57 ` Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-05-16 20:57 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 8891 bytes --] == Series Details == Series: drm/i915: fix intel_display_irq.c include order URL : https://patchwork.freedesktop.org/series/117816/ State : success == Summary == CI Bug Log - changes from CI_DRM_13151_full -> Patchwork_117816v1_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_117816v1_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@syncobj_wait@reset-unsignaled: - {shard-dg1}: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13151/shard-dg1-14/igt@syncobj_wait@reset-unsignaled.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_117816v1/shard-dg1-16/igt@syncobj_wait@reset-unsignaled.html Known issues ------------ Here are the changes found in Patchwork_117816v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [PASS][3] -> [FAIL][4] ([i915#2842]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13151/shard-glk1/igt@gem_exec_fair@basic-pace@vcs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_117816v1/shard-glk3/igt@gem_exec_fair@basic-pace@vcs0.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][5] -> [DMESG-FAIL][6] ([i915#8319]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13151/shard-snb4/igt@i915_pm_rps@reset.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_117816v1/shard-snb6/igt@i915_pm_rps@reset.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][7] -> [FAIL][8] ([i915#2346]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13151/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_117816v1/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2: - shard-glk: [PASS][9] -> [FAIL][10] ([i915#79]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13151/shard-glk6/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_117816v1/shard-glk8/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2.html #### Possible fixes #### * igt@drm_fdinfo@virtual-idle: - {shard-rkl}: [FAIL][11] ([i915#7742]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13151/shard-rkl-2/igt@drm_fdinfo@virtual-idle.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_117816v1/shard-rkl-7/igt@drm_fdinfo@virtual-idle.html * igt@gem_exec_fair@basic-none@bcs0: - {shard-rkl}: [FAIL][13] ([i915#2842]) -> [PASS][14] +2 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13151/shard-rkl-7/igt@gem_exec_fair@basic-none@bcs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_117816v1/shard-rkl-1/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][15] ([i915#2842]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13151/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_117816v1/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html - {shard-tglu}: [FAIL][17] ([i915#2842]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13151/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_117816v1/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - {shard-rkl}: [SKIP][19] ([i915#1397]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13151/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_117816v1/shard-rkl-1/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1: - shard-glk: [FAIL][21] ([i915#79]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13151/shard-glk2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_117816v1/shard-glk6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1: - shard-apl: [FAIL][23] ([i915#79]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13151/shard-apl1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_117816v1/shard-apl2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8319]: https://gitlab.freedesktop.org/drm/intel/issues/8319 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 Build changes ------------- * Linux: CI_DRM_13151 -> Patchwork_117816v1 CI-20190529: 20190529 CI_DRM_13151: 4a28d03908b9d284f0b64a1fd9f5304761460db8 @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7292: 9d9475ffd3b5ae18fd8ec120595385f6c562f249 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_117816v1: 4a28d03908b9d284f0b64a1fd9f5304761460db8 @ 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_117816v1/index.html [-- Attachment #2: Type: text/html, Size: 7613 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-05-17 8:24 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-05-16 12:29 [Intel-gfx] [PATCH] drm/i915: fix intel_display_irq.c include order Jani Nikula 2023-05-16 13:04 ` Gustavo Sousa 2023-05-17 8:24 ` Jani Nikula 2023-05-16 14:38 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork 2023-05-16 20:57 ` [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