From: "José Expósito" <jose.exposito89@gmail.com>
To: javierm@redhat.com
Cc: dri-devel@lists.freedesktop.org, tzimmermann@suse.de,
magalilemes00@gmail.com, airlied@linux.ie, maira.canal@usp.br,
dlatypov@google.com, linux-kernel@vger.kernel.org,
geert@linux-m68k.org, tales.aparecida@gmail.com,
davidgow@google.com, isabbasso@riseup.net,
kunit-dev@googlegroups.com
Subject: Re: [PATCH v3 0/4] KUnit tests for RGB565 conversion
Date: Thu, 28 Jul 2022 19:51:08 +0200 [thread overview]
Message-ID: <20220728175108.GB52359@elementary> (raw)
In-Reply-To: <20220726230916.390575-1-jose.exposito89@gmail.com>
On Wed, Jul 27, 2022 at 01:09:12AM +0200, José Expósito wrote:
> Hello everyone,
>
> This series is a follow up of the XRGB8888 to RGB332 conversion KUnit
> tests.
>
> As I mentioned in v2 [1] I suspected that the inconsistency handling
> the endian might need to be fixed.
> Fortunately, Geert Uytterhoeven fixed it in commit 4d9db10576ff
> ("drm/format-helper: Fix endianness in drm_fb_*_to_*() conversion
> helpers"), so I updated the tests to reflect his change.
>
> Changes since v1:
>
> - Fix a bug reported by David Gow in the XRGB8888 to RGB332 tests
> - Simplify the test structure as suggested by David Gow
> - Add Tested-by Tales L. Aparecida and Acked-by Thomas Zimmermann
> - Fix link in the last patch (Thomas Zimmermann)
>
> Changes since v2:
>
> - Test endian as fixed in commit 4d9db10576ff ("drm/format-helper: Fix
> endianness in drm_fb_*_to_*() conversion helpers")
> - Fix Sparse warning reported by David Gow
> - Add Reviewed-by David Gow
>
> [1] https://lore.kernel.org/dri-devel/20220709115837.560877-1-jose.exposito89@gmail.com/
>
> José Expósito (4):
> drm/format-helper: Fix test on big endian architectures
> drm/format-helper: Rename test cases to make them more generic
> drm/format-helper: Support multiple target formats results
> drm/format-helper: Add KUnit tests for drm_fb_xrgb8888_to_rgb565()
>
> .../gpu/drm/tests/drm_format_helper_test.c | 169 ++++++++++++++----
> 1 file changed, 139 insertions(+), 30 deletions(-)
>
> --
> 2.25.1
>
As suggested by Thomas [1] I pushed the series to drm-misc-next.
I've found some conflicts in drm-tip in unreleated files I'm trying to
figure out on IRC though :(
Jose
[1] https://lore.kernel.org/dri-devel/4ba57f80-5025-c3a0-5f65-ec52643f0122@suse.de/
WARNING: multiple messages have this Message-ID (diff)
From: "José Expósito" <jose.exposito89@gmail.com>
To: javierm@redhat.com
Cc: davidgow@google.com, dlatypov@google.com, tzimmermann@suse.de,
mripard@kernel.org, daniel@ffwll.ch, airlied@linux.ie,
maarten.lankhorst@linux.intel.com, jani.nikula@linux.intel.com,
maira.canal@usp.br, isabbasso@riseup.net,
magalilemes00@gmail.com, tales.aparecida@gmail.com,
geert@linux-m68k.org, dri-devel@lists.freedesktop.org,
kunit-dev@googlegroups.com, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3 0/4] KUnit tests for RGB565 conversion
Date: Thu, 28 Jul 2022 19:51:08 +0200 [thread overview]
Message-ID: <20220728175108.GB52359@elementary> (raw)
In-Reply-To: <20220726230916.390575-1-jose.exposito89@gmail.com>
On Wed, Jul 27, 2022 at 01:09:12AM +0200, José Expósito wrote:
> Hello everyone,
>
> This series is a follow up of the XRGB8888 to RGB332 conversion KUnit
> tests.
>
> As I mentioned in v2 [1] I suspected that the inconsistency handling
> the endian might need to be fixed.
> Fortunately, Geert Uytterhoeven fixed it in commit 4d9db10576ff
> ("drm/format-helper: Fix endianness in drm_fb_*_to_*() conversion
> helpers"), so I updated the tests to reflect his change.
>
> Changes since v1:
>
> - Fix a bug reported by David Gow in the XRGB8888 to RGB332 tests
> - Simplify the test structure as suggested by David Gow
> - Add Tested-by Tales L. Aparecida and Acked-by Thomas Zimmermann
> - Fix link in the last patch (Thomas Zimmermann)
>
> Changes since v2:
>
> - Test endian as fixed in commit 4d9db10576ff ("drm/format-helper: Fix
> endianness in drm_fb_*_to_*() conversion helpers")
> - Fix Sparse warning reported by David Gow
> - Add Reviewed-by David Gow
>
> [1] https://lore.kernel.org/dri-devel/20220709115837.560877-1-jose.exposito89@gmail.com/
>
> José Expósito (4):
> drm/format-helper: Fix test on big endian architectures
> drm/format-helper: Rename test cases to make them more generic
> drm/format-helper: Support multiple target formats results
> drm/format-helper: Add KUnit tests for drm_fb_xrgb8888_to_rgb565()
>
> .../gpu/drm/tests/drm_format_helper_test.c | 169 ++++++++++++++----
> 1 file changed, 139 insertions(+), 30 deletions(-)
>
> --
> 2.25.1
>
As suggested by Thomas [1] I pushed the series to drm-misc-next.
I've found some conflicts in drm-tip in unreleated files I'm trying to
figure out on IRC though :(
Jose
[1] https://lore.kernel.org/dri-devel/4ba57f80-5025-c3a0-5f65-ec52643f0122@suse.de/
next prev parent reply other threads:[~2022-07-28 17:51 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-26 23:09 [PATCH v3 0/4] KUnit tests for RGB565 conversion José Expósito
2022-07-26 23:09 ` José Expósito
2022-07-26 23:09 ` [PATCH v3 1/4] drm/format-helper: Fix test on big endian architectures José Expósito
2022-07-26 23:09 ` José Expósito
2022-07-26 23:09 ` [PATCH v3 2/4] drm/format-helper: Rename test cases to make them more generic José Expósito
2022-07-26 23:09 ` José Expósito
2022-07-26 23:09 ` [PATCH v3 3/4] drm/format-helper: Support multiple target formats results José Expósito
2022-07-26 23:09 ` José Expósito
2022-07-26 23:09 ` [PATCH v3 4/4] drm/format-helper: Add KUnit tests for drm_fb_xrgb8888_to_rgb565() José Expósito
2022-07-26 23:09 ` José Expósito
2022-07-28 17:51 ` José Expósito [this message]
2022-07-28 17:51 ` [PATCH v3 0/4] KUnit tests for RGB565 conversion José Expósito
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=20220728175108.GB52359@elementary \
--to=jose.exposito89@gmail.com \
--cc=airlied@linux.ie \
--cc=davidgow@google.com \
--cc=dlatypov@google.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=geert@linux-m68k.org \
--cc=isabbasso@riseup.net \
--cc=javierm@redhat.com \
--cc=kunit-dev@googlegroups.com \
--cc=linux-kernel@vger.kernel.org \
--cc=magalilemes00@gmail.com \
--cc=maira.canal@usp.br \
--cc=tales.aparecida@gmail.com \
--cc=tzimmermann@suse.de \
/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 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.