• T
    veth: Add ndo_xdp_xmit · af87a3aa
    Toshiaki Makita 提交于
    This allows NIC's XDP to redirect packets to veth. The destination veth
    device enqueues redirected packets to the napi ring of its peer, then
    they are processed by XDP on its peer veth device.
    This can be thought as calling another XDP program by XDP program using
    REDIRECT, when the peer enables driver XDP.
    
    Note that when the peer veth device does not set driver xdp, redirected
    packets will be dropped because the peer is not ready for NAPI.
    
    v4:
    - Don't use xdp_ok_fwd_dev() because checking IFF_UP is not necessary.
      Add comments about it and check only MTU.
    
    v2:
    - Drop the part converting xdp_frame into skb when XDP is not enabled.
    - Implement bulk interface of ndo_xdp_xmit.
    - Implement XDP_XMIT_FLUSH bit and drop ndo_xdp_flush.
    Signed-off-by: NToshiaki Makita <makita.toshiaki@lab.ntt.co.jp>
    Acked-by: NJohn Fastabend <john.fastabend@gmail.com>
    Signed-off-by: NDaniel Borkmann <daniel@iogearbox.net>
    af87a3aa
veth.c 23.4 KB