From: Thomas Zimmermann <tzimmermann@suse.de>
To: Jani Nikula <jani.nikula@intel.com>, dri-devel@lists.freedesktop.org
Cc: intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org
Subject: Re: [REBASE 7/7] drm/edid: make drm_edid_are_equal() more convenient for its single user
Date: Tue, 16 Apr 2024 14:47:52 +0200 [thread overview]
Message-ID: <deb7918d-03dd-49f4-8a5d-3470ed05800e@suse.de> (raw)
In-Reply-To: <87h6g1ze42.fsf@intel.com>
Hi
Am 16.04.24 um 14:27 schrieb Jani Nikula:
> On Tue, 16 Apr 2024, Thomas Zimmermann <tzimmermann@suse.de> wrote:
>> Hi
>>
>> Am 16.04.24 um 11:20 schrieb Jani Nikula:
>>> Repurpose drm_edid_are_equal() to be more helpful for its single user,
>>> and rename drm_edid_eq(). Functionally deduce the length from the blob
>>> size, not the blob data, making it more robust against any errors.
>> Could be squashed into patch 6.
> Ack.
>
> Thanks for the review. I'll hold of on resending these until there are
> some R-b's... I've send them a few times already with no comments. :(
Feel free to add
Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de>
to the series.
Best regards
Thomas
>
> BR,
> Jani.
>
>> Best regards
>> Thomas
>>
>>> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>>> ---
>>> drivers/gpu/drm/drm_edid.c | 41 ++++++++++++++------------------------
>>> 1 file changed, 15 insertions(+), 26 deletions(-)
>>>
>>> diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c
>>> index 463fbad85d90..513590931cc5 100644
>>> --- a/drivers/gpu/drm/drm_edid.c
>>> +++ b/drivers/gpu/drm/drm_edid.c
>>> @@ -1820,30 +1820,20 @@ static bool edid_block_is_zero(const void *edid)
>>> return !memchr_inv(edid, 0, EDID_LENGTH);
>>> }
>>>
>>> -/**
>>> - * drm_edid_are_equal - compare two edid blobs.
>>> - * @edid1: pointer to first blob
>>> - * @edid2: pointer to second blob
>>> - * This helper can be used during probing to determine if
>>> - * edid had changed.
>>> - */
>>> -static bool drm_edid_are_equal(const struct edid *edid1, const struct edid *edid2)
>>> +static bool drm_edid_eq(const struct drm_edid *drm_edid,
>>> + const void *raw_edid, size_t raw_edid_size)
>>> {
>>> - int edid1_len, edid2_len;
>>> - bool edid1_present = edid1 != NULL;
>>> - bool edid2_present = edid2 != NULL;
>>> + bool edid1_present = drm_edid && drm_edid->edid && drm_edid->size;
>>> + bool edid2_present = raw_edid && raw_edid_size;
>>>
>>> if (edid1_present != edid2_present)
>>> return false;
>>>
>>> - if (edid1) {
>>> - edid1_len = edid_size(edid1);
>>> - edid2_len = edid_size(edid2);
>>> -
>>> - if (edid1_len != edid2_len)
>>> + if (edid1_present) {
>>> + if (drm_edid->size != raw_edid_size)
>>> return false;
>>>
>>> - if (memcmp(edid1, edid2, edid1_len))
>>> + if (memcmp(drm_edid->edid, raw_edid, drm_edid->size))
>>> return false;
>>> }
>>>
>>> @@ -6936,15 +6926,14 @@ static int _drm_edid_connector_property_update(struct drm_connector *connector,
>>> int ret;
>>>
>>> if (connector->edid_blob_ptr) {
>>> - const struct edid *old_edid = connector->edid_blob_ptr->data;
>>> -
>>> - if (old_edid) {
>>> - if (!drm_edid_are_equal(drm_edid ? drm_edid->edid : NULL, old_edid)) {
>>> - connector->epoch_counter++;
>>> - drm_dbg_kms(dev, "[CONNECTOR:%d:%s] EDID changed, epoch counter %llu\n",
>>> - connector->base.id, connector->name,
>>> - connector->epoch_counter);
>>> - }
>>> + const void *old_edid = connector->edid_blob_ptr->data;
>>> + size_t old_edid_size = connector->edid_blob_ptr->length;
>>> +
>>> + if (old_edid && !drm_edid_eq(drm_edid, old_edid, old_edid_size)) {
>>> + connector->epoch_counter++;
>>> + drm_dbg_kms(dev, "[CONNECTOR:%d:%s] EDID changed, epoch counter %llu\n",
>>> + connector->base.id, connector->name,
>>> + connector->epoch_counter);
>>> }
>>> }
>>>
--
--
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Frankenstrasse 146, 90461 Nuernberg, Germany
GF: Ivo Totev, Andrew Myers, Andrew McDonald, Boudien Moerman
HRB 36809 (AG Nuernberg)
next prev parent reply other threads:[~2024-04-16 12:47 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-16 9:19 [REBASE 0/7] drm/edid: cleanups, rebase Jani Nikula
2024-04-16 9:19 ` [REBASE 1/7] drm/displayid: move drm_displayid.h to drm_displayd_internal.h Jani Nikula
2024-04-16 9:19 ` [REBASE 2/7] drm/edid: move all internal declarations to drm_crtc_internal.h Jani Nikula
2024-04-16 9:19 ` [REBASE 3/7] drm/edid: group struct drm_edid based declarations together Jani Nikula
2024-04-16 9:19 ` [REBASE 4/7] drm/edid: rename drm_find_edid_extension() to drm_edid_find_extension() Jani Nikula
2024-04-16 9:19 ` [REBASE 5/7] drm/edid: avoid drm_edid_find_extension() internally Jani Nikula
2024-04-16 12:19 ` Thomas Zimmermann
2024-04-16 12:24 ` Jani Nikula
2024-04-16 9:19 ` [REBASE 6/7] drm/edid: make drm_edid_are_equal() static Jani Nikula
2024-04-16 9:20 ` [REBASE 7/7] drm/edid: make drm_edid_are_equal() more convenient for its single user Jani Nikula
2024-04-16 12:21 ` Thomas Zimmermann
2024-04-16 12:27 ` Jani Nikula
2024-04-16 12:47 ` Thomas Zimmermann [this message]
2024-04-17 8:21 ` Jani Nikula
2024-04-17 11:13 ` Thomas Zimmermann
2024-04-17 15:20 ` Jani Nikula
2024-04-16 10:13 ` ✗ Fi.CI.CHECKPATCH: warning for drm/edid: cleanups, rebase Patchwork
2024-04-16 10:13 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-04-16 10:21 ` ✗ Fi.CI.BAT: failure " Patchwork
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=deb7918d-03dd-49f4-8a5d-3470ed05800e@suse.de \
--to=tzimmermann@suse.de \
--cc=dri-devel@lists.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
--cc=intel-xe@lists.freedesktop.org \
--cc=jani.nikula@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox