• E
    net: speedup skb_splice_bits() · 41c73a0d
    Eric Dumazet 提交于
    Commit 35f3d14d (pipe: add support for shrinking and growing pipes)
    added a slowdown for splice(socket -> pipe), as we might grow the spd
    used in skb_splice_bits() for each skb we process in splice() syscall.
    
    Its not needed since skb lengths are capped. The default on-stack arrays
    are more than enough.
    
    Use MAX_SKB_FRAGS instead of PIPE_DEF_BUFFERS to describe the reasonable
    limit per skb.
    
    Add coalescing support to help splicing of GRO skbs built from linear
    skbs (linked into frag_list)
    Signed-off-by: NEric Dumazet <edumazet@google.com>
    Cc: Jens Axboe <axboe@kernel.dk>
    Cc: Tom Herbert <therbert@google.com>
    Signed-off-by: NDavid S. Miller <davem@davemloft.net>
    41c73a0d
skbuff.c 81.4 KB