~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/testing/selftests/net/packetdrill/defaults.sh

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /tools/testing/selftests/net/packetdrill/defaults.sh (Architecture i386) and /tools/testing/selftests/net/packetdrill/defaults.sh (Architecture m68k)


  1 #!/bin/bash                                         1 #!/bin/bash
  2 # SPDX-License-Identifier: GPL-2.0                  2 # SPDX-License-Identifier: GPL-2.0
  3 #                                                   3 #
  4 # Set standard production config values that r      4 # Set standard production config values that relate to TCP behavior.
  5                                                     5 
  6 # Flush old cached data (fastopen cookies).         6 # Flush old cached data (fastopen cookies).
  7 ip tcp_metrics flush all > /dev/null 2>&1           7 ip tcp_metrics flush all > /dev/null 2>&1
  8                                                     8 
  9 # TCP min, default, and max receive and send b      9 # TCP min, default, and max receive and send buffer sizes.
 10 sysctl -q net.ipv4.tcp_rmem="4096 540000 $((15     10 sysctl -q net.ipv4.tcp_rmem="4096 540000 $((15*1024*1024))"
 11 sysctl -q net.ipv4.tcp_wmem="4096 $((256*1024)     11 sysctl -q net.ipv4.tcp_wmem="4096 $((256*1024)) 4194304"
 12                                                    12 
 13 # TCP timestamps.                                  13 # TCP timestamps.
 14 sysctl -q net.ipv4.tcp_timestamps=1                14 sysctl -q net.ipv4.tcp_timestamps=1
 15                                                    15 
 16 # TCP SYN(ACK) retry thresholds                    16 # TCP SYN(ACK) retry thresholds
 17 sysctl -q net.ipv4.tcp_syn_retries=5               17 sysctl -q net.ipv4.tcp_syn_retries=5
 18 sysctl -q net.ipv4.tcp_synack_retries=5            18 sysctl -q net.ipv4.tcp_synack_retries=5
 19                                                    19 
 20 # TCP Forward RTO-Recovery, RFC 5682.              20 # TCP Forward RTO-Recovery, RFC 5682.
 21 sysctl -q net.ipv4.tcp_frto=2                      21 sysctl -q net.ipv4.tcp_frto=2
 22                                                    22 
 23 # TCP Selective Acknowledgements (SACK)            23 # TCP Selective Acknowledgements (SACK)
 24 sysctl -q net.ipv4.tcp_sack=1                      24 sysctl -q net.ipv4.tcp_sack=1
 25                                                    25 
 26 # TCP Duplicate Selective Acknowledgements (DS     26 # TCP Duplicate Selective Acknowledgements (DSACK)
 27 sysctl -q net.ipv4.tcp_dsack=1                     27 sysctl -q net.ipv4.tcp_dsack=1
 28                                                    28 
 29 # TCP FACK (Forward Acknowldgement)                29 # TCP FACK (Forward Acknowldgement)
 30 sysctl -q net.ipv4.tcp_fack=0                      30 sysctl -q net.ipv4.tcp_fack=0
 31                                                    31 
 32 # TCP reordering degree ("dupthresh" threshold     32 # TCP reordering degree ("dupthresh" threshold for entering Fast Recovery).
 33 sysctl -q net.ipv4.tcp_reordering=3                33 sysctl -q net.ipv4.tcp_reordering=3
 34                                                    34 
 35 # TCP congestion control.                          35 # TCP congestion control.
 36 sysctl -q net.ipv4.tcp_congestion_control=cubi     36 sysctl -q net.ipv4.tcp_congestion_control=cubic
 37                                                    37 
 38 # TCP slow start after idle.                       38 # TCP slow start after idle.
 39 sysctl -q net.ipv4.tcp_slow_start_after_idle=0     39 sysctl -q net.ipv4.tcp_slow_start_after_idle=0
 40                                                    40 
 41 # TCP RACK and TLP.                                41 # TCP RACK and TLP.
 42 sysctl -q net.ipv4.tcp_early_retrans=4 net.ipv     42 sysctl -q net.ipv4.tcp_early_retrans=4 net.ipv4.tcp_recovery=1
 43                                                    43 
 44 # TCP method for deciding when to defer sendin     44 # TCP method for deciding when to defer sending to accumulate big TSO packets.
 45 sysctl -q net.ipv4.tcp_tso_win_divisor=3           45 sysctl -q net.ipv4.tcp_tso_win_divisor=3
 46                                                    46 
 47 # TCP Explicit Congestion Notification (ECN)       47 # TCP Explicit Congestion Notification (ECN)
 48 sysctl -q net.ipv4.tcp_ecn=0                       48 sysctl -q net.ipv4.tcp_ecn=0
 49                                                    49 
 50 sysctl -q net.ipv4.tcp_pacing_ss_ratio=200         50 sysctl -q net.ipv4.tcp_pacing_ss_ratio=200
 51 sysctl -q net.ipv4.tcp_pacing_ca_ratio=120         51 sysctl -q net.ipv4.tcp_pacing_ca_ratio=120
 52 sysctl -q net.ipv4.tcp_notsent_lowat=429496729     52 sysctl -q net.ipv4.tcp_notsent_lowat=4294967295 > /dev/null 2>&1
 53                                                    53 
 54 sysctl -q net.ipv4.tcp_fastopen=0x70403            54 sysctl -q net.ipv4.tcp_fastopen=0x70403
 55 sysctl -q net.ipv4.tcp_fastopen_key=a1a1a1a1-b     55 sysctl -q net.ipv4.tcp_fastopen_key=a1a1a1a1-b2b2b2b2-c3c3c3c3-d4d4d4d4
 56                                                    56 
 57 sysctl -q net.ipv4.tcp_syncookies=1                57 sysctl -q net.ipv4.tcp_syncookies=1
 58                                                    58 
 59 # Override the default qdisc on the tun device     59 # Override the default qdisc on the tun device.
 60 # Many tests fail with timing errors if the de     60 # Many tests fail with timing errors if the default
 61 # is FQ and that paces their flows.                61 # is FQ and that paces their flows.
 62 tc qdisc add dev tun0 root pfifo                   62 tc qdisc add dev tun0 root pfifo
 63                                                    63 
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php