From 2093988d6d0059b2596738a30db7aabe2d34d499 Mon Sep 17 00:00:00 2001 From: Dave Chinner Date: Thu, 21 Jan 2010 08:54:01 +1100 Subject: [PATCH] xfstests: fix printf format warnings in aio-stress.c Signed-off-by: Dave Chinner Reviewed-by: Christoph Hellwig --- ltp/aio-stress.c | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/ltp/aio-stress.c b/ltp/aio-stress.c index ab9e00634..57a21583b 100644 --- a/ltp/aio-stress.c +++ b/ltp/aio-stress.c @@ -1167,9 +1167,9 @@ restart: if (t->stage_mb_trans && t->num_files > 0) { double seconds = time_since_now(&stage_time); - fprintf(stderr, "thread %d %s totals (%.2f MB/s) %.2f MB in %.2fs\n", - t - global_thread_info, this_stage, t->stage_mb_trans/seconds, - t->stage_mb_trans, seconds); + fprintf(stderr, "thread %llu %s totals (%.2f MB/s) %.2f MB in %.2fs\n", + (unsigned long long)(t - global_thread_info), this_stage, + t->stage_mb_trans/seconds, t->stage_mb_trans, seconds); } if (num_threads > 1) { @@ -1449,16 +1449,19 @@ int main(int ac, char **av) if (file_size < num_contexts * context_offset) { fprintf(stderr, "file size %Lu too small for %d contexts\n", - file_size, num_contexts); + (unsigned long long)file_size, num_contexts); exit(1); } - fprintf(stderr, "file size %LuMB, record size %luKB, depth %d, ios per iteration %d\n", file_size / (1024 * 1024), rec_len / 1024, depth, io_iter); + fprintf(stderr, "file size %LuMB, record size %luKB, depth %d, ios per iteration %d\n", + (unsigned long long)file_size / (1024 * 1024), + rec_len / 1024, depth, io_iter); fprintf(stderr, "max io_submit %d, buffer alignment set to %luKB\n", max_io_submit, (page_size_mask + 1)/1024); fprintf(stderr, "threads %d files %d contexts %d context offset %LuMB verification %s\n", num_threads, num_files, num_contexts, - context_offset / (1024 * 1024), verify ? "on" : "off"); + (unsigned long long)context_offset / (1024 * 1024), + verify ? "on" : "off"); /* open all the files and do any required setup for them */ for (i = optind ; i < ac ; i++) { int thread_index; -- 2.50.1