The following changes since commit 6d0e9f83bdc1b9014ffb7200f923372de29eb713: configure: attempt to get Android going again (2013-02-12 09:58:14 +0100) are available in the git repository at: git://git.kernel.dk/fio.git master Aaron Carroll (1): configure: missing Android config options Jens Axboe (1): Merge branch 'master' of ssh://brick.kernel.dk/data/git/fio Nikolaus Jeremic (1): Fix replay of IO pattern with multiple open files configure | 2 ++ iolog.c | 1 + 2 files changed, 3 insertions(+), 0 deletions(-) --- Diff of recent changes: diff --git a/configure b/configure index 8267e1c..caaf30e 100755 --- a/configure +++ b/configure @@ -227,9 +227,11 @@ CYGWIN*) ;; Android) output_sym "CONFIG_32BIT" + output_sym "CONFIG_LITTLE_ENDIAN" output_sym "CONFIG_SOCKLEN_T" output_sym "CONFIG_GETTIMEOFDAY" output_sym "CONFIG_CLOCK_GETTIME" + output_sym "CONFIG_CLOCK_MONOTONIC" echo "CC=$cc" >> $config_host_mak echo "EXTFLAGS=$CFLAGS -include config-host.h -DFIO_NO_HAVE_SHM_H -D_GNU_SOURCE" >> $config_host_mak exit 0 diff --git a/iolog.c b/iolog.c index e4c1fef..b73c208 100644 --- a/iolog.c +++ b/iolog.c @@ -316,6 +316,7 @@ static int read_iolog2(struct thread_data *td, FILE *f) act); continue; } + fileno = get_fileno(td, fname); } else if (r == 2) { rw = DDIR_INVAL; if (!strcmp(act, "add")) { -- 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