From owner-svn-src-head@FreeBSD.ORG Thu Apr 18 01:21:44 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 9BD7B3AC; Thu, 18 Apr 2013 01:21:44 +0000 (UTC) (envelope-from rpaulo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 8F0AB15E; Thu, 18 Apr 2013 01:21:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r3I1LiWf037291; Thu, 18 Apr 2013 01:21:44 GMT (envelope-from rpaulo@svn.freebsd.org) Received: (from rpaulo@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r3I1LiJw037289; Thu, 18 Apr 2013 01:21:44 GMT (envelope-from rpaulo@svn.freebsd.org) Message-Id: <201304180121.r3I1LiJw037289@svn.freebsd.org> From: Rui Paulo Date: Thu, 18 Apr 2013 01:21:44 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r249601 - head/sys/amd64/amd64 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Apr 2013 01:21:44 -0000 Author: rpaulo Date: Thu Apr 18 01:21:44 2013 New Revision: 249601 URL: http://svnweb.freebsd.org/changeset/base/249601 Log: Print RDSEED, ADX, and SMAP. Pointed out by: kib Modified: head/sys/amd64/amd64/identcpu.c Modified: head/sys/amd64/amd64/identcpu.c ============================================================================== --- head/sys/amd64/amd64/identcpu.c Thu Apr 18 01:20:08 2013 (r249600) +++ head/sys/amd64/amd64/identcpu.c Thu Apr 18 01:21:44 2013 (r249601) @@ -406,6 +406,12 @@ printcpuinfo(void) "\013INVPCID" /* Restricted Transactional Memory */ "\014RTM" + /* Enhanced NRBG */ + "\022RDSEED" + /* ADCX + ADOX */ + "\023ADX" + /* Supervisor Mode Access Prevention */ + "\024SMAP" ); }