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

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/sys/sdt.h
          +++ new/usr/src/uts/common/sys/sdt.h
↓ open down ↓ 13 lines elided ↑ open up ↑
  14   14   * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15   15   * If applicable, add the following below this CDDL HEADER, with the
  16   16   * fields enclosed by brackets "[]" replaced with your own identifying
  17   17   * information: Portions Copyright [yyyy] [name of copyright owner]
  18   18   *
  19   19   * CDDL HEADER END
  20   20   */
  21   21  /*
  22   22   * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
  23   23   * Copyright (c) 2013 by Delphix. All rights reserved.
  24      - * Copyright 2017 Nexenta Systems, Inc.  All rights reserved.
       24 + * Copyright 2018 Nexenta Systems, Inc.  All rights reserved.
  25   25   */
  26   26  
  27   27  #ifndef _SYS_SDT_H
  28   28  #define _SYS_SDT_H
  29   29  
  30   30  #include <sys/stdint.h>
  31   31  
  32   32  #ifdef  __cplusplus
  33   33  extern "C" {
  34   34  #endif
↓ open down ↓ 189 lines elided ↑ open up ↑
 224  224      type3, arg3, type4, arg4, type5, arg5, type6, arg6,                 \
 225  225      type7, arg7, type8, arg8)                                           \
 226  226          DTRACE_PROBE8(__iscsi_##name, type1, arg1, type2, arg2,         \
 227  227              type3, arg3, type4, arg4, type5, arg5, type6, arg6,         \
 228  228              type7, arg7, type8, arg8);
 229  229  
 230  230  #define DTRACE_NFSV3_3(name, type1, arg1, type2, arg2,                  \
 231  231      type3, arg3)                                                        \
 232  232          DTRACE_PROBE3(__nfsv3_##name, type1, arg1, type2, arg2,         \
 233  233              type3, arg3);
      234 +
 234  235  #define DTRACE_NFSV3_4(name, type1, arg1, type2, arg2,                  \
 235  236      type3, arg3, type4, arg4)                                           \
 236  237          DTRACE_PROBE4(__nfsv3_##name, type1, arg1, type2, arg2,         \
 237  238              type3, arg3, type4, arg4);
 238  239  
      240 +#define DTRACE_NFSV3_5(name, type1, arg1, type2, arg2,                  \
      241 +    type3, arg3, type4, arg4, type5, arg5)                              \
      242 +        DTRACE_PROBE5(__nfsv3_##name, type1, arg1, type2, arg2,         \
      243 +            type3, arg3, type4, arg4, type5, arg5);
      244 +
 239  245  #define DTRACE_NFSV4_1(name, type1, arg1) \
 240  246          DTRACE_PROBE1(__nfsv4_##name, type1, arg1);
 241  247  
 242  248  #define DTRACE_NFSV4_2(name, type1, arg1, type2, arg2) \
 243  249          DTRACE_PROBE2(__nfsv4_##name, type1, arg1, type2, arg2);
 244  250  
 245  251  #define DTRACE_NFSV4_3(name, type1, arg1, type2, arg2, type3, arg3) \
 246  252          DTRACE_PROBE3(__nfsv4_##name, type1, arg1, type2, arg2, type3, arg3);
 247  253  
 248  254  /*
↓ open down ↓ 201 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX