From 676a03fa6aa5b1833f120c033a4f1f77c5e07227 Mon Sep 17 00:00:00 2001 From: Mark Johnston Date: Mon, 25 Apr 2016 18:44:11 +0000 Subject: [PATCH] Increase DTRACE_FUNCNAMELEN from 128 to 192. This allows for the long function components encountered in www/firefox. This constant is part of DTrace's userland ABI, so this change may not be MFC'ed. PR: 207735 --- sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h b/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h index a8b537f69997..139a93de3593 100644 --- a/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h +++ b/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h @@ -87,7 +87,7 @@ typedef int model_t; #define DTRACE_PROVNAMELEN 64 #define DTRACE_MODNAMELEN 64 -#define DTRACE_FUNCNAMELEN 128 +#define DTRACE_FUNCNAMELEN 192 #define DTRACE_NAMELEN 64 #define DTRACE_FULLNAMELEN (DTRACE_PROVNAMELEN + DTRACE_MODNAMELEN + \ DTRACE_FUNCNAMELEN + DTRACE_NAMELEN + 4)