From owner-svn-src-head@freebsd.org Mon Oct 14 20:55:01 2019 Return-Path: Delivered-To: svn-src-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id E67B8137DDB; Mon, 14 Oct 2019 20:55:01 +0000 (UTC) (envelope-from cem@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46sW5x5p7sz3PpZ; Mon, 14 Oct 2019 20:55:01 +0000 (UTC) (envelope-from cem@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AA627AE70; Mon, 14 Oct 2019 20:55:01 +0000 (UTC) (envelope-from cem@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x9EKt1tG088440; Mon, 14 Oct 2019 20:55:01 GMT (envelope-from cem@FreeBSD.org) Received: (from cem@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x9EKt1hT088438; Mon, 14 Oct 2019 20:55:01 GMT (envelope-from cem@FreeBSD.org) Message-Id: <201910142055.x9EKt1hT088438@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cem set sender to cem@FreeBSD.org using -f From: Conrad Meyer Date: Mon, 14 Oct 2019 20:55:01 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r353521 - in head/sys/x86: include x86 X-SVN-Group: head X-SVN-Commit-Author: cem X-SVN-Commit-Paths: in head/sys/x86: include x86 X-SVN-Commit-Revision: 353521 X-SVN-Commit-Repository: base 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.29 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: Mon, 14 Oct 2019 20:55:02 -0000 Author: cem Date: Mon Oct 14 20:55:01 2019 New Revision: 353521 URL: https://svnweb.freebsd.org/changeset/base/353521 Log: x86: Use canonical spelling of MOVDIR64B feature/instruction The former spelling probably confused MOVDIR64B with MOVDIRI64. MOVDIR_64B is the 64-*byte* direct store instruction; MOVDIR_I64 is the 64-*bit* direct store instruction (underscores added here for clarity; they are not part of the canonical instruction name). No functional change. Sponsored by: Dell EMC Isilon Modified: head/sys/x86/include/specialreg.h head/sys/x86/x86/identcpu.c Modified: head/sys/x86/include/specialreg.h ============================================================================== --- head/sys/x86/include/specialreg.h Mon Oct 14 20:33:14 2019 (r353520) +++ head/sys/x86/include/specialreg.h Mon Oct 14 20:55:01 2019 (r353521) @@ -449,7 +449,7 @@ #define CPUID_STDEXT2_RDPID 0x00400000 #define CPUID_STDEXT2_CLDEMOTE 0x02000000 #define CPUID_STDEXT2_MOVDIRI 0x08000000 -#define CPUID_STDEXT2_MOVDIRI64B 0x10000000 +#define CPUID_STDEXT2_MOVDIR64B 0x10000000 #define CPUID_STDEXT2_ENQCMD 0x20000000 #define CPUID_STDEXT2_SGXLC 0x40000000 Modified: head/sys/x86/x86/identcpu.c ============================================================================== --- head/sys/x86/x86/identcpu.c Mon Oct 14 20:33:14 2019 (r353520) +++ head/sys/x86/x86/identcpu.c Mon Oct 14 20:55:01 2019 (r353521) @@ -993,7 +993,7 @@ printcpuinfo(void) "\027RDPID" "\032CLDEMOTE" "\034MOVDIRI" - "\035MOVDIRI64B" + "\035MOVDIR64B" "\036ENQCMD" "\037SGXLC" );