Switch to using our internal Tausworthe based random generator for offsets

It's both faster and more exhaustive than what is available on
glibc on my test systems. So no downsides, and the upside of having
the same offset generator across all platforms.

This will change the random series, so could alter performance for
your workload since the pattern will be different in sequence. There's
an option to revert to the OS generator, you can add use_us_rand=1
on your job files to retain the old generator offsets.

Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
diff --git a/init.c b/init.c
index 327a3c5..2ae93a0 100644
--- a/init.c
+++ b/init.c
@@ -482,6 +482,7 @@
 		td->rand_seeds[4] = FIO_RANDSEED * td->thread_number;
 
 	os_random_seed(td->rand_seeds[4], &td->random_state);
+	init_rand_seed(&td->__random_state, td->rand_seeds[4]);
 }
 
 /*