* [Intel-gfx] [PATCH] drm/i915: Reduce ELD hex dumps a bit
@ 2023-02-15 12:18 Ville Syrjala
2023-02-15 13:12 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Ville Syrjala @ 2023-02-15 12:18 UTC (permalink / raw)
To: intel-gfx
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Do the ELD hexdumps only up to the last differing byte.
The rest is typically all zeroes anyway so not much point
in dumping it.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/display/intel_display.c | 23 ++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 3479125fbda6..d73aea9040e0 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -5348,6 +5348,23 @@ pipe_config_dp_vsc_sdp_mismatch(struct drm_i915_private *dev_priv,
}
}
+/*
+ * Like a revese memcmp(), but returns the
+ * position of the last differing byte.
+ */
+static int
+memcmp_pos_reverse(const u8 *a, const u8 *b, size_t len)
+{
+ int i;
+
+ for (i = len - 1; i >= 0; i--) {
+ if (a[i] != b[i])
+ return i;
+ }
+
+ return len;
+}
+
static void
pipe_config_buffer_mismatch(struct drm_i915_private *dev_priv,
bool fastset, const char *name,
@@ -5357,6 +5374,9 @@ pipe_config_buffer_mismatch(struct drm_i915_private *dev_priv,
if (!drm_debug_enabled(DRM_UT_KMS))
return;
+ /* only dump up to the last difference */
+ len = memcmp_pos_reverse(a, b, len) + 1;
+
drm_dbg_kms(&dev_priv->drm,
"fastset mismatch in %s buffer\n", name);
print_hex_dump(KERN_DEBUG, "expected: ", DUMP_PREFIX_NONE,
@@ -5364,6 +5384,9 @@ pipe_config_buffer_mismatch(struct drm_i915_private *dev_priv,
print_hex_dump(KERN_DEBUG, "found: ", DUMP_PREFIX_NONE,
16, 0, b, len, false);
} else {
+ /* only dump up to the last difference */
+ len = memcmp_pos_reverse(a, b, len) + 1;
+
drm_err(&dev_priv->drm, "mismatch in %s buffer\n", name);
print_hex_dump(KERN_ERR, "expected: ", DUMP_PREFIX_NONE,
16, 0, a, len, false);
--
2.39.1
^ permalink raw reply related [flat|nested] 9+ messages in thread* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Reduce ELD hex dumps a bit 2023-02-15 12:18 [Intel-gfx] [PATCH] drm/i915: Reduce ELD hex dumps a bit Ville Syrjala @ 2023-02-15 13:12 ` Patchwork 2023-02-15 13:15 ` [Intel-gfx] [PATCH] " Jani Nikula ` (3 subsequent siblings) 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-02-15 13:12 UTC (permalink / raw) To: Ville Syrjala; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 5102 bytes --] == Series Details == Series: drm/i915: Reduce ELD hex dumps a bit URL : https://patchwork.freedesktop.org/series/114051/ State : success == Summary == CI Bug Log - changes from CI_DRM_12742 -> Patchwork_114051v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v1/index.html Participating hosts (41 -> 40) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_114051v1: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_suspend@basic-s2idle-without-i915: - {bat-rpls-1}: NOTRUN -> [ABORT][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v1/bat-rpls-1/igt@i915_suspend@basic-s2idle-without-i915.html Known issues ------------ Here are the changes found in Patchwork_114051v1 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@gem_exec_gttfill@basic: - fi-pnv-d510: [FAIL][2] ([i915#7229]) -> [PASS][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12742/fi-pnv-d510/igt@gem_exec_gttfill@basic.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v1/fi-pnv-d510/igt@gem_exec_gttfill@basic.html * igt@i915_pm_rpm@module-reload: - {bat-adlm-1}: [FAIL][4] ([i915#7948]) -> [PASS][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12742/bat-adlm-1/igt@i915_pm_rpm@module-reload.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v1/bat-adlm-1/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@gt_lrc: - {bat-adlm-1}: [DMESG-WARN][6] ([i915#2867]) -> [PASS][7] +5 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12742/bat-adlm-1/igt@i915_selftest@live@gt_lrc.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v1/bat-adlm-1/igt@i915_selftest@live@gt_lrc.html * igt@i915_selftest@live@hangcheck: - fi-skl-guc: [DMESG-WARN][8] ([i915#8073]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12742/fi-skl-guc/igt@i915_selftest@live@hangcheck.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v1/fi-skl-guc/igt@i915_selftest@live@hangcheck.html * igt@i915_selftest@live@reset: - {bat-rpls-1}: [ABORT][10] ([i915#4983]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12742/bat-rpls-1/igt@i915_selftest@live@reset.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v1/bat-rpls-1/igt@i915_selftest@live@reset.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions: - fi-bsw-n3050: [FAIL][12] ([i915#6298]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12742/fi-bsw-n3050/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v1/fi-bsw-n3050/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions.html #### Warnings #### * igt@i915_selftest@live@execlists: - fi-kbl-soraka: [INCOMPLETE][14] ([i915#7913]) -> [INCOMPLETE][15] ([i915#7156] / [i915#7913]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12742/fi-kbl-soraka/igt@i915_selftest@live@execlists.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v1/fi-kbl-soraka/igt@i915_selftest@live@execlists.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [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#7156]: https://gitlab.freedesktop.org/drm/intel/issues/7156 [i915#7229]: https://gitlab.freedesktop.org/drm/intel/issues/7229 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7948]: https://gitlab.freedesktop.org/drm/intel/issues/7948 [i915#7996]: https://gitlab.freedesktop.org/drm/intel/issues/7996 [i915#8073]: https://gitlab.freedesktop.org/drm/intel/issues/8073 Build changes ------------- * Linux: CI_DRM_12742 -> Patchwork_114051v1 CI-20190529: 20190529 CI_DRM_12742: 2c44b3a03fcdad48fb0d269cbea549b0a4eb0c3c @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7160: 45da871dd2684227e93a2fc002b87dfc58bd5fd9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_114051v1: 2c44b3a03fcdad48fb0d269cbea549b0a4eb0c3c @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits dcac8aead74a drm/i915: Reduce ELD hex dumps a bit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v1/index.html [-- Attachment #2: Type: text/html, Size: 5831 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: Reduce ELD hex dumps a bit 2023-02-15 12:18 [Intel-gfx] [PATCH] drm/i915: Reduce ELD hex dumps a bit Ville Syrjala 2023-02-15 13:12 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork @ 2023-02-15 13:15 ` Jani Nikula 2023-02-15 13:19 ` Ville Syrjälä 2023-02-15 15:01 ` [Intel-gfx] [PATCH v2] " Ville Syrjala ` (2 subsequent siblings) 4 siblings, 1 reply; 9+ messages in thread From: Jani Nikula @ 2023-02-15 13:15 UTC (permalink / raw) To: Ville Syrjala, intel-gfx On Wed, 15 Feb 2023, Ville Syrjala <ville.syrjala@linux.intel.com> wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > Do the ELD hexdumps only up to the last differing byte. > The rest is typically all zeroes anyway so not much point > in dumping it. Arguably part of the reason for big dumps is that we use MAX_ELD_BYTES for the size instead of drm_eld_size(). Granted, using drm_eld_size() brings other complications, so maybe this is better anyway. > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > --- > drivers/gpu/drm/i915/display/intel_display.c | 23 ++++++++++++++++++++ > 1 file changed, 23 insertions(+) > > diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c > index 3479125fbda6..d73aea9040e0 100644 > --- a/drivers/gpu/drm/i915/display/intel_display.c > +++ b/drivers/gpu/drm/i915/display/intel_display.c > @@ -5348,6 +5348,23 @@ pipe_config_dp_vsc_sdp_mismatch(struct drm_i915_private *dev_priv, > } > } > > +/* > + * Like a revese memcmp(), but returns the > + * position of the last differing byte. > + */ > +static int > +memcmp_pos_reverse(const u8 *a, const u8 *b, size_t len) > +{ > + int i; > + > + for (i = len - 1; i >= 0; i--) { > + if (a[i] != b[i]) > + return i; > + } > + > + return len; > +} Maybe make the function return "length of differing prefix" instead? If the buffers are identical, you now return len, and the caller dumps len + 1, overflowing the buffer. This shouldn't happen, because we've checked before that the buffers do differ, but it's a trap for anyone who just picks this up for some other use case. The fix is simple, return "i + 1" if there's a difference, return 0 at the end if there's not, and drop the + 1 from the caller side. Renaming the function is the hard part. ;) BR, Jani. > + > static void > pipe_config_buffer_mismatch(struct drm_i915_private *dev_priv, > bool fastset, const char *name, > @@ -5357,6 +5374,9 @@ pipe_config_buffer_mismatch(struct drm_i915_private *dev_priv, > if (!drm_debug_enabled(DRM_UT_KMS)) > return; > > + /* only dump up to the last difference */ > + len = memcmp_pos_reverse(a, b, len) + 1; > + > drm_dbg_kms(&dev_priv->drm, > "fastset mismatch in %s buffer\n", name); > print_hex_dump(KERN_DEBUG, "expected: ", DUMP_PREFIX_NONE, > @@ -5364,6 +5384,9 @@ pipe_config_buffer_mismatch(struct drm_i915_private *dev_priv, > print_hex_dump(KERN_DEBUG, "found: ", DUMP_PREFIX_NONE, > 16, 0, b, len, false); > } else { > + /* only dump up to the last difference */ > + len = memcmp_pos_reverse(a, b, len) + 1; > + > drm_err(&dev_priv->drm, "mismatch in %s buffer\n", name); > print_hex_dump(KERN_ERR, "expected: ", DUMP_PREFIX_NONE, > 16, 0, a, len, false); -- Jani Nikula, Intel Open Source Graphics Center ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: Reduce ELD hex dumps a bit 2023-02-15 13:15 ` [Intel-gfx] [PATCH] " Jani Nikula @ 2023-02-15 13:19 ` Ville Syrjälä 2023-02-15 14:17 ` Jani Nikula 0 siblings, 1 reply; 9+ messages in thread From: Ville Syrjälä @ 2023-02-15 13:19 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx On Wed, Feb 15, 2023 at 03:15:41PM +0200, Jani Nikula wrote: > On Wed, 15 Feb 2023, Ville Syrjala <ville.syrjala@linux.intel.com> wrote: > > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > > > Do the ELD hexdumps only up to the last differing byte. > > The rest is typically all zeroes anyway so not much point > > in dumping it. > > Arguably part of the reason for big dumps is that we use MAX_ELD_BYTES > for the size instead of drm_eld_size(). Granted, using drm_eld_size() > brings other complications, so maybe this is better anyway. > > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > > --- > > drivers/gpu/drm/i915/display/intel_display.c | 23 ++++++++++++++++++++ > > 1 file changed, 23 insertions(+) > > > > diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c > > index 3479125fbda6..d73aea9040e0 100644 > > --- a/drivers/gpu/drm/i915/display/intel_display.c > > +++ b/drivers/gpu/drm/i915/display/intel_display.c > > @@ -5348,6 +5348,23 @@ pipe_config_dp_vsc_sdp_mismatch(struct drm_i915_private *dev_priv, > > } > > } > > > > +/* > > + * Like a revese memcmp(), but returns the > > + * position of the last differing byte. > > + */ > > +static int > > +memcmp_pos_reverse(const u8 *a, const u8 *b, size_t len) > > +{ > > + int i; > > + > > + for (i = len - 1; i >= 0; i--) { > > + if (a[i] != b[i]) > > + return i; > > + } > > + > > + return len; > > +} > > Maybe make the function return "length of differing prefix" instead? > > If the buffers are identical, you now return len, and the caller dumps > len + 1, overflowing the buffer. This shouldn't happen, because we've > checked before that the buffers do differ, but it's a trap for anyone > who just picks this up for some other use case. > > The fix is simple, return "i + 1" if there's a difference, return 0 at > the end if there's not, and drop the + 1 from the caller side. > > Renaming the function is the hard part. ;) memcmp_len_reverse()? > > > BR, > Jani. > > > > + > > static void > > pipe_config_buffer_mismatch(struct drm_i915_private *dev_priv, > > bool fastset, const char *name, > > @@ -5357,6 +5374,9 @@ pipe_config_buffer_mismatch(struct drm_i915_private *dev_priv, > > if (!drm_debug_enabled(DRM_UT_KMS)) > > return; > > > > + /* only dump up to the last difference */ > > + len = memcmp_pos_reverse(a, b, len) + 1; > > + > > drm_dbg_kms(&dev_priv->drm, > > "fastset mismatch in %s buffer\n", name); > > print_hex_dump(KERN_DEBUG, "expected: ", DUMP_PREFIX_NONE, > > @@ -5364,6 +5384,9 @@ pipe_config_buffer_mismatch(struct drm_i915_private *dev_priv, > > print_hex_dump(KERN_DEBUG, "found: ", DUMP_PREFIX_NONE, > > 16, 0, b, len, false); > > } else { > > + /* only dump up to the last difference */ > > + len = memcmp_pos_reverse(a, b, len) + 1; > > + > > drm_err(&dev_priv->drm, "mismatch in %s buffer\n", name); > > print_hex_dump(KERN_ERR, "expected: ", DUMP_PREFIX_NONE, > > 16, 0, a, len, false); > > -- > Jani Nikula, Intel Open Source Graphics Center -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: Reduce ELD hex dumps a bit 2023-02-15 13:19 ` Ville Syrjälä @ 2023-02-15 14:17 ` Jani Nikula 0 siblings, 0 replies; 9+ messages in thread From: Jani Nikula @ 2023-02-15 14:17 UTC (permalink / raw) To: Ville Syrjälä; +Cc: intel-gfx On Wed, 15 Feb 2023, Ville Syrjälä <ville.syrjala@linux.intel.com> wrote: > On Wed, Feb 15, 2023 at 03:15:41PM +0200, Jani Nikula wrote: >> On Wed, 15 Feb 2023, Ville Syrjala <ville.syrjala@linux.intel.com> wrote: >> > From: Ville Syrjälä <ville.syrjala@linux.intel.com> >> > >> > Do the ELD hexdumps only up to the last differing byte. >> > The rest is typically all zeroes anyway so not much point >> > in dumping it. >> >> Arguably part of the reason for big dumps is that we use MAX_ELD_BYTES >> for the size instead of drm_eld_size(). Granted, using drm_eld_size() >> brings other complications, so maybe this is better anyway. >> >> > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> >> > --- >> > drivers/gpu/drm/i915/display/intel_display.c | 23 ++++++++++++++++++++ >> > 1 file changed, 23 insertions(+) >> > >> > diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c >> > index 3479125fbda6..d73aea9040e0 100644 >> > --- a/drivers/gpu/drm/i915/display/intel_display.c >> > +++ b/drivers/gpu/drm/i915/display/intel_display.c >> > @@ -5348,6 +5348,23 @@ pipe_config_dp_vsc_sdp_mismatch(struct drm_i915_private *dev_priv, >> > } >> > } >> > >> > +/* >> > + * Like a revese memcmp(), but returns the >> > + * position of the last differing byte. >> > + */ >> > +static int >> > +memcmp_pos_reverse(const u8 *a, const u8 *b, size_t len) >> > +{ >> > + int i; >> > + >> > + for (i = len - 1; i >= 0; i--) { >> > + if (a[i] != b[i]) >> > + return i; >> > + } >> > + >> > + return len; >> > +} >> >> Maybe make the function return "length of differing prefix" instead? >> >> If the buffers are identical, you now return len, and the caller dumps >> len + 1, overflowing the buffer. This shouldn't happen, because we've >> checked before that the buffers do differ, but it's a trap for anyone >> who just picks this up for some other use case. >> >> The fix is simple, return "i + 1" if there's a difference, return 0 at >> the end if there's not, and drop the + 1 from the caller side. >> >> Renaming the function is the hard part. ;) > > memcmp_len_reverse()? memcmp_diff_len()? > >> >> >> BR, >> Jani. >> >> >> > + >> > static void >> > pipe_config_buffer_mismatch(struct drm_i915_private *dev_priv, >> > bool fastset, const char *name, >> > @@ -5357,6 +5374,9 @@ pipe_config_buffer_mismatch(struct drm_i915_private *dev_priv, >> > if (!drm_debug_enabled(DRM_UT_KMS)) >> > return; >> > >> > + /* only dump up to the last difference */ >> > + len = memcmp_pos_reverse(a, b, len) + 1; >> > + >> > drm_dbg_kms(&dev_priv->drm, >> > "fastset mismatch in %s buffer\n", name); >> > print_hex_dump(KERN_DEBUG, "expected: ", DUMP_PREFIX_NONE, >> > @@ -5364,6 +5384,9 @@ pipe_config_buffer_mismatch(struct drm_i915_private *dev_priv, >> > print_hex_dump(KERN_DEBUG, "found: ", DUMP_PREFIX_NONE, >> > 16, 0, b, len, false); >> > } else { >> > + /* only dump up to the last difference */ >> > + len = memcmp_pos_reverse(a, b, len) + 1; >> > + >> > drm_err(&dev_priv->drm, "mismatch in %s buffer\n", name); >> > print_hex_dump(KERN_ERR, "expected: ", DUMP_PREFIX_NONE, >> > 16, 0, a, len, false); >> >> -- >> Jani Nikula, Intel Open Source Graphics Center -- Jani Nikula, Intel Open Source Graphics Center ^ permalink raw reply [flat|nested] 9+ messages in thread
* [Intel-gfx] [PATCH v2] drm/i915: Reduce ELD hex dumps a bit 2023-02-15 12:18 [Intel-gfx] [PATCH] drm/i915: Reduce ELD hex dumps a bit Ville Syrjala 2023-02-15 13:12 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork 2023-02-15 13:15 ` [Intel-gfx] [PATCH] " Jani Nikula @ 2023-02-15 15:01 ` Ville Syrjala 2023-02-15 15:13 ` Jani Nikula 2023-02-15 19:33 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Reduce ELD hex dumps a bit (rev2) Patchwork 2023-02-16 15:04 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 1 reply; 9+ messages in thread From: Ville Syrjala @ 2023-02-15 15:01 UTC (permalink / raw) To: intel-gfx; +Cc: Jani Nikula From: Ville Syrjälä <ville.syrjala@linux.intel.com> Do the ELD hexdumps only up to the last differing byte. The rest is typically all zeroes anyway so not much point in dumping it. Couldn't find anything for memcmp_diff_len() so rolled my own. v2: Use semantics and function name suggested by Jani Cc: Jani Nikula <jani.nikula@intel.com> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- drivers/gpu/drm/i915/display/intel_display.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c index 3479125fbda6..664322a58236 100644 --- a/drivers/gpu/drm/i915/display/intel_display.c +++ b/drivers/gpu/drm/i915/display/intel_display.c @@ -5348,6 +5348,20 @@ pipe_config_dp_vsc_sdp_mismatch(struct drm_i915_private *dev_priv, } } +/* Returns the length up to and including the last differing byte */ +static size_t +memcmp_diff_len(const u8 *a, const u8 *b, size_t len) +{ + int i; + + for (i = len - 1; i >= 0; i--) { + if (a[i] != b[i]) + return i + 1; + } + + return 0; +} + static void pipe_config_buffer_mismatch(struct drm_i915_private *dev_priv, bool fastset, const char *name, @@ -5357,6 +5371,9 @@ pipe_config_buffer_mismatch(struct drm_i915_private *dev_priv, if (!drm_debug_enabled(DRM_UT_KMS)) return; + /* only dump up to the last difference */ + len = memcmp_diff_len(a, b, len); + drm_dbg_kms(&dev_priv->drm, "fastset mismatch in %s buffer\n", name); print_hex_dump(KERN_DEBUG, "expected: ", DUMP_PREFIX_NONE, @@ -5364,6 +5381,9 @@ pipe_config_buffer_mismatch(struct drm_i915_private *dev_priv, print_hex_dump(KERN_DEBUG, "found: ", DUMP_PREFIX_NONE, 16, 0, b, len, false); } else { + /* only dump up to the last difference */ + len = memcmp_diff_len(a, b, len); + drm_err(&dev_priv->drm, "mismatch in %s buffer\n", name); print_hex_dump(KERN_ERR, "expected: ", DUMP_PREFIX_NONE, 16, 0, a, len, false); -- 2.39.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [Intel-gfx] [PATCH v2] drm/i915: Reduce ELD hex dumps a bit 2023-02-15 15:01 ` [Intel-gfx] [PATCH v2] " Ville Syrjala @ 2023-02-15 15:13 ` Jani Nikula 0 siblings, 0 replies; 9+ messages in thread From: Jani Nikula @ 2023-02-15 15:13 UTC (permalink / raw) To: Ville Syrjala, intel-gfx On Wed, 15 Feb 2023, Ville Syrjala <ville.syrjala@linux.intel.com> wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > Do the ELD hexdumps only up to the last differing byte. > The rest is typically all zeroes anyway so not much point > in dumping it. > > Couldn't find anything for memcmp_diff_len() so > rolled my own. > > v2: Use semantics and function name suggested by Jani > > Cc: Jani Nikula <jani.nikula@intel.com> > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Reviewed-by: Jani Nikula <jani.nikula@intel.com> > --- > drivers/gpu/drm/i915/display/intel_display.c | 20 ++++++++++++++++++++ > 1 file changed, 20 insertions(+) > > diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c > index 3479125fbda6..664322a58236 100644 > --- a/drivers/gpu/drm/i915/display/intel_display.c > +++ b/drivers/gpu/drm/i915/display/intel_display.c > @@ -5348,6 +5348,20 @@ pipe_config_dp_vsc_sdp_mismatch(struct drm_i915_private *dev_priv, > } > } > > +/* Returns the length up to and including the last differing byte */ > +static size_t > +memcmp_diff_len(const u8 *a, const u8 *b, size_t len) > +{ > + int i; > + > + for (i = len - 1; i >= 0; i--) { > + if (a[i] != b[i]) > + return i + 1; > + } > + > + return 0; > +} > + > static void > pipe_config_buffer_mismatch(struct drm_i915_private *dev_priv, > bool fastset, const char *name, > @@ -5357,6 +5371,9 @@ pipe_config_buffer_mismatch(struct drm_i915_private *dev_priv, > if (!drm_debug_enabled(DRM_UT_KMS)) > return; > > + /* only dump up to the last difference */ > + len = memcmp_diff_len(a, b, len); > + > drm_dbg_kms(&dev_priv->drm, > "fastset mismatch in %s buffer\n", name); > print_hex_dump(KERN_DEBUG, "expected: ", DUMP_PREFIX_NONE, > @@ -5364,6 +5381,9 @@ pipe_config_buffer_mismatch(struct drm_i915_private *dev_priv, > print_hex_dump(KERN_DEBUG, "found: ", DUMP_PREFIX_NONE, > 16, 0, b, len, false); > } else { > + /* only dump up to the last difference */ > + len = memcmp_diff_len(a, b, len); > + > drm_err(&dev_priv->drm, "mismatch in %s buffer\n", name); > print_hex_dump(KERN_ERR, "expected: ", DUMP_PREFIX_NONE, > 16, 0, a, len, false); -- Jani Nikula, Intel Open Source Graphics Center ^ permalink raw reply [flat|nested] 9+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Reduce ELD hex dumps a bit (rev2) 2023-02-15 12:18 [Intel-gfx] [PATCH] drm/i915: Reduce ELD hex dumps a bit Ville Syrjala ` (2 preceding siblings ...) 2023-02-15 15:01 ` [Intel-gfx] [PATCH v2] " Ville Syrjala @ 2023-02-15 19:33 ` Patchwork 2023-02-16 15:04 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-02-15 19:33 UTC (permalink / raw) To: Ville Syrjala; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 3606 bytes --] == Series Details == Series: drm/i915: Reduce ELD hex dumps a bit (rev2) URL : https://patchwork.freedesktop.org/series/114051/ State : success == Summary == CI Bug Log - changes from CI_DRM_12744 -> Patchwork_114051v2 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/index.html Participating hosts (40 -> 39) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_114051v2: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@i915_pm_rpm@module-reload: - {bat-rplp-1}: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12744/bat-rplp-1/igt@i915_pm_rpm@module-reload.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/bat-rplp-1/igt@i915_pm_rpm@module-reload.html * igt@i915_selftest@live@dmabuf: - {bat-rplp-1}: [PASS][3] -> [DMESG-WARN][4] +5 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12744/bat-rplp-1/igt@i915_selftest@live@dmabuf.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/bat-rplp-1/igt@i915_selftest@live@dmabuf.html Known issues ------------ Here are the changes found in Patchwork_114051v2 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size: - fi-bsw-n3050: [PASS][5] -> [FAIL][6] ([i915#6298]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12744/fi-bsw-n3050/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/fi-bsw-n3050/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size.html #### Possible fixes #### * igt@i915_selftest@live@hangcheck: - fi-skl-guc: [DMESG-WARN][7] ([i915#8073]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12744/fi-skl-guc/igt@i915_selftest@live@hangcheck.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/fi-skl-guc/igt@i915_selftest@live@hangcheck.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#2867]: https://gitlab.freedesktop.org/drm/intel/issues/2867 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#6298]: https://gitlab.freedesktop.org/drm/intel/issues/6298 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7982]: https://gitlab.freedesktop.org/drm/intel/issues/7982 [i915#8073]: https://gitlab.freedesktop.org/drm/intel/issues/8073 Build changes ------------- * Linux: CI_DRM_12744 -> Patchwork_114051v2 CI-20190529: 20190529 CI_DRM_12744: 2e4cac06e4de01a35626de676b9eeb474ae7ab5d @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7160: 45da871dd2684227e93a2fc002b87dfc58bd5fd9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_114051v2: 2e4cac06e4de01a35626de676b9eeb474ae7ab5d @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits 04c9bd81cf4d drm/i915: Reduce ELD hex dumps a bit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/index.html [-- Attachment #2: Type: text/html, Size: 4037 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915: Reduce ELD hex dumps a bit (rev2) 2023-02-15 12:18 [Intel-gfx] [PATCH] drm/i915: Reduce ELD hex dumps a bit Ville Syrjala ` (3 preceding siblings ...) 2023-02-15 19:33 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Reduce ELD hex dumps a bit (rev2) Patchwork @ 2023-02-16 15:04 ` Patchwork 4 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-02-16 15:04 UTC (permalink / raw) To: Ville Syrjälä; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 19216 bytes --] == Series Details == Series: drm/i915: Reduce ELD hex dumps a bit (rev2) URL : https://patchwork.freedesktop.org/series/114051/ State : failure == Summary == CI Bug Log - changes from CI_DRM_12744_full -> Patchwork_114051v2_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_114051v2_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_114051v2_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/index.html Participating hosts (10 -> 11) ------------------------------ Additional (1): shard-rkl0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_114051v2_full: ### IGT changes ### #### Possible regressions #### * igt@gem_softpin@allocator-evict@bcs0: - shard-apl: [PASS][1] -> [INCOMPLETE][2] +4 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12744/shard-apl7/igt@gem_softpin@allocator-evict@bcs0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/shard-apl6/igt@gem_softpin@allocator-evict@bcs0.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - {shard-rkl}: [SKIP][3] ([i915#1845] / [i915#4098]) -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12744/shard-rkl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * {igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-a-dp-1}: - shard-apl: [PASS][5] -> [INCOMPLETE][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12744/shard-apl2/igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-a-dp-1.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/shard-apl2/igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-a-dp-1.html Known issues ------------ Here are the changes found in Patchwork_114051v2_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@2x-nonexisting-fb: - shard-snb: NOTRUN -> [SKIP][7] ([fdo#109271]) +26 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/shard-snb4/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][8] ([fdo#109271]) +7 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/shard-glk1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@perf_pmu@module-unload: - shard-apl: [PASS][9] -> [INCOMPLETE][10] ([i915#1982]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12744/shard-apl1/igt@perf_pmu@module-unload.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/shard-apl7/igt@perf_pmu@module-unload.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - {shard-rkl}: [FAIL][11] ([i915#7742]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12744/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@drm_read@short-buffer-nonblock: - {shard-rkl}: [SKIP][13] ([i915#4098]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12744/shard-rkl-2/igt@drm_read@short-buffer-nonblock.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/shard-rkl-6/igt@drm_read@short-buffer-nonblock.html * igt@gem_eio@in-flight-external: - {shard-rkl}: [ABORT][15] ([i915#7811]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12744/shard-rkl-1/igt@gem_eio@in-flight-external.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/shard-rkl-4/igt@gem_eio@in-flight-external.html * igt@gem_exec_fair@basic-none-solo@rcs0: - {shard-rkl}: [FAIL][17] ([i915#2842]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12744/shard-rkl-5/igt@gem_exec_fair@basic-none-solo@rcs0.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/shard-rkl-5/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][19] ([i915#2842]) -> [PASS][20] +1 similar issue [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12744/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - {shard-rkl}: [SKIP][21] ([fdo#109313]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12744/shard-rkl-4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/shard-rkl-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_userptr_blits@relocations: - {shard-rkl}: [SKIP][23] ([i915#3281]) -> [PASS][24] +3 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12744/shard-rkl-1/igt@gem_userptr_blits@relocations.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/shard-rkl-5/igt@gem_userptr_blits@relocations.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [ABORT][25] ([i915#5566]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12744/shard-glk6/igt@gen9_exec_parse@allowed-single.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/shard-glk9/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@batch-without-end: - {shard-rkl}: [SKIP][27] ([i915#2527]) -> [PASS][28] +1 similar issue [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12744/shard-rkl-4/igt@gen9_exec_parse@batch-without-end.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/shard-rkl-5/igt@gen9_exec_parse@batch-without-end.html * igt@i915_pm_rpm@fences-dpms: - {shard-rkl}: [SKIP][29] ([i915#1849]) -> [PASS][30] +2 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12744/shard-rkl-3/igt@i915_pm_rpm@fences-dpms.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/shard-rkl-6/igt@i915_pm_rpm@fences-dpms.html * igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs: - {shard-rkl}: [SKIP][31] ([i915#1845] / [i915#4098]) -> [PASS][32] +24 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12744/shard-rkl-3/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/shard-rkl-6/igt@kms_ccs@pipe-b-bad-aux-stride-y_tiled_gen12_rc_ccs.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - {shard-rkl}: [SKIP][33] ([i915#1849] / [i915#4098]) -> [PASS][34] +21 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12744/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_psr@cursor_blt: - {shard-rkl}: [SKIP][35] ([i915#1072]) -> [PASS][36] +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12744/shard-rkl-3/igt@kms_psr@cursor_blt.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/shard-rkl-6/igt@kms_psr@cursor_blt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - {shard-rkl}: [SKIP][37] ([i915#5461]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12744/shard-rkl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_universal_plane@disable-primary-vs-flip-pipe-b: - {shard-rkl}: [SKIP][39] ([i915#1845] / [i915#4070] / [i915#4098]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12744/shard-rkl-2/igt@kms_universal_plane@disable-primary-vs-flip-pipe-b.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/shard-rkl-6/igt@kms_universal_plane@disable-primary-vs-flip-pipe-b.html * igt@perf_pmu@idle@rcs0: - {shard-rkl}: [FAIL][41] ([i915#4349]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12744/shard-rkl-6/igt@perf_pmu@idle@rcs0.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/shard-rkl-1/igt@perf_pmu@idle@rcs0.html * igt@syncobj_wait@wait-all-delayed-signal: - {shard-dg1}: [DMESG-WARN][43] ([i915#1982]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12744/shard-dg1-18/igt@syncobj_wait@wait-all-delayed-signal.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/shard-dg1-18/igt@syncobj_wait@wait-all-delayed-signal.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#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [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#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [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#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#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#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [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#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315 [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#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301 [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#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [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#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#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952 [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#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [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#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258 [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#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [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#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443 [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#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7811]: https://gitlab.freedesktop.org/drm/intel/issues/7811 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949 [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984 [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152 Build changes ------------- * Linux: CI_DRM_12744 -> Patchwork_114051v2 CI-20190529: 20190529 CI_DRM_12744: 2e4cac06e4de01a35626de676b9eeb474ae7ab5d @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7160: 45da871dd2684227e93a2fc002b87dfc58bd5fd9 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_114051v2: 2e4cac06e4de01a35626de676b9eeb474ae7ab5d @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_114051v2/index.html [-- Attachment #2: Type: text/html, Size: 13276 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2023-02-16 15:04 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-02-15 12:18 [Intel-gfx] [PATCH] drm/i915: Reduce ELD hex dumps a bit Ville Syrjala 2023-02-15 13:12 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork 2023-02-15 13:15 ` [Intel-gfx] [PATCH] " Jani Nikula 2023-02-15 13:19 ` Ville Syrjälä 2023-02-15 14:17 ` Jani Nikula 2023-02-15 15:01 ` [Intel-gfx] [PATCH v2] " Ville Syrjala 2023-02-15 15:13 ` Jani Nikula 2023-02-15 19:33 ` [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Reduce ELD hex dumps a bit (rev2) Patchwork 2023-02-16 15:04 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.