Print this page


Split Close
Expand all
Collapse all
          --- old/usr/src/uts/common/inet/tcp_impl.h
          +++ new/usr/src/uts/common/inet/tcp_impl.h
↓ open down ↓ 53 lines elided ↑ open up ↑
  54   54  
  55   55  extern sock_downcalls_t sock_tcp_downcalls;
  56   56  
  57   57  /*
  58   58   * Note that by default, the _snd_lowat_fraction tunable controls the value of
  59   59   * the transmit low water mark.  TCP_XMIT_LOWATER (and thus the _xmit_lowat
  60   60   * property) is only used if the administrator has disabled _snd_lowat_fraction
  61   61   * by setting it to 0.
  62   62   */
  63   63  #define TCP_XMIT_LOWATER        4096
  64      -#define TCP_XMIT_HIWATER        128000
       64 +#define TCP_XMIT_HIWATER        49152
  65   65  #define TCP_RECV_LOWATER        2048
  66      -#define TCP_RECV_HIWATER        1048576
       66 +#define TCP_RECV_HIWATER        128000
  67   67  
  68   68  /*
  69   69   * Bind hash list size and has function.  It has to be a power of 2 for
  70   70   * hashing.
  71   71   */
  72   72  #define TCP_BIND_FANOUT_SIZE    1024
  73   73  #define TCP_BIND_HASH(lport) (ntohs(lport) & (TCP_BIND_FANOUT_SIZE - 1))
  74   74  
  75   75  /*
  76   76   * This implementation follows the 4.3BSD interpretation of the urgent
↓ open down ↓ 725 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX