Print this page
11083 support NFS server in zone
Portions contributed by: Dan Kruchinin <dan.kruchinin@nexenta.com>
Portions contributed by: Stepan Zastupov <stepan.zastupov@gmail.com>
Portions contributed by: Joyce McIntosh <joyce.mcintosh@nexenta.com>
Portions contributed by: Mike Zeller <mike@mikezeller.net>
Portions contributed by: Dan McDonald <danmcd@joyent.com>
Portions contributed by: Gordon Ross <gordon.w.ross@gmail.com>
Portions contributed by: Vitaliy Gusev <gusev.vitaliy@gmail.com>
Reviewed by: Rick McNeal <rick.mcneal@nexenta.com>
Reviewed by: Rob Gittins <rob.gittins@nexenta.com>
Reviewed by: Sanjay Nadkarni <sanjay.nadkarni@nexenta.com>
Reviewed by: Jason King <jbk@joyent.com>
Reviewed by: C Fraire <cfraire@me.com>
Change-Id: I22f289d357503f9b48a0bc2482cc4328a6d43d16
@@ -19,11 +19,11 @@
* CDDL HEADER END
*/
/*
* Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2013 by Delphix. All rights reserved.
- * Copyright 2017 Nexenta Systems, Inc. All rights reserved.
+ * Copyright 2018 Nexenta Systems, Inc. All rights reserved.
*/
#ifndef _SYS_SDT_H
#define _SYS_SDT_H
@@ -229,15 +229,21 @@
#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_NFSV3_5(name, type1, arg1, type2, arg2, \
+ type3, arg3, type4, arg4, type5, arg5) \
+ DTRACE_PROBE5(__nfsv3_##name, type1, arg1, type2, arg2, \
+ type3, arg3, type4, arg4, type5, arg5);
+
#define DTRACE_NFSV4_1(name, type1, arg1) \
DTRACE_PROBE1(__nfsv4_##name, type1, arg1);
#define DTRACE_NFSV4_2(name, type1, arg1, type2, arg2) \
DTRACE_PROBE2(__nfsv4_##name, type1, arg1, type2, arg2);