Skip to content
Snippets Groups Projects
Select Git revision
  • 15aee187436773813b685e3ca162eea13147bd8e
  • master default protected
  • 3.0
  • develop
  • revert-2069-tripleVersion
  • 3.1
  • rest-protocol
  • feat/remoting_rocketmq
  • dapr-support
  • 1.5
  • 1.4
  • 1.3
  • 1.2
  • 1.1
  • v3.0.3-rc2
  • v3.0.3-rc1
  • v3.0.2
  • v1.5.8
  • v1.5.9-rc1
  • v3.0.1
  • v1.5.8-rc1
  • v3.0.0
  • v3.0.0-rc4-1
  • v3.0.0-rc4
  • v3.0.0-rc3
  • v1.5.7
  • v1.5.7-rc2
  • v3.0.0-rc2
  • remove
  • v1.5.7-rc1
  • v3.0.0-rc1
  • v1.5.7-rc1-tmp
  • 1.5.6
  • v1.5.6
34 results

registry_aware_cluster_test.go

Blame
  • tcp_input.c 171.40 KiB
    /*
     * INET		An implementation of the TCP/IP protocol suite for the LINUX
     *		operating system.  INET is implemented using the  BSD Socket
     *		interface as the means of communication with the user level.
     *
     *		Implementation of the Transmission Control Protocol(TCP).
     *
     * Authors:	Ross Biro
     *		Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
     *		Mark Evans, <evansmp@uhura.aston.ac.uk>
     *		Corey Minyard <wf-rch!minyard@relay.EU.net>
     *		Florian La Roche, <flla@stud.uni-sb.de>
     *		Charles Hedrick, <hedrick@klinzhai.rutgers.edu>
     *		Linus Torvalds, <torvalds@cs.helsinki.fi>
     *		Alan Cox, <gw4pts@gw4pts.ampr.org>
     *		Matthew Dillon, <dillon@apollo.west.oic.com>
     *		Arnt Gulbrandsen, <agulbra@nvg.unit.no>
     *		Jorge Cwik, <jorge@laser.satlink.net>
     */
    
    /*
     * Changes:
     *		Pedro Roque	:	Fast Retransmit/Recovery.
     *					Two receive queues.
     *					Retransmit queue handled by TCP.
     *					Better retransmit timer handling.
     *					New congestion avoidance.
     *					Header prediction.
     *					Variable renaming.
     *
     *		Eric		:	Fast Retransmit.
     *		Randy Scott	:	MSS option defines.
     *		Eric Schenk	:	Fixes to slow start algorithm.
     *		Eric Schenk	:	Yet another double ACK bug.
     *		Eric Schenk	:	Delayed ACK bug fixes.
     *		Eric Schenk	:	Floyd style fast retrans war avoidance.
     *		David S. Miller	:	Don't allow zero congestion window.
     *		Eric Schenk	:	Fix retransmitter so that it sends
     *					next packet on ack of previous packet.
     *		Andi Kleen	:	Moved open_request checking here
     *					and process RSTs for open_requests.
     *		Andi Kleen	:	Better prune_queue, and other fixes.
     *		Andrey Savochkin:	Fix RTT measurements in the presence of
     *					timestamps.
     *		Andrey Savochkin:	Check sequence numbers correctly when
     *					removing SACKs due to in sequence incoming
     *					data segments.
     *		Andi Kleen:		Make sure we never ack data there is not
     *					enough room for. Also make this condition
     *					a fatal error if it might still happen.
     *		Andi Kleen:		Add tcp_measure_rcv_mss to make
     *					connections with MSS<min(MTU,ann. MSS)
     *					work without delayed acks.
     *		Andi Kleen:		Process packets with PSH set in the
     *					fast path.
     *		J Hadi Salim:		ECN support
     *	 	Andrei Gurtov,
     *		Pasi Sarolahti,
     *		Panu Kuhlberg:		Experimental audit of TCP (re)transmission
     *					engine. Lots of bugs are found.
     *		Pasi Sarolahti:		F-RTO for dealing with spurious RTOs
     */
    
    #define pr_fmt(fmt) "TCP: " fmt
    
    #include <linux/mm.h>
    #include <linux/slab.h>
    #include <linux/module.h>
    #include <linux/sysctl.h>
    #include <linux/kernel.h>