From owner-svn-src-all@FreeBSD.ORG Fri Jun 27 21:33:15 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B3C7926E; Fri, 27 Jun 2014 21:33:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A14C22F75; Fri, 27 Jun 2014 21:33:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5RLXFWm021831; Fri, 27 Jun 2014 21:33:15 GMT (envelope-from delphij@svn.freebsd.org) Received: (from delphij@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5RLXFNX021830; Fri, 27 Jun 2014 21:33:15 GMT (envelope-from delphij@svn.freebsd.org) Message-Id: <201406272133.s5RLXFNX021830@svn.freebsd.org> From: Xin LI Date: Fri, 27 Jun 2014 21:33:15 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r267984 - head/sys/dev/random X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Jun 2014 21:33:15 -0000 Author: delphij Date: Fri Jun 27 21:33:15 2014 New Revision: 267984 URL: http://svnweb.freebsd.org/changeset/base/267984 Log: Use Intel's official name (Secure Key) per IntelĀ® Digital Random Number Generator (DRNG) Software Implementation Guide. Reviewed by: kib Approved by: so MFC after: 2 weeks Modified: head/sys/dev/random/ivy.c Modified: head/sys/dev/random/ivy.c ============================================================================== --- head/sys/dev/random/ivy.c Fri Jun 27 20:57:12 2014 (r267983) +++ head/sys/dev/random/ivy.c Fri Jun 27 21:33:15 2014 (r267984) @@ -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 };