[PR #105] [CLOSED] V3migration for review #186

Open
opened 2026-01-31 21:30:10 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/qemu/qemu/pull/105
Author: @ybendito
Created: 1/24/2021
Status: Closed

Base: masterHead: v3migration


📝 Commits (8)

  • bf77f10 net/tap: Added TUNSETSTEERINGEBPF code.
  • 1a30cd2 net: Added SetSteeringEBPF method for NetClientState.
  • ce02ac2 ebpf: Added eBPF RSS program.
  • a001b46 ebpf: Added eBPF RSS loader.
  • d3b2246 net: add ability to hide (disable) vhost_net
  • 4d0508a virtio-net: Added eBPF RSS to virtio-net.
  • fde4312 docs: Added eBPF documentation.
  • 8cbb426 not for delivery: testing additions for virtio-net

📊 Changes

25 files changed (+1580 additions, -14 deletions)

View changed files

📝 MAINTAINERS (+8 -0)
📝 configure (+33 -0)
docs/ebpf_rss.rst (+125 -0)
ebpf/ebpf_rss-stub.c (+40 -0)
ebpf/ebpf_rss.c (+165 -0)
ebpf/ebpf_rss.h (+44 -0)
ebpf/meson.build (+1 -0)
ebpf/rss.bpf.skeleton.h (+397 -0)
ebpf/trace-events (+4 -0)
ebpf/trace.h (+2 -0)
📝 hw/net/vhost_net.c (+5 -1)
📝 hw/net/virtio-net.c (+155 -13)
📝 include/hw/virtio/virtio-net.h (+6 -0)
📝 include/net/net.h (+3 -0)
📝 meson.build (+13 -0)
📝 net/tap-bsd.c (+5 -0)
📝 net/tap-linux.c (+13 -0)
📝 net/tap-linux.h (+1 -0)
📝 net/tap-solaris.c (+5 -0)
📝 net/tap-stub.c (+5 -0)

...and 5 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/qemu/qemu/pull/105 **Author:** [@ybendito](https://github.com/ybendito) **Created:** 1/24/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `v3migration` --- ### 📝 Commits (8) - [`bf77f10`](https://github.com/qemu/qemu/commit/bf77f1012985abd1e3ff8afeec46944fd659ea9a) net/tap: Added TUNSETSTEERINGEBPF code. - [`1a30cd2`](https://github.com/qemu/qemu/commit/1a30cd2359fb9fff71b80666b8f0ee550cbcda13) net: Added SetSteeringEBPF method for NetClientState. - [`ce02ac2`](https://github.com/qemu/qemu/commit/ce02ac29b64a3bc762a5188c49048b1147cd5c88) ebpf: Added eBPF RSS program. - [`a001b46`](https://github.com/qemu/qemu/commit/a001b46ea2da186bfb1aa42980eb294ca5d11f6e) ebpf: Added eBPF RSS loader. - [`d3b2246`](https://github.com/qemu/qemu/commit/d3b22462a718181db796f10409298c4436f08ddb) net: add ability to hide (disable) vhost_net - [`4d0508a`](https://github.com/qemu/qemu/commit/4d0508a36e356c25137c0d630fd943fe8c05bac4) virtio-net: Added eBPF RSS to virtio-net. - [`fde4312`](https://github.com/qemu/qemu/commit/fde431271c51de15e7c1d6a389f1d738647904ea) docs: Added eBPF documentation. - [`8cbb426`](https://github.com/qemu/qemu/commit/8cbb42610cbc7579eddc531f23350758de9e4aae) not for delivery: testing additions for virtio-net ### 📊 Changes **25 files changed** (+1580 additions, -14 deletions) <details> <summary>View changed files</summary> 📝 `MAINTAINERS` (+8 -0) 📝 `configure` (+33 -0) ➕ `docs/ebpf_rss.rst` (+125 -0) ➕ `ebpf/ebpf_rss-stub.c` (+40 -0) ➕ `ebpf/ebpf_rss.c` (+165 -0) ➕ `ebpf/ebpf_rss.h` (+44 -0) ➕ `ebpf/meson.build` (+1 -0) ➕ `ebpf/rss.bpf.skeleton.h` (+397 -0) ➕ `ebpf/trace-events` (+4 -0) ➕ `ebpf/trace.h` (+2 -0) 📝 `hw/net/vhost_net.c` (+5 -1) 📝 `hw/net/virtio-net.c` (+155 -13) 📝 `include/hw/virtio/virtio-net.h` (+6 -0) 📝 `include/net/net.h` (+3 -0) 📝 `meson.build` (+13 -0) 📝 `net/tap-bsd.c` (+5 -0) 📝 `net/tap-linux.c` (+13 -0) 📝 `net/tap-linux.h` (+1 -0) 📝 `net/tap-solaris.c` (+5 -0) 📝 `net/tap-stub.c` (+5 -0) _...and 5 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-31 21:30:10 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/qemu#186