Do the invalidate/advise hinting in td_open_file()
authorJens Axboe <jens.axboe@oracle.com>
Tue, 27 Mar 2007 13:38:21 +0000 (15:38 +0200)
committerJens Axboe <jens.axboe@oracle.com>
Tue, 27 Mar 2007 13:38:21 +0000 (15:38 +0200)
Then we only do it once per file, not twice.

Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
filesetup.c
ioengines.c

index f64c7a119d66cbf43173e894873b357e33dae768..f6b4855bbe7a845a9549fd45e65b99aed2477d41 100644 (file)
@@ -214,21 +214,6 @@ int generic_open_file(struct thread_data *td, struct fio_file *f)
        if (get_file_size(td, f))
                goto err;
 
-       if (td->o.invalidate_cache && file_invalidate_cache(td, f))
-               goto err;
-
-       if (td->o.fadvise_hint) {
-               if (td_random(td))
-                       flags = POSIX_FADV_RANDOM;
-               else
-                       flags = POSIX_FADV_SEQUENTIAL;
-
-               if (fadvise(f->fd, f->file_offset, f->io_size, flags) < 0) {
-                       td_verror(td, errno, "fadvise");
-                       goto err;
-               }
-       }
-
        return 0;
 err:
        close(f->fd);
index 3e8d886ae89c95c155e61608b622fb97af4ac3b5..3cfa773ac07ea2e79d6f17c6ef38ffc360947035 100644 (file)
@@ -263,26 +263,50 @@ int td_io_commit(struct thread_data *td)
 
 int td_io_open_file(struct thread_data *td, struct fio_file *f)
 {
-       if (!td->io_ops->open_file(td, f)) {
-               f->last_free_lookup = 0;
-               f->last_completed_pos = 0;
-               f->last_pos = 0;
-               f->flags |= FIO_FILE_OPEN;
-               f->flags &= ~FIO_FILE_CLOSING;
-
-               if (f->file_map)
-                       memset(f->file_map, 0, f->num_maps * sizeof(long));
-
-               td->nr_open_files++;
-               get_file(f);
-               return 0;
+       if (td->io_ops->open_file(td, f)) {
+               if (td->error == EINVAL && td->o.odirect)
+                       log_err("fio: destination does not support O_DIRECT\n");
+               if (td->error == EMFILE)
+                       log_err("fio: try reducing/setting openfiles (failed at %u of %u)\n", td->nr_open_files, td->o.nr_files);
+
+               return 1;
+       }
+
+       f->last_free_lookup = 0;
+       f->last_completed_pos = 0;
+       f->last_pos = 0;
+       f->flags |= FIO_FILE_OPEN;
+       f->flags &= ~FIO_FILE_CLOSING;
+
+       if (td->io_ops->flags & FIO_DISKLESSIO)
+               goto done;
+
+       if (td->o.invalidate_cache && file_invalidate_cache(td, f))
+               goto err;
+
+       if (td->o.fadvise_hint) {
+               int flags;
+
+               if (td_random(td))
+                       flags = POSIX_FADV_RANDOM;
+               else
+                       flags = POSIX_FADV_SEQUENTIAL;
+
+               if (fadvise(f->fd, f->file_offset, f->io_size, flags) < 0) {
+                       td_verror(td, errno, "fadvise");
+                       goto err;
+               }
        }
 
-       if (td->error == EINVAL && td->o.odirect)
-               log_err("fio: destination does not support O_DIRECT\n");
-       if (td->error == EMFILE)
-               log_err("fio: try reducing/setting openfiles (failed at %u of %u)\n", td->nr_open_files, td->o.nr_files);
+       if (f->file_map)
+               memset(f->file_map, 0, f->num_maps * sizeof(long));
 
+done:
+       td->nr_open_files++;
+       get_file(f);
+       return 0;
+err:
+       td->io_ops->close_file(td, f);
        return 1;
 }