ivy.c (ef9461ba0e07fe9e0858bc624001342c17f2918c) | ivy.c (c5e3d0ab11ddffdc45c5ef0dfa40f73d0f1996b4) |
---|---|
1/*- 2 * Copyright (c) 2012 Konstantin Belousov <kib@FreeBSD.org> 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 16 unchanged lines hidden (view full) --- 25 * 26 */ 27 28#include <sys/cdefs.h> 29__FBSDID("$FreeBSD$"); 30 31#include "opt_cpu.h" 32 | 1/*- 2 * Copyright (c) 2012 Konstantin Belousov <kib@FreeBSD.org> 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 16 unchanged lines hidden (view full) --- 25 * 26 */ 27 28#include <sys/cdefs.h> 29__FBSDID("$FreeBSD$"); 30 31#include "opt_cpu.h" 32 |
33#ifdef IVY_RNG | 33#ifdef RDRAND_RNG |
34 35#include <sys/param.h> 36#include <sys/time.h> 37#include <sys/lock.h> 38#include <sys/mutex.h> 39#include <sys/selinfo.h> 40#include <sys/systm.h> 41#include <dev/random/randomdev.h> --- 76 unchanged lines hidden --- | 34 35#include <sys/param.h> 36#include <sys/time.h> 37#include <sys/lock.h> 38#include <sys/mutex.h> 39#include <sys/selinfo.h> 40#include <sys/systm.h> 41#include <dev/random/randomdev.h> --- 76 unchanged lines hidden --- |