From owner-svn-src-head@freebsd.org Tue Jan 3 00:24:14 2017 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3F1A5C9CE29; Tue, 3 Jan 2017 00:24:14 +0000 (UTC) (envelope-from markj@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 mx1.freebsd.org (Postfix) with ESMTPS id 0BC671F0C; Tue, 3 Jan 2017 00:24:13 +0000 (UTC) (envelope-from markj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v030ODOV080292; Tue, 3 Jan 2017 00:24:13 GMT (envelope-from markj@FreeBSD.org) Received: (from markj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v030ODW1080291; Tue, 3 Jan 2017 00:24:13 GMT (envelope-from markj@FreeBSD.org) Message-Id: <201701030024.v030ODW1080291@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: markj set sender to markj@FreeBSD.org using -f From: Mark Johnston Date: Tue, 3 Jan 2017 00:24:13 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r311148 - head/sys/cddl/contrib/opensolaris/uts/common/sys 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.23 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: Tue, 03 Jan 2017 00:24:14 -0000 Author: markj Date: Tue Jan 3 00:24:12 2017 New Revision: 311148 URL: https://svnweb.freebsd.org/changeset/base/311148 Log: Remove the "unused" DIF subroutine index left after r308582. These indices are input to a build-time script that generates code to validate subroutine names. Modified: head/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h Modified: head/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h ============================================================================== --- head/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h Tue Jan 3 00:05:44 2017 (r311147) +++ head/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h Tue Jan 3 00:24:12 2017 (r311148) @@ -306,15 +306,14 @@ typedef enum dtrace_probespec { #define DIF_SUBR_TOUPPER 44 #define DIF_SUBR_TOLOWER 45 #define DIF_SUBR_MEMREF 46 -#define DIF_SUBR_UNUSED 47 -#define DIF_SUBR_SX_SHARED_HELD 48 -#define DIF_SUBR_SX_EXCLUSIVE_HELD 49 -#define DIF_SUBR_SX_ISEXCLUSIVE 50 -#define DIF_SUBR_MEMSTR 51 -#define DIF_SUBR_GETF 52 -#define DIF_SUBR_JSON 53 -#define DIF_SUBR_STRTOLL 54 -#define DIF_SUBR_MAX 54 /* max subroutine value */ +#define DIF_SUBR_SX_SHARED_HELD 47 +#define DIF_SUBR_SX_EXCLUSIVE_HELD 48 +#define DIF_SUBR_SX_ISEXCLUSIVE 49 +#define DIF_SUBR_MEMSTR 50 +#define DIF_SUBR_GETF 51 +#define DIF_SUBR_JSON 52 +#define DIF_SUBR_STRTOLL 53 +#define DIF_SUBR_MAX 53 /* max subroutine value */ typedef uint32_t dif_instr_t;