From: Katarzyna Dec <katarzyna.dec@intel.com>
To: Antonio Argenziano <antonio.argenziano@intel.com>
Cc: igt-dev@lists.freedesktop.org
Subject: Re: [igt-dev] [RFT v4 5/6] Coherency tests that need to be using WC + sync
Date: Tue, 16 Apr 2019 16:43:40 +0200 [thread overview]
Message-ID: <20190416144340.GJ24710@kdec5-desk.ger.corp.intel.com> (raw)
In-Reply-To: <20190325232043.7953-5-antonio.argenziano@intel.com>
On Mon, Mar 25, 2019 at 04:20:42PM -0700, Antonio Argenziano wrote:
Commit msg is missing so there is not backstory to this patch :)
> ---
> tests/prime_mmap.c | 36 ++++++++++++++++++++++++++++++++++--
> 1 file changed, 34 insertions(+), 2 deletions(-)
>
> diff --git a/tests/prime_mmap.c b/tests/prime_mmap.c
> index 33f97b84..f28985da 100644
> --- a/tests/prime_mmap.c
> +++ b/tests/prime_mmap.c
> @@ -73,7 +73,7 @@ fill_bo_cpu(char *ptr)
> }
>
> static void
> -test_correct(void)
> +test_correct_gtt(void)
> {
> int dma_buf_fd;
> char *ptr1, *ptr2;
> @@ -103,6 +103,37 @@ test_correct(void)
> gem_close(fd, handle);
> }
>
> +static void
> +test_correct_wc(void)
> +{
> + int dma_buf_fd;
> + char *ptr1, *ptr2;
> + uint32_t handle;
> +
> + gem_require_mmap_wc(fd);
> +
> + handle = gem_create(fd, BO_SIZE);
> + fill_bo(handle, BO_SIZE);
> +
> + dma_buf_fd = prime_handle_to_fd(fd, handle);
> + igt_assert(errno == 0);
> +
> + /* Check correctness vs WC mapping */
> + ptr1 = gem_mmap__wc(fd, handle, 0, BO_SIZE, PROT_READ);
> + ptr2 = mmap(NULL, BO_SIZE, PROT_READ, MAP_SHARED, dma_buf_fd, 0);
> + igt_assert(ptr1 != MAP_FAILED);
> + igt_assert(ptr2 != MAP_FAILED);
> + igt_assert(memcmp(ptr1, ptr2, BO_SIZE) == 0);
> +
> + /* Check pattern correctness */
> + igt_assert(memcmp(ptr2, pattern, sizeof(pattern)) == 0);
> +
> + munmap(ptr1, BO_SIZE);
> + munmap(ptr2, BO_SIZE);
> + close(dma_buf_fd);
> + gem_close(fd, handle);
> +}
> +
> static void
> test_map_unmap(void)
> {
> @@ -504,7 +535,8 @@ igt_main
> const char *name;
> void (*fn)(void);
> } tests[] = {
> - { "test_correct", test_correct },
> + { "test_correct_gtt", test_correct_gtt },
> + { "test_correct_wc", test_correct_wc },
> { "test_map_unmap", test_map_unmap },
> { "test_reprime", test_reprime },
> { "test_forked", test_forked },
> --
> 2.20.1
>
> _______________________________________________
> igt-dev mailing list
> igt-dev@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/igt-dev
Based on code I do not see any issues, yet.
Kasia :)
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
next prev parent reply other threads:[~2019-04-16 14:43 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-03-25 23:20 [igt-dev] [RFT v4 1/6] lib/i915/gem_mman: Remove static variables Antonio Argenziano
2019-03-25 23:20 ` [igt-dev] [RFT v4 2/6] lib/i915: Add mmap_offset support Antonio Argenziano
2019-03-25 23:20 ` [igt-dev] [RFT v4 3/6] igt/lib: Add wrapper to check if gtt mapping is available Antonio Argenziano
2019-04-16 13:25 ` Katarzyna Dec
2019-04-16 13:28 ` Chris Wilson
2019-04-16 16:43 ` Antonio Argenziano
2019-03-25 23:20 ` [igt-dev] [RFT v4 4/6] igt/i915: Require GTT mapping to be available when needed Antonio Argenziano
2019-03-25 23:36 ` Chris Wilson
2019-03-27 21:05 ` Antonio Argenziano
2019-03-27 21:19 ` Chris Wilson
2019-04-11 18:13 ` Antonio Argenziano
2019-04-11 20:07 ` Chris Wilson
2019-04-11 21:27 ` Antonio Argenziano
2019-03-27 21:24 ` Chris Wilson
2019-04-05 18:00 ` Antonio Argenziano
2019-04-05 18:04 ` Chris Wilson
2019-04-11 18:13 ` Antonio Argenziano
2019-04-11 20:08 ` Chris Wilson
2019-04-16 14:38 ` Katarzyna Dec
2019-03-25 23:20 ` [igt-dev] [RFT v4 5/6] Coherency tests that need to be using WC + sync Antonio Argenziano
2019-04-16 14:43 ` Katarzyna Dec [this message]
2019-03-25 23:20 ` [igt-dev] [RFT v4 6/6] igt/lib: If mappable aperture is missing return 0 size Antonio Argenziano
2019-04-17 9:55 ` Katarzyna Dec
2019-03-26 9:39 ` [igt-dev] ✗ Fi.CI.BAT: failure for series starting with [RFT,v4,1/6] lib/i915/gem_mman: Remove static variables Patchwork
2019-04-16 13:27 ` [igt-dev] [RFT v4 1/6] " Katarzyna Dec
2019-04-16 15:29 ` Antonio Argenziano
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=20190416144340.GJ24710@kdec5-desk.ger.corp.intel.com \
--to=katarzyna.dec@intel.com \
--cc=antonio.argenziano@intel.com \
--cc=igt-dev@lists.freedesktop.org \
/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