From d16b88e20152be4d811ed2e0051f0b19cce1d5bf Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Thu, 8 Mar 2007 13:23:10 +0100 Subject: [PATCH] Engines should not touch nr_open_files anymore Leftover fix, should have been included with the ->open_file() addition. Signed-off-by: Jens Axboe --- engines/net.c | 1 - engines/null.c | 1 - 2 files changed, 2 deletions(-) diff --git a/engines/net.c b/engines/net.c index 17d24374..2e136f3d 100644 --- a/engines/net.c +++ b/engines/net.c @@ -268,7 +268,6 @@ static int fio_netio_init(struct thread_data *td) f->real_file_size = f->file_size; } - td->nr_open_files = td->nr_files; return 0; } diff --git a/engines/null.c b/engines/null.c index 7f45bd97..d61685c7 100644 --- a/engines/null.c +++ b/engines/null.c @@ -37,7 +37,6 @@ static int fio_null_setup(struct thread_data *td) f->file_size = f->real_file_size; } - td->nr_open_files = td->nr_files; return 0; } -- 2.25.1