For non-file engines, set ->real_file_size if total size is known

Fixes a segfault with rand* directions.

Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
diff --git a/engines/cpu.c b/engines/cpu.c
index cfdf281..dd69ced 100644
--- a/engines/cpu.c
+++ b/engines/cpu.c
@@ -18,8 +18,12 @@
 	struct fio_file *f;
 	unsigned int i;
 
-	for_each_file(td, f, i)
-		f->real_file_size = -1ULL;
+	for_each_file(td, f, i) {
+		if (td->o.size)
+			f->real_file_size = td->o.size / td->o.nr_files;
+		else
+			f->real_file_size = -1ULL;
+	}
 
 	return 0;
 }
@@ -47,9 +51,9 @@
 	return 0;
 }
 
-static int fio_cpuio_open(struct thread_data fio_unused *td, struct fio_file *f)
+static int fio_cpuio_open(struct thread_data fio_unused *td,
+			  struct fio_file fio_unused *f)
 {
-	f->fd = 0;
 	return 0;
 }