summaryrefslogtreecommitdiffstats
path: root/sys/dev/random/unit_test.h
diff options
context:
space:
mode:
authormarkm <markm@FreeBSD.org>2015-07-12 18:14:38 +0000
committermarkm <markm@FreeBSD.org>2015-07-12 18:14:38 +0000
commit4637ff6821091c57822745d18854f54b02203327 (patch)
tree5ad967e986577467824558c7d72ffc554a5b9df7 /sys/dev/random/unit_test.h
parent69cdb114a9d0ef83c599d0e47901b96584f2c361 (diff)
downloadFreeBSD-src-4637ff6821091c57822745d18854f54b02203327.zip
FreeBSD-src-4637ff6821091c57822745d18854f54b02203327.tar.gz
* Address review (and add a bit myself).
- Tweek man page. - Remove all mention of RANDOM_FORTUNA. If the system owner wants YARROW or DUMMY, they ask for it, otherwise they get FORTUNA. - Tidy up headers a bit. - Tidy up declarations a bit. - Make static in a couple of places where needed. - Move Yarrow/Fortuna SYSINIT/SYSUNINIT to randomdev.c, moving us towards a single file where the algorithm context is used. - Get rid of random_*_process_buffer() functions. They were only used in one place each, and are better subsumed into those places. - Remove *_post_read() functions as they are stubs everywhere. - Assert against buffer size illegalities. - Clean up some silly code in the randomdev_read() routine. - Make the harvesting more consistent. - Make some requested argument name changes. - Tidy up and clarify a few comments. - Make some requested comment changes. - Make some requested macro changes. * NOTE: the thing calling itself a 'unit test' is not yet a proper unit test, but it helps me ensure things work. It may be a proper unit test at some time in the future, but for now please don't make any assumptions or hold any expectations. Differential Revision: https://reviews.freebsd.org/D2025 Approved by: so (/dev/random blanket)
Diffstat (limited to 'sys/dev/random/unit_test.h')
-rw-r--r--sys/dev/random/unit_test.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/dev/random/unit_test.h b/sys/dev/random/unit_test.h
index 648d294..3c05ad0 100644
--- a/sys/dev/random/unit_test.h
+++ b/sys/dev/random/unit_test.h
@@ -34,7 +34,9 @@
#error "Random unit tests cannot be compiled into the kernel."
#endif
-void random_adaptor_unblock(void);
+#include <sys/types.h>
+#include <inttypes.h>
+#include <stdint.h>
#if defined(clang) && __has_builtin(__builtin_readcyclecounter)
#define rdtsc __builtin_readcyclecounter
@@ -61,6 +63,7 @@ get_cyclecount(void)
}
#define HARVESTSIZE 2
+#define RANDOM_BLOCKSIZE 16
enum random_entropy_source {
RANDOM_START = 0,
OpenPOWER on IntegriCloud