From eada09acaeaeefa47b9692e7d920bf851863dfb7 Mon Sep 17 00:00:00 2001 From: chs Date: Mon, 28 May 2018 21:04:59 +0000 Subject: merge a new version of the CDDL dtrace and ZFS code. this changes the upstream vendor from OpenSolaris to FreeBSD, and this version is based on FreeBSD svn r315983. in addition to the 10 years of improvements from upstream, this version also has these NetBSD-specific enhancements: - dtrace FBT probes can now be placed in kernel modules. - ZFS now supports mmap(). --- sys/modules/dtrace/linux_syscall/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'sys/modules/dtrace/linux_syscall') diff --git a/sys/modules/dtrace/linux_syscall/Makefile b/sys/modules/dtrace/linux_syscall/Makefile index 45706f1fc59..e0430409dd5 100644 --- a/sys/modules/dtrace/linux_syscall/Makefile +++ b/sys/modules/dtrace/linux_syscall/Makefile @@ -8,8 +8,10 @@ KMOD= dtrace_syscall_linux SRCS= systrace.c CPPFLAGS+= -I${NETBSDSRCDIR}/external/cddl/osnet/sys \ - -I${NETBSDSRCDIR}/external/cddl/osnet/dist/uts/common + -I${NETBSDSRCDIR}/external/cddl/osnet/dist/uts/common \ + -I${NETBSDSRCDIR}/external/cddl/osnet/dev/dtrace -CPPFLAGS+= -Wno-unknown-pragmas +CPPFLAGS+= -Wno-unknown-pragmas \ + -Wno-discarded-qualifiers .include -- cgit