From: Nirmoy Das <nirmoy.das@linux.intel.com>
To: Lucas De Marchi <lucas.demarchi@intel.com>,
igt-dev@lists.freedesktop.org
Cc: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
Subject: Re: [PATCH i-g-t v3 08/10] tests/intel/xe_drm_fdinfo: Remove unused flags
Date: Wed, 28 Aug 2024 17:00:50 +0200 [thread overview]
Message-ID: <af20a300-6bf4-4bdb-8852-fee95787b5e3@linux.intel.com> (raw)
In-Reply-To: <20240827165449.1706784-9-lucas.demarchi@intel.com>
On 8/27/2024 6:54 PM, Lucas De Marchi wrote:
> single() is the only test function that is used by multiple kinds of
> tests and controlled by flags. The others simply pass the same flags
> every time. Simplify the tests by removing the bogus checks.
>
> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: Nirmoy Das <nirmoy.das@intel.com>
> ---
> tests/intel/xe_drm_fdinfo.c | 81 +++++++++++++++++--------------------
> 1 file changed, 38 insertions(+), 43 deletions(-)
>
> diff --git a/tests/intel/xe_drm_fdinfo.c b/tests/intel/xe_drm_fdinfo.c
> index 46c96dbe0..23edeea40 100644
> --- a/tests/intel/xe_drm_fdinfo.c
> +++ b/tests/intel/xe_drm_fdinfo.c
> @@ -538,7 +538,7 @@ single(int fd, struct drm_xe_engine_class_instance *hwe, unsigned int flags)
> }
>
> static void
> -busy_check_all(int fd, struct drm_xe_engine_class_instance *hwe, unsigned int flags)
> +busy_check_all(int fd, struct drm_xe_engine_class_instance *hwe)
> {
> struct pceu_cycles pceu1[DRM_XE_ENGINE_CLASS_COMPUTE + 1];
> struct pceu_cycles pceu2[DRM_XE_ENGINE_CLASS_COMPUTE + 1];
> @@ -547,20 +547,20 @@ busy_check_all(int fd, struct drm_xe_engine_class_instance *hwe, unsigned int fl
> int class;
>
> vm = xe_vm_create(fd, 0, 0);
> - if (flags & TEST_BUSY) {
> - ctx = spin_ctx_init(fd, hwe, vm);
> - spin_sync_start(fd, ctx);
> - }
> +
> + ctx = spin_ctx_init(fd, hwe, vm);
> + spin_sync_start(fd, ctx);
>
> read_engine_cycles(fd, pceu1);
> usleep(batch_duration_usec);
> - if (flags & TEST_TRAILING_IDLE)
> - spin_sync_end(fd, ctx);
> + spin_sync_end(fd, ctx);
> read_engine_cycles(fd, pceu2);
>
> - xe_for_each_engine_class(class)
> - check_results(pceu1, pceu2, class,
> - hwe->engine_class == class ? flags : 0);
> + xe_for_each_engine_class(class) {
> + bool idle = hwe->engine_class != class;
> +
> + check_results(pceu1, pceu2, class, idle ? 0 : TEST_BUSY);
> + }
>
> spin_sync_end(fd, ctx);
> spin_ctx_destroy(fd, ctx);
> @@ -594,8 +594,7 @@ single_destroy_queue(int fd, struct drm_xe_engine_class_instance *hwe)
> }
>
> static void
> -most_busy_check_all(int fd, struct drm_xe_engine_class_instance *hwe,
> - unsigned int flags)
> +most_busy_check_all(int fd, struct drm_xe_engine_class_instance *hwe)
> {
> struct pceu_cycles pceu1[DRM_XE_ENGINE_CLASS_COMPUTE + 1];
> struct pceu_cycles pceu2[DRM_XE_ENGINE_CLASS_COMPUTE + 1];
> @@ -605,32 +604,31 @@ most_busy_check_all(int fd, struct drm_xe_engine_class_instance *hwe,
> int class;
>
> vm = xe_vm_create(fd, 0, 0);
> - if (flags & TEST_BUSY) {
> - /* spin on one hwe per class except the target class hwes */
> - xe_for_each_engine(fd, _hwe) {
> - int _class = _hwe->engine_class;
>
> - if (_class == hwe->engine_class || ctx[_class])
> - continue;
> + /* spin on one hwe per class except the target class hwes */
> + xe_for_each_engine(fd, _hwe) {
> + int _class = _hwe->engine_class;
>
> - ctx[_class] = spin_ctx_init(fd, _hwe, vm);
> - spin_sync_start(fd, ctx[_class]);
> - }
> + if (_class == hwe->engine_class || ctx[_class])
> + continue;
> +
> + ctx[_class] = spin_ctx_init(fd, _hwe, vm);
> + spin_sync_start(fd, ctx[_class]);
> }
>
> read_engine_cycles(fd, pceu1);
> usleep(batch_duration_usec);
> - if (flags & TEST_TRAILING_IDLE)
> - xe_for_each_engine_class(class)
> - spin_sync_end(fd, ctx[class]);
> + xe_for_each_engine_class(class)
> + spin_sync_end(fd, ctx[class]);
> read_engine_cycles(fd, pceu2);
>
> xe_for_each_engine_class(class) {
> + bool idle = hwe->engine_class == class;
> +
> if (!ctx[class])
> continue;
>
> - check_results(pceu1, pceu2, class,
> - hwe->engine_class == class ? 0 : flags);
> + check_results(pceu1, pceu2, class, idle ? 0 : TEST_BUSY);
> spin_sync_end(fd, ctx[class]);
> spin_ctx_destroy(fd, ctx[class]);
> }
> @@ -639,7 +637,7 @@ most_busy_check_all(int fd, struct drm_xe_engine_class_instance *hwe,
> }
>
> static void
> -all_busy_check_all(int fd, unsigned int flags)
> +all_busy_check_all(int fd)
> {
> struct pceu_cycles pceu1[DRM_XE_ENGINE_CLASS_COMPUTE + 1];
> struct pceu_cycles pceu2[DRM_XE_ENGINE_CLASS_COMPUTE + 1];
> @@ -649,31 +647,28 @@ all_busy_check_all(int fd, unsigned int flags)
> int class;
>
> vm = xe_vm_create(fd, 0, 0);
> - if (flags & TEST_BUSY) {
> - /* spin on one hwe per class */
> - xe_for_each_engine(fd, hwe) {
> - class = hwe->engine_class;
>
> - if (ctx[class])
> - continue;
> + /* spin on one hwe per class */
> + xe_for_each_engine(fd, hwe) {
> + class = hwe->engine_class;
> + if (ctx[class])
> + continue;
>
> - ctx[class] = spin_ctx_init(fd, hwe, vm);
> - spin_sync_start(fd, ctx[class]);
> - }
> + ctx[class] = spin_ctx_init(fd, hwe, vm);
> + spin_sync_start(fd, ctx[class]);
> }
>
> read_engine_cycles(fd, pceu1);
> usleep(batch_duration_usec);
> - if (flags & TEST_TRAILING_IDLE)
> - xe_for_each_engine_class(class)
> - spin_sync_end(fd, ctx[class]);
> + xe_for_each_engine_class(class)
> + spin_sync_end(fd, ctx[class]);
> read_engine_cycles(fd, pceu2);
>
> xe_for_each_engine_class(class) {
> if (!ctx[class])
> continue;
>
> - check_results(pceu1, pceu2, class, flags);
> + check_results(pceu1, pceu2, class, TEST_BUSY);
> spin_sync_end(fd, ctx[class]);
> spin_ctx_destroy(fd, ctx[class]);
> }
> @@ -715,14 +710,14 @@ igt_main
>
> igt_subtest("drm-busy-idle-check-all")
> xe_for_each_engine(xe, hwe)
> - busy_check_all(xe, hwe, TEST_BUSY | TEST_TRAILING_IDLE);
> + busy_check_all(xe, hwe);
>
> igt_subtest("drm-most-busy-idle-check-all")
> xe_for_each_engine(xe, hwe)
> - most_busy_check_all(xe, hwe, TEST_BUSY | TEST_TRAILING_IDLE);
> + most_busy_check_all(xe, hwe);
>
> igt_subtest("drm-all-busy-idle-check-all")
> - all_busy_check_all(xe, TEST_BUSY | TEST_TRAILING_IDLE);
> + all_busy_check_all(xe);
>
> igt_subtest("drm-busy-exec-queue-destroy-idle")
> xe_for_each_engine(xe, hwe)
next prev parent reply other threads:[~2024-08-28 15:00 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-27 16:54 [PATCH i-g-t v3 00/10] tests/intel/xe_drm_fdinfo: Fix noise and improve Lucas De Marchi
2024-08-27 16:54 ` [PATCH i-g-t v3 01/10] tests/intel/xe_drm_fdinfo: Extend mercy to the upper end Lucas De Marchi
2024-08-28 14:44 ` Nirmoy Das
2024-08-28 14:46 ` Nirmoy Das
2024-08-27 16:54 ` [PATCH i-g-t v3 02/10] tests/intel/xe_drm_fdinfo: Print timestamp for debug Lucas De Marchi
2024-08-28 14:45 ` Nirmoy Das
2024-08-27 16:54 ` [PATCH i-g-t v3 03/10] lib/igt_core: Add igt_assert_lt_double() Lucas De Marchi
2024-08-28 14:46 ` Nirmoy Das
2024-08-27 16:54 ` [PATCH i-g-t v3 04/10] tests/intel/xe_drm_fdinfo: Use igt_assert_lt_double() Lucas De Marchi
2024-08-28 14:48 ` Nirmoy Das
2024-08-27 16:54 ` [PATCH i-g-t v3 05/10] tests/intel/xe_drm_fdinfo: Be strict on == 0 comparison Lucas De Marchi
2024-08-28 14:51 ` Nirmoy Das
2024-08-27 16:54 ` [PATCH i-g-t v3 06/10] tests/intel/xe_drm_fdinfo: Use usec for batch duration Lucas De Marchi
2024-08-28 14:51 ` Nirmoy Das
2024-08-27 16:54 ` [PATCH i-g-t v3 07/10] tests/intel/xe_drm_fdinfo: Half the execution time Lucas De Marchi
2024-08-28 14:52 ` Nirmoy Das
2024-08-27 16:54 ` [PATCH i-g-t v3 08/10] tests/intel/xe_drm_fdinfo: Remove unused flags Lucas De Marchi
2024-08-28 15:00 ` Nirmoy Das [this message]
2024-08-27 16:54 ` [PATCH i-g-t v3 09/10] tests/intel/xe_drm_fdinfo: Use enum with expected load Lucas De Marchi
2024-08-28 14:56 ` Nirmoy Das
2024-08-27 16:54 ` [PATCH i-g-t v3 10/10] tests/intel/xe_drm_fdinfo: Rename and reorder tests Lucas De Marchi
2024-08-28 15:08 ` Nirmoy Das
2024-08-28 15:14 ` Nirmoy Das
2024-08-27 18:27 ` ✓ CI.xeBAT: success for tests/intel/xe_drm_fdinfo: Fix noise and improve (rev2) Patchwork
2024-08-27 18:38 ` ✗ Fi.CI.BAT: failure " Patchwork
2024-08-28 4:05 ` ✗ CI.xeFULL: " 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=af20a300-6bf4-4bdb-8852-fee95787b5e3@linux.intel.com \
--to=nirmoy.das@linux.intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=lucas.demarchi@intel.com \
--cc=umesh.nerlige.ramappa@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