The following changes since commit cda99fa0fcca41fc0d54ecaa2fd600162a8de5d3: fix ramp_in (2010-12-14 08:31:36 +0100) are available in the git repository at: git://git.kernel.dk/fio.git master Bruce Cran (1): FreeBSD build broken due to missing -lrt Jens Axboe (1): Fio 1.44.3 Makefile.FreeBSD | 2 +- filesetup.c | 4 ++-- init.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) --- Diff of recent changes: diff --git a/Makefile.FreeBSD b/Makefile.FreeBSD index e4adfca..9378b19 100644 --- a/Makefile.FreeBSD +++ b/Makefile.FreeBSD @@ -52,7 +52,7 @@ mandir = $(prefix)/man %.o: %.c $(QUIET_CC)$(CC) -o $*.o -c $(CFLAGS) $< fio: $(OBJS) - $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm + $(QUIET_CC)$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(EXTLIBS) -lpthread -lm -lrt depend: $(QUIET_DEP)$(CC) -MM $(ALL_CFLAGS) $(SOURCE) 1> .depend diff --git a/filesetup.c b/filesetup.c index ae893c7..bb36234 100644 --- a/filesetup.c +++ b/filesetup.c @@ -316,7 +316,7 @@ static int get_file_size(struct thread_data *td, struct fio_file *f) return ret; if (f->file_offset > f->real_file_size) { - log_err("%s: offset extends end (%Lu > %Lu)\n", td->o.name, + log_err("%s: offset extends end (%llu > %llu)\n", td->o.name, f->file_offset, f->real_file_size); return 1; } @@ -734,7 +734,7 @@ int setup_files(struct thread_data *td) temp_stall_ts = 1; if (!terse_output) log_info("%s: Laying out IO file(s) (%u file(s) /" - " %LuMB)\n", td->o.name, need_extend, + " %lluMB)\n", td->o.name, need_extend, extend_size >> 20); for_each_file(td, f, i) { diff --git a/init.c b/init.c index 2e443f6..59526ce 100644 --- a/init.c +++ b/init.c @@ -22,7 +22,7 @@ #include "lib/getopt.h" -static char fio_version_string[] = "fio 1.44.2"; +static char fio_version_string[] = "fio 1.44.3"; #define FIO_RANDSEED (0xb1899bedUL) -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html