From: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
To: Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
dri-devel@lists.freedesktop.org
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH v3 6/7] drm/atomic: Convert get_existing_state callers to get_old/new_state, v2.
Date: Thu, 16 Feb 2017 15:37:16 +0100 [thread overview]
Message-ID: <6e4d2d62-cf09-fa4f-b5e0-ccb8ca1d49e4@linux.intel.com> (raw)
In-Reply-To: <1810263.3vqMyJGo7v@avalon>
Op 17-01-17 om 02:12 schreef Laurent Pinchart:
> Hi Maarten,
>
> Thank you for the patch.
>
> I don't think you need the "v2" at the end of the subject line.
>
> On Monday 16 Jan 2017 10:37:43 Maarten Lankhorst wrote:
>> This is a straightforward conversion that converts all the users of
>> get_existing_state in atomic core to use get_old_state or get_new_state
>>
>> Changes since v1:
>> - Fix using the wrong state in
>> drm_atomic_helper_update_legacy_modeset_state.
>>
>> Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
>> ---
>> drivers/gpu/drm/drm_atomic.c | 6 +++---
>> drivers/gpu/drm/drm_atomic_helper.c | 39 +++++++++++++++------------------
>> drivers/gpu/drm/drm_blend.c | 3 +--
>> 3 files changed, 22 insertions(+), 26 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/drm_atomic.c b/drivers/gpu/drm/drm_atomic.c
>> index 7b61e0da9ace..6428e9469607 100644
>> --- a/drivers/gpu/drm/drm_atomic.c
>> +++ b/drivers/gpu/drm/drm_atomic.c
> [snip]
>
>> @@ -1835,7 +1832,7 @@ drm_atomic_helper_commit_planes_on_crtc(struct
>> drm_crtc_state *old_crtc_state)
>>
>> drm_for_each_plane_mask(plane, crtc->dev, plane_mask) {
>> struct drm_plane_state *old_plane_state =
>> - drm_atomic_get_existing_plane_state(old_state, plane);
>> + drm_atomic_get_old_plane_state(old_state, plane);
> I believe this change to be correct, but given that the function is called
> after state swap, didn't it use the new state before this patch ?
get_existing_state returns the old state after swap.
But the call to drm_atomic_plane_disabling is confusing to me. I'm changing
the function to pass old and new plane state, which should make it easier to understand.
Cheers,
~Maarten
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2017-02-16 14:37 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-01-16 9:37 [PATCH v3 0/7] drm/atomic: Add accessor macros for all atomic state Maarten Lankhorst
2017-01-16 9:37 ` [PATCH v3 1/7] drm/atomic: Add new iterators over all state, v3 Maarten Lankhorst
2017-01-16 23:11 ` Laurent Pinchart
2017-01-17 7:41 ` Maarten Lankhorst
2017-01-18 22:56 ` Laurent Pinchart
2017-01-23 8:48 ` Daniel Vetter
2017-02-12 12:11 ` Laurent Pinchart
2017-02-12 12:13 ` Laurent Pinchart
2017-01-16 9:37 ` [PATCH v3 2/7] drm/atomic: Make add_affected_connectors look at crtc_state Maarten Lankhorst
2017-01-16 23:29 ` Laurent Pinchart
2017-01-16 9:37 ` [PATCH v3 3/7] drm/atomic: Use new atomic iterator macros Maarten Lankhorst
2017-01-16 23:55 ` Laurent Pinchart
2017-02-14 20:03 ` Daniel Vetter
2017-02-14 20:07 ` Laurent Pinchart
2017-01-16 9:37 ` [PATCH v3 4/7] drm/atomic: Fix atomic helpers to use the new " Maarten Lankhorst
2017-01-17 1:01 ` Laurent Pinchart
2017-01-18 14:49 ` Maarten Lankhorst
2017-01-18 18:03 ` Laurent Pinchart
2017-01-16 9:37 ` [PATCH v3 5/7] drm/atomic: Add macros to access existing old/new state Maarten Lankhorst
2017-01-17 1:05 ` Laurent Pinchart
2017-01-16 9:37 ` [PATCH v3 6/7] drm/atomic: Convert get_existing_state callers to get_old/new_state, v2 Maarten Lankhorst
2017-01-17 1:12 ` Laurent Pinchart
2017-02-16 14:37 ` Maarten Lankhorst [this message]
2017-01-17 1:27 ` Laurent Pinchart
2017-02-16 14:34 ` Maarten Lankhorst
2017-01-16 9:37 ` [PATCH v3 7/7] drm/blend: Use new atomic iterator macros Maarten Lankhorst
2017-01-17 1:14 ` Laurent Pinchart
2017-01-16 11:24 ` ✗ Fi.CI.BAT: warning for drm/atomic: Add accessor macros for all atomic state. (rev4) Patchwork
2017-01-17 0:45 ` [PATCH v3 0/7] drm/atomic: Add accessor macros for all atomic state Laurent Pinchart
2017-01-23 8:50 ` [Intel-gfx] " Daniel Vetter
2017-01-17 1:34 ` Laurent Pinchart
2017-02-12 12:35 ` Laurent Pinchart
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=6e4d2d62-cf09-fa4f-b5e0-ccb8ca1d49e4@linux.intel.com \
--to=maarten.lankhorst@linux.intel.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
--cc=laurent.pinchart@ideasonboard.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