about summary refs log tree commit diff
path: root/benchtests/bench-memset.c
diff options
context:
space:
mode:
authorNoah Goldstein <goldstein.w.n@gmail.com>2022-02-05 03:10:44 -0600
committerNoah Goldstein <goldstein.w.n@gmail.com>2022-02-05 16:48:00 -0600
commit90cbb806361a5da29a9ef99866f0b3e699fad176 (patch)
treea6179090a0198e9c7b026811473b919e8d562191 /benchtests/bench-memset.c
parent0e0199a9e02ebe42e2b36958964d63f03573c382 (diff)
downloadglibc-90cbb806361a5da29a9ef99866f0b3e699fad176.tar.gz
glibc-90cbb806361a5da29a9ef99866f0b3e699fad176.tar.xz
glibc-90cbb806361a5da29a9ef99866f0b3e699fad176.zip
Benchtests: move 'alloc_bufs' from loop in bench-memset.c
One buf allocation is sufficient. Calling `alloc_bufs' in the loop
just adds unnecessary syscall overhead.
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
Diffstat (limited to 'benchtests/bench-memset.c')
-rw-r--r--benchtests/bench-memset.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/benchtests/bench-memset.c b/benchtests/bench-memset.c
index beba3fbe46..e1e2d5f176 100644
--- a/benchtests/bench-memset.c
+++ b/benchtests/bench-memset.c
@@ -74,7 +74,6 @@ do_test (json_ctx_t *json_ctx, size_t align, int c, size_t len)
   FOR_EACH_IMPL (impl, 0)
     {
       do_one_test (json_ctx, impl, (CHAR *) (buf1) + align, c, len);
-      alloc_bufs ();
     }
 
   json_array_end (json_ctx);
@@ -88,8 +87,9 @@ test_main (void)
   size_t i;
   int c = 0;
 
-  test_init ();
 
+  test_init ();
+  alloc_bufs ();
   json_init (&json_ctx, 0, stdout);
 
   json_document_begin (&json_ctx);