Print this page
DLPX-25998 TCP congestion control is inadequate
Reviewed at: http://reviews.delphix.com/r/34808/

Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/Makefile.rules
          +++ new/usr/src/uts/common/Makefile.rules
↓ open down ↓ 17 lines elided ↑ open up ↑
  18   18  #
  19   19  # CDDL HEADER END
  20   20  #
  21   21  
  22   22  #
  23   23  # Copyright (c) 1991, 2010, Oracle and/or its affiliates. All rights reserved.
  24   24  # Copyright 2016 Garrett D'Amore <garrett@damore.org>
  25   25  # Copyright 2013 Saso Kiselkov. All rights reserved.
  26   26  # Copyright 2017 Joyent, Inc.
  27   27  # Copyright 2016 Nexenta Systems, Inc.
  28      -# Copyright (c) 2016 by Delphix. All rights reserved.
       28 +# Copyright (c) 2017 by Delphix. All rights reserved.
  29   29  #
  30   30  
  31   31  #
  32   32  # uts/common/Makefile.rules
  33   33  #
  34   34  #       This Makefile defines all the file build rules for the directory
  35   35  # uts/common and its children. These are the source files which may
  36   36  # be considered common to all SunOS systems.
  37   37  #
  38   38  #       The following two-level ordering must be maintained in this file.
↓ open down ↓ 520 lines elided ↑ open up ↑
 559  559          $(CTFCONVERT_O)
 560  560  
 561  561  $(OBJS_DIR)/%.o:                $(UTSBASE)/common/inet/sockmods/%.c
 562  562          $(COMPILE.c) -o $@ $<
 563  563          $(CTFCONVERT_O)
 564  564  
 565  565  $(OBJS_DIR)/%.o:                $(UTSBASE)/common/inet/dlpistub/%.c
 566  566          $(COMPILE.c) -o $@ $<
 567  567          $(CTFCONVERT_O)
 568  568  
      569 +$(OBJS_DIR)/%.o:                $(UTSBASE)/common/inet/cc/%.c
      570 +        $(COMPILE.c) -o $@ $<
      571 +        $(CTFCONVERT_O)
      572 +
 569  573  $(OBJS_DIR)/%.o:                $(UTSBASE)/common/io/%.c
 570  574          $(COMPILE.c) -o $@ $<
 571  575          $(CTFCONVERT_O)
 572  576  
 573  577  $(OBJS_DIR)/%.o:                $(UTSBASE)/common/io/1394/%.c
 574  578          $(COMPILE.c) -o $@ $<
 575  579          $(CTFCONVERT_O)
 576  580  
 577  581  $(OBJS_DIR)/%.o:                $(UTSBASE)/common/io/1394/adapters/%.c
 578  582          $(COMPILE.c) -o $@ $<
↓ open down ↓ 1477 lines elided ↑ open up ↑
2056 2060  
2057 2061  $(LINTS_DIR)/%.ln:              $(UTSBASE)/common/inet/ilb/%.c
2058 2062          @($(LHEAD) $(LINT.c) $< $(LTAIL))
2059 2063  
2060 2064  $(LINTS_DIR)/%.ln:              $(UTSBASE)/common/inet/nca/%.c
2061 2065          @($(LHEAD) $(LINT.c) $< $(LTAIL))
2062 2066  
2063 2067  $(LINTS_DIR)/%.ln:              $(UTSBASE)/common/inet/dlpistub/%.c
2064 2068          @($(LHEAD) $(LINT.c) $< $(LTAIL))
2065 2069  
     2070 +$(LINTS_DIR)/%.ln:              $(UTSBASE)/common/inet/cc/%.c
     2071 +        @($(LHEAD) $(LINT.c) $< $(LTAIL))
     2072 +
2066 2073  $(LINTS_DIR)/%.ln:              $(UTSBASE)/common/io/%.c
2067 2074          @($(LHEAD) $(LINT.c) $< $(LTAIL))
2068 2075  
2069 2076  $(LINTS_DIR)/%.ln:              $(UTSBASE)/common/font/%.c
2070 2077          @($(LHEAD) $(LINT.c) $< $(LTAIL))
2071 2078  
2072 2079  $(LINTS_DIR)/%.ln:              $(UTSBASE)/common/io/1394/%.c
2073 2080          @($(LHEAD) $(LINT.c) $< $(LTAIL))
2074 2081  
2075 2082  $(LINTS_DIR)/%.ln:              $(UTSBASE)/common/io/1394/adapters/%.c
↓ open down ↓ 818 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX