diff options
author | pfg <pfg@FreeBSD.org> | 2014-06-25 14:23:30 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2014-06-25 14:23:30 +0000 |
commit | 2676c27ae85af89bb53747758894d09b21a20630 (patch) | |
tree | 2ca17f9cc5133d05480437d109a02c2ff5b70ec1 /sys/modules/dtrace | |
parent | 7ae5e66dd296520990e269e87b0b60fd679a3c14 (diff) | |
download | FreeBSD-src-2676c27ae85af89bb53747758894d09b21a20630.zip FreeBSD-src-2676c27ae85af89bb53747758894d09b21a20630.tar.gz |
MFV r260708
4427 pid provider rejects probes with valid UTF-8 names
This make use of Solaris' u8_validate() which we happen to
use since r185029 for ZFS.
Illumos Revision: 1444d846b126463eb1059a572ff114d51f7562e5
Reference:
https://www.illumos.org/issues/4427
Obtained from: Illumos
MFC after: 2 weeks
Diffstat (limited to 'sys/modules/dtrace')
-rw-r--r-- | sys/modules/dtrace/fasttrap/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/modules/dtrace/fasttrap/Makefile b/sys/modules/dtrace/fasttrap/Makefile index 45ff7bf..70e7a307 100644 --- a/sys/modules/dtrace/fasttrap/Makefile +++ b/sys/modules/dtrace/fasttrap/Makefile @@ -8,6 +8,9 @@ KMOD= fasttrap SRCS= fasttrap.c fasttrap_isa.c opt_compat.h SRCS+= vnode_if.h +.PATH: ${.CURDIR}/../../../cddl/contrib/opensolaris/common/unicode +SRCS+= u8_textprep.c + CFLAGS+= -I${SYSDIR}/cddl/compat/opensolaris \ -I${SYSDIR}/cddl/contrib/opensolaris/uts/common \ -I${SYSDIR} |