[PATCH i-g-t 1/5] tests/intel/xe_drm_fdinfo: Use usec for batch duration
Lucas De Marchi
lucas.demarchi at intel.com
Sat Aug 24 06:25:00 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 4696c6495..aea73a4ae 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",
@@ -511,7 +511,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);
@@ -547,7 +547,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);
@@ -574,7 +574,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);
@@ -613,7 +613,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]);
@@ -657,7 +657,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