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/sparc/Makefile.sparc
          +++ new/usr/src/uts/sparc/Makefile.sparc
↓ 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) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
  24   24  # Copyright (c) 2013 Andrew Stormont.  All rights reserved.
       25 +# Copyright (c) 2015, 2017 by Delphix. All rights reserved.
  25   26  # Copyright (c) 2015, Joyent, Inc. All rights reserved.
  26   27  # Copyright 2016 Gary Mills
  27   28  # Copyright 2016 Nexenta Systems, Inc.
  28   29  #
  29   30  
  30   31  #
  31   32  #       This makefile contains the common definitions for all sparc
  32   33  #       implementation architecture independent modules.
  33   34  #
  34   35  
↓ open down ↓ 159 lines elided ↑ open up ↑
 194  195  
 195  196  # Comment these out if you don't want dispatcher lock statistics.
 196  197  
 197  198  # $(IF_DEBUG_OBJ)disp_lock.o    := DEBUG_DEFS   += -DDISP_LOCK_STATS
 198  199  
 199  200  #
 200  201  #       Collect the preprocessor definitions to be associated with *all*
 201  202  #       files.
 202  203  #
 203  204  ALL_DEFS         = $(MACHINE_DEFS) $(DEBUG_DEFS) $(OPTION_DEFS)
      205 +
 204  206  #
      207 +#       TCP congestion control modules (/kernel/cc)
 205  208  #
      209 +CC_KMODS       += cc_newreno cc_cubic cc_sunreno
      210 +
      211 +#
      212 +#
 206  213  #       The kernels modules which are "implementation architecture"
 207  214  #       specific for this machine are enumerated below. Note that most
 208  215  #       of these modules must exist (in one form or another) for each
 209  216  #       architecture.
 210  217  #
 211  218  #       Common Drivers (usually pseudo drivers) (/kernel/drv):
 212  219  #
 213  220  DRV_KMODS       += aggr arp audio bl blkdev bofi clone cn conskbd consms cpuid
 214  221  DRV_KMODS       += crypto cryptoadm devinfo dump
 215  222  DRV_KMODS       += dtrace fasttrap fbt lockstat profile sdt systrace dcpc
↓ open down ↓ 292 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX