diff options
author | ahl <none@none> | 2008-02-06 17:59:23 -0800 |
---|---|---|
committer | ahl <none@none> | 2008-02-06 17:59:23 -0800 |
commit | e1adf50c175098121bb2d0ddc73adb34d502328e (patch) | |
tree | 6af338661d53a977563c16d0fc4c213ce5b7f11f /usr/src/uts/common/sys | |
parent | c65e19ff57535bc0e44cf15a019788acc60888ef (diff) | |
download | illumos-gate-e1adf50c175098121bb2d0ddc73adb34d502328e.tar.gz |
PSARC 2008/050 DTrace NFS v3 Provider
6660173 PSARC 2008/050 DTrace NFS v3 Provider
6660179 fix stability of NFS v4 provider
Diffstat (limited to 'usr/src/uts/common/sys')
-rw-r--r-- | usr/src/uts/common/sys/sdt.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/usr/src/uts/common/sys/sdt.h b/usr/src/uts/common/sys/sdt.h index 3cef18d6c4..0d9480d5ed 100644 --- a/usr/src/uts/common/sys/sdt.h +++ b/usr/src/uts/common/sys/sdt.h @@ -19,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright 2007 Sun Microsystems, Inc. All rights reserved. + * Copyright 2008 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -156,6 +156,15 @@ extern "C" { DTRACE_PROBE4(__io_##name, type1, arg1, type2, arg2, \ type3, arg3, type4, arg4); +#define DTRACE_NFSV3_3(name, type1, arg1, type2, arg2, \ + type3, arg3) \ + DTRACE_PROBE3(__nfsv3_##name, type1, arg1, type2, arg2, \ + type3, arg3); +#define DTRACE_NFSV3_4(name, type1, arg1, type2, arg2, \ + type3, arg3, type4, arg4) \ + DTRACE_PROBE4(__nfsv3_##name, type1, arg1, type2, arg2, \ + type3, arg3, type4, arg4); + #define DTRACE_NFSV4_1(name, type1, arg1) \ DTRACE_PROBE1(__nfsv4_##name, type1, arg1); |