• Eric Dumazet's avatar
    tcp: optimize tcp internal pacing · 864e5c09
    Eric Dumazet authored
    When TCP implements its own pacing (when no fq packet scheduler is used),
    it is arming high resolution timer after a packet is sent.
    
    But in many cases (like TCP_RR kind of workloads), this high resolution
    timer expires before the application attempts to write the following
    packet. This overhead also happens when the flow is ACK clocked and
    cwnd limited instead of being limited by the pacing rate.
    
    This leads to extra overhead (high number of IRQ)
    
    Now tcp_wstamp_ns is reserved for the pacing timer only
    (after commit "tcp: do not change tcp_wstamp_ns in tcp_mstamp_refresh"),
    we can setup the timer only when a packet is about to be sent,
    and if tcp_wstamp_ns is in the future.
    
    This leads to a ~10% performance increase in TCP_RR workloads.
    Signed-off-by: default avatarEric Dumazet <edumazet@google.com>
    Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
    864e5c09
tcp_output.c 108 KB