Print this page
    
NEX-16712 NFS dtrace providers do not support per-share filtering
Reviewed by: Evan Layton <evan.layton@nexenta.com>
Reviewed by: Gordon Ross <gordon.ross@nexenta.com>
Reviewed by: Yuri Pankon <yuri.pankov@nexenta.com>
    
      
        | Split | 
	Close | 
      
      | Expand all | 
      | Collapse all | 
    
    
          --- old/usr/src/cmd/fs.d/nfs/Makefile
          +++ new/usr/src/cmd/fs.d/nfs/Makefile
   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.
  15   15  # If applicable, add the following below this CDDL HEADER, with the
  
    | 
      ↓ open down ↓ | 
    15 lines elided | 
    
      ↑ open up ↑ | 
  
  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 2009 Sun Microsystems, Inc.  All rights reserved.
  24   24  # Use is subject to license terms.
  25   25  #
       26 +# Copyright 2018 Nexenta Systems, Inc.  All rights reserved.
       27 +#
  26   28  # cmd/fs.d/nfs/Makefile
  27   29  #
  28   30  #  cmd/fs.d/nfs is the directory of all nfs specific commands
  29   31  #  whose executable reside in $(INSDIR1) and $(INSDIR2).
  30   32  #
  31   33  
  32   34  include $(SRC)/Makefile.master
  33   35  
  34   36  SUBDIR1=        exportfs nfsd rquotad \
  35   37                  statd nfsstat mountd dfshares \
  36      -                nfsfind nfs4cbd share tests
       38 +                nfsfind nfs4cbd share tests dtrace
  37   39  
  38   40  # These do "make catalog"
  39   41  SUBDIR2=        clear_locks lockd umount showmount \
  40   42                  mount dfmounts nfslog nfsmapid \
  41   43                  nfsref rp_basic
  42   44  
  43   45  SUBDIR3=        etc svc
  44   46  SUBDIRS=        $(SUBDIR1) $(SUBDIR2) $(SUBDIR3)
  45   47  
  46   48  # for messaging catalog files
  47   49  #
  48   50  POFILES=        $(SUBDIR2:%=%/%.po)
  49   51  POFILE=         nfs.po
  50   52  
  51   53  all:=           TARGET= all
  52   54  install:=       TARGET= install
  53   55  clean:=         TARGET= clean
  54   56  clobber:=       TARGET= clobber
  55   57  lint:=          TARGET= lint
  56   58  catalog:=       TARGET= catalog
  57   59  
  58   60  .KEEP_STATE:
  59   61  
  60   62  .PARALLEL:      $(SUBDIRS)
  61   63  
  62   64  all install clean clobber lint: $(SUBDIRS)
  63   65  
  64   66  catalog: $(SUBDIR2)
  65   67          $(RM) $(POFILE)
  66   68          cat $(POFILES) > $(POFILE)
  67   69  
  68   70  $(SUBDIRS): FRC
  69   71          @cd $@; pwd; $(MAKE) $(TARGET)
  70   72  
  71   73  FRC:
  
    | 
      ↓ open down ↓ | 
    25 lines elided | 
    
      ↑ open up ↑ | 
  
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX