svn commit: r268519 - stable/10/sys/dev/random

Xin LI delphij at FreeBSD.org
Fri Jul 11 00:26:58 UTC 2014


Author: delphij
Date: Fri Jul 11 00:26:57 2014
New Revision: 268519
URL: http://svnweb.freebsd.org/changeset/base/268519

Log:
  MFC r267984:
  
  Use Intel's official name (Secure Key) per Intel® Digital Random Number
  Generator (DRNG) Software Implementation Guide.
  
  Reviewed by:	kib
  Approved by:	so

Modified:
  stable/10/sys/dev/random/ivy.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/random/ivy.c
==============================================================================
--- stable/10/sys/dev/random/ivy.c	Fri Jul 11 00:14:29 2014	(r268518)
+++ stable/10/sys/dev/random/ivy.c	Fri Jul 11 00:26:57 2014	(r268519)
@@ -56,7 +56,7 @@ __FBSDID("$FreeBSD$");
 static int random_ivy_read(void *, int);
 
 static struct random_hardware_source random_ivy = {
-	.ident = "Hardware, Intel IvyBridge+ RNG",
+	.ident = "Hardware, Intel Secure Key RNG",
 	.source = RANDOM_PURE_RDRAND,
 	.read = random_ivy_read
 };


More information about the svn-src-all mailing list