aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/random
diff options
context:
space:
mode:
authorKen Smith <kensmith@FreeBSD.org>2012-04-09 16:18:55 +0000
committerKen Smith <kensmith@FreeBSD.org>2012-04-09 16:18:55 +0000
commit039ea811636f62633b18bcadb9f5332b215f7900 (patch)
tree2b6265c3f691194eb9ff68f608c028eb43e14708 /sys/dev/random
parent0724db41d65f0854fe1349e284feceb8c5c047ed (diff)
Diffstat (limited to 'sys/dev/random')
-rw-r--r--sys/dev/random/harvest.c2
-rw-r--r--sys/dev/random/hash.c2
-rw-r--r--sys/dev/random/hash.h2
-rw-r--r--sys/dev/random/nehemiah.c2
-rw-r--r--sys/dev/random/nehemiah.h2
-rw-r--r--sys/dev/random/probe.c2
-rw-r--r--sys/dev/random/randomdev.c2
-rw-r--r--sys/dev/random/randomdev.h2
-rw-r--r--sys/dev/random/randomdev_soft.c2
-rw-r--r--sys/dev/random/randomdev_soft.h2
-rw-r--r--sys/dev/random/yarrow.c2
-rw-r--r--sys/dev/random/yarrow.h2
12 files changed, 12 insertions, 12 deletions
diff --git a/sys/dev/random/harvest.c b/sys/dev/random/harvest.c
index aacba329437a..2edd97c226cf 100644
--- a/sys/dev/random/harvest.c
+++ b/sys/dev/random/harvest.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/dev/random/harvest.c,v 1.26.2.1.8.1 2012/03/03 06:15:13 kensmith Exp $");
#include <sys/param.h>
#include <sys/kthread.h>
diff --git a/sys/dev/random/hash.c b/sys/dev/random/hash.c
index 611f866c4242..bf6aa12e8ef4 100644
--- a/sys/dev/random/hash.c
+++ b/sys/dev/random/hash.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/dev/random/hash.c,v 1.13.22.1.8.1 2012/03/03 06:15:13 kensmith Exp $");
#include <sys/param.h>
#include <sys/systm.h>
diff --git a/sys/dev/random/hash.h b/sys/dev/random/hash.h
index 8580d145d683..508c2cbb7cf9 100644
--- a/sys/dev/random/hash.h
+++ b/sys/dev/random/hash.h
@@ -23,7 +23,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sys/dev/random/hash.h,v 1.5.30.1.8.1 2012/03/03 06:15:13 kensmith Exp $
*/
#define KEYSIZE 32 /* (in bytes) 32 bytes == 256 bits */
diff --git a/sys/dev/random/nehemiah.c b/sys/dev/random/nehemiah.c
index f91e228e1df5..7e6195ef6be3 100644
--- a/sys/dev/random/nehemiah.c
+++ b/sys/dev/random/nehemiah.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/dev/random/nehemiah.c,v 1.5.2.2.4.1 2012/03/03 06:15:13 kensmith Exp $");
#include <sys/param.h>
#include <sys/time.h>
diff --git a/sys/dev/random/nehemiah.h b/sys/dev/random/nehemiah.h
index b35fb3fb2262..7dcf531bd8f2 100644
--- a/sys/dev/random/nehemiah.h
+++ b/sys/dev/random/nehemiah.h
@@ -23,7 +23,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sys/dev/random/nehemiah.h,v 1.1.30.1.8.1 2012/03/03 06:15:13 kensmith Exp $
*/
extern struct random_systat random_nehemiah;
diff --git a/sys/dev/random/probe.c b/sys/dev/random/probe.c
index 264f9d594070..3a843baff72b 100644
--- a/sys/dev/random/probe.c
+++ b/sys/dev/random/probe.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/dev/random/probe.c,v 1.7.10.1.8.1 2012/03/03 06:15:13 kensmith Exp $");
#include <sys/types.h>
#include <sys/param.h>
diff --git a/sys/dev/random/randomdev.c b/sys/dev/random/randomdev.c
index 96e1d8815e08..74b3dad62cbe 100644
--- a/sys/dev/random/randomdev.c
+++ b/sys/dev/random/randomdev.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/dev/random/randomdev.c,v 1.62.2.2.2.1 2012/03/03 06:15:13 kensmith Exp $");
#include <sys/param.h>
#include <sys/systm.h>
diff --git a/sys/dev/random/randomdev.h b/sys/dev/random/randomdev.h
index 2529a82ec710..bf72446e6888 100644
--- a/sys/dev/random/randomdev.h
+++ b/sys/dev/random/randomdev.h
@@ -23,7 +23,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sys/dev/random/randomdev.h,v 1.7.10.1.8.1 2012/03/03 06:15:13 kensmith Exp $
*/
/* This header contains only those definitions that are global
diff --git a/sys/dev/random/randomdev_soft.c b/sys/dev/random/randomdev_soft.c
index c720902c633e..65f3855e2329 100644
--- a/sys/dev/random/randomdev_soft.c
+++ b/sys/dev/random/randomdev_soft.c
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/dev/random/randomdev_soft.c,v 1.18.2.2.2.1 2012/03/03 06:15:13 kensmith Exp $");
#include <sys/param.h>
#include <sys/systm.h>
diff --git a/sys/dev/random/randomdev_soft.h b/sys/dev/random/randomdev_soft.h
index 489d45a3c5fd..212031fa4f49 100644
--- a/sys/dev/random/randomdev_soft.h
+++ b/sys/dev/random/randomdev_soft.h
@@ -23,7 +23,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sys/dev/random/randomdev_soft.h,v 1.2.10.1.8.1 2012/03/03 06:15:13 kensmith Exp $
*/
/* This header contains only those definitions that are global
diff --git a/sys/dev/random/yarrow.c b/sys/dev/random/yarrow.c
index 6f631bb11137..9e643fe5cbd2 100644
--- a/sys/dev/random/yarrow.c
+++ b/sys/dev/random/yarrow.c
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/sys/dev/random/yarrow.c,v 1.48.2.1.8.1 2012/03/03 06:15:13 kensmith Exp $");
#include <sys/param.h>
#include <sys/kernel.h>
diff --git a/sys/dev/random/yarrow.h b/sys/dev/random/yarrow.h
index 558354d27f73..43ed66d77d84 100644
--- a/sys/dev/random/yarrow.h
+++ b/sys/dev/random/yarrow.h
@@ -23,7 +23,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/sys/dev/random/yarrow.h,v 1.18.30.1.8.1 2012/03/03 06:15:13 kensmith Exp $
*/
/* This contains Yarrow-specific declarations.