The following changes since commit 03a3a62fbd0aa5227e978eef3c67d3978aec9e5f:
Merge tag 'for-upstream' of https://gitlab.com/bonzini/qemu into staging (2023-09-07 10:29:06 -0400) are available in the git repository at: https://github.com/jasowang/qemu.git tags/net-pull-request for you to fetch changes up to 049cfda145e96b2605cdf9739f1bcf9ebf3a83e1: ebpf: Updated eBPF program and skeleton. (2023-09-08 14:33:46 +0800) ---------------------------------------------------------------- ---------------------------------------------------------------- Andrew Melnychenko (7): tap: Add USO support to tap device. virtio-net: Add USO flags to vhost support. ebpf: Added eBPF map update through mmap. ebpf: Added eBPF initialization by fds. virtio-net: Added property to load eBPF RSS with fds. qmp: Added new command to retrieve eBPF blob. ebpf: Updated eBPF program and skeleton. Ilya Maximets (1): net: add initial support for AF_XDP network backend Tomasz Dzieciol (7): igb: remove TCP ACK detection igb: rename E1000E_RingInfo_st igb: RX descriptors guest writting refactoring igb: RX payload guest writting refactoring igb: add IPv6 extended headers traffic detection igb: packet-split descriptors support e1000e: rename e1000e_ba_state and e1000e_write_hdr_to_rx_buffers Yuri Benditovich (2): tap: Add check for USO features virtio-net: Add support for USO features MAINTAINERS | 4 + ebpf/ebpf.c | 70 ++ ebpf/ebpf.h | 31 + ebpf/ebpf_rss-stub.c | 6 + ebpf/ebpf_rss.c | 150 ++- ebpf/ebpf_rss.h | 10 + ebpf/meson.build | 2 +- ebpf/rss.bpf.skeleton.h | 1460 ++++++++++++----------- hmp-commands.hx | 3 + hw/core/machine.c | 4 + hw/net/e1000e_core.c | 80 +- hw/net/igb_core.c | 732 ++++++++---- hw/net/igb_regs.h | 20 +- hw/net/trace-events | 6 +- hw/net/vhost_net.c | 3 + hw/net/virtio-net.c | 90 +- hw/net/vmxnet3.c | 2 + include/hw/virtio/virtio-net.h | 1 + include/net/net.h | 7 +- meson.build | 19 +- meson_options.txt | 2 + net/af-xdp.c | 526 ++++++++ net/clients.h | 5 + net/meson.build | 3 + net/net.c | 19 +- net/tap-bsd.c | 7 +- net/tap-linux.c | 27 +- net/tap-linux.h | 2 + net/tap-solaris.c | 7 +- net/tap-stub.c | 7 +- net/tap-win32.c | 2 +- net/tap.c | 18 +- net/tap_int.h | 4 +- net/vhost-vdpa.c | 3 + qapi/ebpf.json | 66 + qapi/meson.build | 1 + qapi/net.json | 58 + qapi/qapi-schema.json | 1 + qemu-options.hx | 70 +- scripts/ci/org.centos/stream/8/x86_64/configure | 1 + scripts/meson-buildoptions.sh | 3 + tests/docker/dockerfiles/debian-amd64.docker | 1 + tests/qtest/libqos/igb.c | 5 + tools/ebpf/rss.bpf.c | 5 +- 44 files changed, 2518 insertions(+), 1025 deletions(-) create mode 100644 ebpf/ebpf.c create mode 100644 ebpf/ebpf.h create mode 100644 net/af-xdp.c create mode 100644 qapi/ebpf.json