Print this page
    
NEX-17558 add mdb walker for smbd share cache
Reviewed by: Matt Barden <matt.barden@nexenta.com>
Reviewed by: Joyce McIntosh <joyce.mcintosh@nexenta.com>
NEX-16818 Add fksmbcl development tool
NEX-17264 SMB client test tp_smbutil_013 fails after NEX-14666
Reviewed by: Evan Layton <evan.layton@nexenta.com>
Reviewed by: Matt Barden <matt.barden@nexenta.com>
and: (fix ref leaks)
NEX-4877 want to sync with (external) v8 MDB module
Reviewed by: Gordon Ross <gordon.ross@nexenta.com>
Reviewed by: Steve Peng <steve.peng@nexenta.com>
NEX-4083 Upstream changes from illumos 5917 and 5995
Reviewed by: Matt Barden <matt.barden@nexenta.com>
Reviewed by: Kevin Crowe <kevin.crowe@nexenta.com>
Reviewed by: Yuri Pankov <yuri.pankov@nexenta.com>
SMB-50 User-mode SMB server
 Includes work by these authors:
 Thomas Keiser <thomas.keiser@nexenta.com>
 Albert Lee <trisk@nexenta.com>
Re #9567, Rb 2860. V8 support for mdb
    
      
        | Split | 
	Close | 
      
      | Expand all | 
      | Collapse all | 
    
    
          --- old/usr/src/cmd/mdb/Makefile.common
          +++ new/usr/src/cmd/mdb/Makefile.common
   1    1  #
   2    2  # CDDL HEADER START
   3    3  #
   4    4  # The contents of this file are subject to the terms of the
   5    5  # Common Development and Distribution License (the "License").
   6    6  # You may not use this file except in compliance with the License.
   7    7  #
   8    8  # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
   9    9  # or http://www.opensolaris.org/os/licensing.
  10   10  # See the License for the specific language governing permissions
  11   11  # and limitations under the License.
  12   12  #
  13   13  # When distributing Covered Code, include this CDDL HEADER in each
  14   14  # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  
    | 
      ↓ open down ↓ | 
    14 lines elided | 
    
      ↑ open up ↑ | 
  
  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  #
  23   23  # Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
  24   24  # Copyright 2016 Joyent, Inc.
  25      -# Copyright 2016 Nexenta Systems, Inc.
       25 +# Copyright 2018 Nexenta Systems, Inc.
  26   26  #
  27   27  
  28   28  #
  29   29  # MDB modules used for debugging user processes that every ISA's build
  30   30  # subdirectory will need to build.
  31   31  #
  32   32  
  33   33  COMMON_MODULES_PROC = \
  34   34          dof \
  35   35          libavl \
  36   36          libc \
  37   37          libcmdutils \
       38 +        libfknsmb \
       39 +        libfksmbfs \
  38   40          libfksmbsrv \
       41 +        libmlsvc \
  39   42          libnvpair \
  40   43          libproc \
  41   44          libpython \
  42   45          libsysevent \
  43   46          libtopo \
  44   47          libumem \
  45   48          libuutil \
  46   49          libzpool \
  47   50          mdb_ds \
  48   51          mdb_test
  49   52  
  50   53  #
  51   54  # MDB modules used for debugging user processes which are only 32-bit
  52   55  #
  53   56  COMMON_MODULES_PROC_32BIT = \
  54   57          svc.configd \
  55   58          svc.startd
  56   59  
  57   60  #
  58   61  # MDB modules used for debugging kernels.
  59   62  #
  60   63  COMMON_MODULES_KVM = \
  61   64          arp \
  62   65          cpc \
  63   66          crypto  \
  64   67          dtrace  \
  65   68          emlxs \
  66   69          fcip \
  67   70          fcp \
  68   71          fctl \
  69   72          genunix \
  70   73          hook \
  71   74          neti \
  72   75          idm \
  73   76          ii \
  74   77          ip \
  75   78          ipc \
  76   79          ipp \
  77   80          krtld \
  78   81          lofs \
  79   82          logindmux \
  80   83          mac \
  81   84          mm \
  82   85          mpt_sas \
  83   86          mr_sas \
  84   87          nca \
  85   88          nsctl \
  86   89          nsmb \
  87   90          pmcs \
  88   91          ptm \
  89   92          qlc \
  90   93          random \
  91   94          rdc \
  92   95          s1394 \
  93   96          scsi_vhci \
  94   97          sctp \
  95   98          sd \
  96   99          sdbc \
  97  100          smbfs \
  98  101          smbsrv \
  99  102          sockfs \
 100  103          specfs \
 101  104          sppp \
 102  105          srpt \
 103  106          stmf \
 104  107          stmf_sbd \
 105  108          sv \
 106  109          ufs \
 107  110          usba \
 108  111          zfs
 109  112  
 110  113  CLOSED_COMMON_MODULES_KVM = \
 111  114          mpt \
 112  115          nfs
 113  116  
 114  117  include $(SRC)/Makefile.master
  
    | 
      ↓ open down ↓ | 
    66 lines elided | 
    
      ↑ open up ↑ | 
  
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX