summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Mason <clm@fb.com>2020-06-19 12:18:17 -0700
committerChris Mason <clm@fb.com>2020-06-19 12:18:17 -0700
commitba41b5ecb5afc4bb1ece729343b7e5d8d672abdd (patch)
treec8eea807e39d4ed3fc3a9d758eb30a38c2006020
parentb57943d8258935479f214b1749648b495ded5257 (diff)
downloadsimoop-ba41b5ecb5afc4bb1ece729343b7e5d8d672abdd.tar.gz
simoop: reduce verbosity about filler threads
These details aren't interesting. Signed-off-by: Chris Mason <clm@fb.com>
-rw-r--r--simoop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/simoop.c b/simoop.c
index 097271e..557c701 100644
--- a/simoop.c
+++ b/simoop.c
@@ -1511,7 +1511,6 @@ struct filler {
void *filler_thread(void *arg)
{
struct filler *filler = arg;
- fprintf(stderr, "filling %s start %lu num %lu\n", filler->path, filler->seq_start, filler->seq_num);
make_dirs(filler->path);
make_files(filler->path, filler->seq_start, filler->seq_num);
free(filler);
@@ -1540,6 +1539,7 @@ void run_filler_threads(void)
fprintf(stderr, "Creating working files\n");
this_tid = tids;
for (i = 0; i < total_paths; i++) {
+ fprintf(stderr, "filling %s\n", paths[i]);
for (j = 0; j < FILES_SPLIT; j++) {
pthread_t tid;
struct filler *filler;