filesetup: __init_rand_distribution() can be void
authorJens Axboe <axboe@kernel.dk>
Thu, 2 Nov 2017 15:00:04 +0000 (09:00 -0600)
committerJens Axboe <axboe@kernel.dk>
Thu, 2 Nov 2017 15:00:04 +0000 (09:00 -0600)
It can no longer fail, just make it void.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
filesetup.c

index 0437a776d9c0d4b55564bc659cc04d0828c105c0..2cc7158ead7eb1a8cf16020106c5002aaee9b441 100644 (file)
@@ -1190,7 +1190,7 @@ bool pre_read_files(struct thread_data *td)
        return true;
 }
 
-static int __init_rand_distribution(struct thread_data *td, struct fio_file *f)
+static void __init_rand_distribution(struct thread_data *td, struct fio_file *f)
 {
        unsigned int range_size, seed;
        unsigned long nranges;
@@ -1211,8 +1211,6 @@ static int __init_rand_distribution(struct thread_data *td, struct fio_file *f)
                pareto_init(&f->zipf, nranges, td->o.pareto_h.u.f, seed);
        else if (td->o.random_distribution == FIO_RAND_DIST_GAUSS)
                gauss_init(&f->gauss, nranges, td->o.gauss_dev.u.f, seed);
-
-       return 1;
 }
 
 static int init_rand_distribution(struct thread_data *td)