Only initialize random map if we are actually going to use it
[fio.git] / filesetup.c
index 785afcee48eef27f45d67c33ae38454f58ca47b8..b29db3f3f237032db28c1ec1d4fdc4cc6b6c050f 100644 (file)
@@ -34,7 +34,7 @@ static int extend_file(struct thread_data *td, struct fio_file *f)
                unlink_file = 1;
 
        if (unlink_file || new_layout) {
-               if (unlink(f->file_name) < 0) {
+               if ((unlink(f->file_name) < 0) && (errno != ENOENT)) {
                        td_verror(td, errno, "unlink");
                        return 1;
                }
@@ -497,7 +497,7 @@ int init_random_map(struct thread_data *td)
        struct fio_file *f;
        unsigned int i;
 
-       if (td->o.norandommap)
+       if (td->o.norandommap || !td_random(td))
                return 0;
 
        for_each_file(td, f, i) {