[PATCH i-g-t v2 06/10] tests/intel/xe_drm_fdinfo: Use usec for batch duration
Lucas De Marchi
lucas.demarchi at intel.com
Tue Aug 27 05:51:25 UTC 2024
It's only used to control the time to usleep(), so use a better unit.
Signed-off-by: Lucas De Marchi <lucas.demarchi at intel.com>
---
tests/intel/xe_drm_fdinfo.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/tests/intel/xe_drm_fdinfo.c b/tests/intel/xe_drm_fdinfo.c
index ad563aa20..96468e1be 100644
--- a/tests/intel/xe_drm_fdinfo.c
+++ b/tests/intel/xe_drm_fdinfo.c
@@ -73,7 +73,7 @@ struct pceu_cycles {
uint64_t total_cycles;
};
-const unsigned long batch_duration_ns = (1 * NSEC_PER_SEC) / 2;
+const unsigned long batch_duration_usec = (1 * USEC_PER_SEC) / 2;
static const char *engine_map[] = {
"rcs",
@@ -516,7 +516,7 @@ single(int fd, struct drm_xe_engine_class_instance *hwe, unsigned int flags)
if (flags & TEST_ISOLATION)
read_engine_cycles(new_fd, pceu1[1]);
- usleep(batch_duration_ns / 1000);
+ usleep(batch_duration_usec);
if (flags & TEST_TRAILING_IDLE)
spin_sync_end(fd, ctx);
@@ -552,7 +552,7 @@ busy_check_all(int fd, struct drm_xe_engine_class_instance *hwe, unsigned int fl
}
read_engine_cycles(fd, pceu1);
- usleep(batch_duration_ns / 1000);
+ usleep(batch_duration_usec);
if (flags & TEST_TRAILING_IDLE)
spin_sync_end(fd, ctx);
read_engine_cycles(fd, pceu2);
@@ -579,7 +579,7 @@ single_destroy_queue(int fd, struct drm_xe_engine_class_instance *hwe)
spin_sync_start(fd, ctx);
read_engine_cycles(fd, pceu1);
- usleep(batch_duration_ns / 1000);
+ usleep(batch_duration_usec);
/* destroy queue before sampling again */
spin_sync_end(fd, ctx);
@@ -618,7 +618,7 @@ most_busy_check_all(int fd, struct drm_xe_engine_class_instance *hwe,
}
read_engine_cycles(fd, pceu1);
- usleep(batch_duration_ns / 1000);
+ usleep(batch_duration_usec);
if (flags & TEST_TRAILING_IDLE)
xe_for_each_engine_class(class)
spin_sync_end(fd, ctx[class]);
@@ -662,7 +662,7 @@ all_busy_check_all(int fd, unsigned int flags)
}
read_engine_cycles(fd, pceu1);
- usleep(batch_duration_ns / 1000);
+ usleep(batch_duration_usec);
if (flags & TEST_TRAILING_IDLE)
xe_for_each_engine_class(class)
spin_sync_end(fd, ctx[class]);
--
2.43.0
More information about the igt-dev
mailing list