diff options
author | rmacklem <rmacklem@FreeBSD.org> | 2011-06-18 23:02:53 +0000 |
---|---|---|
committer | rmacklem <rmacklem@FreeBSD.org> | 2011-06-18 23:02:53 +0000 |
commit | e68709579e3654df9d75d883f6676b64a5b49d1a (patch) | |
tree | da2b6d6c4758b0a7df519b3e5dd66d5c3fe2dacf /sys/modules/dtrace/dtnfscl | |
parent | 2c34fd40cf9b5ba7ec3d068fc410a06bc897665b (diff) | |
download | FreeBSD-src-e68709579e3654df9d75d883f6676b64a5b49d1a.zip FreeBSD-src-e68709579e3654df9d75d883f6676b64a5b49d1a.tar.gz |
Add DTrace support to the new NFS client. This is essentially
cloned from the old NFS client, plus additions for NFSv4. A
review of this code is in progress, however it was felt by the
reviewer that it could go in now, before code slush. Any changes
required by the review can be committed as bug fixes later.
Diffstat (limited to 'sys/modules/dtrace/dtnfscl')
-rw-r--r-- | sys/modules/dtrace/dtnfscl/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sys/modules/dtrace/dtnfscl/Makefile b/sys/modules/dtrace/dtnfscl/Makefile new file mode 100644 index 0000000..0296232 --- /dev/null +++ b/sys/modules/dtrace/dtnfscl/Makefile @@ -0,0 +1,13 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../fs/nfsclient + +KMOD= dtnfscl +SRCS= nfs_clkdtrace.c \ + vnode_if.h + +CFLAGS+= -I${.CURDIR}/../../../cddl/compat/opensolaris \ + -I${.CURDIR}/../../../cddl/contrib/opensolaris/uts/common \ + -I${.CURDIR}/../../.. + +.include <bsd.kmod.mk> |