From: Jason Wang <jasowang@redhat.com>
To: qemu-devel@nongnu.org, peter.maydell@linaro.org
Cc: Jason Wang <jasowang@redhat.com>
Subject: [PULL 0/8] Net patches
Date: Tue, 12 Mar 2024 19:36:34 +0800 [thread overview]
Message-ID: <20240312113642.36862-1-jasowang@redhat.com> (raw)
The following changes since commit 05ec974671200814fa5c1d5db710e0e4b88a40af:
Merge tag 'm68k-for-9.0-pull-request' of https://github.com/vivier/qemu-m68k into staging (2024-03-11 18:42:53 +0000)
are available in the Git repository at:
https://github.com/jasowang/qemu.git tags/net-pull-request
for you to fetch changes up to 0cc14182aba961f4c34a21dd202ce6e4a87470f5:
ebpf: Updated eBPF program and skeleton. (2024-03-12 19:31:47 +0800)
----------------------------------------------------------------
-----BEGIN PGP SIGNATURE-----
iQEzBAABCAAdFiEEIV1G9IJGaJ7HfzVi7wSWWzmNYhEFAmXwPUAACgkQ7wSWWzmN
YhFnIwgAgctDniJwlRxXB01eVlzXz7IulHnpSby07XEJxENSpGB8ufaeE4eK5gJy
NVK6C2+1EU2vRxm4oIdcvtN4C4/jtRbYYjiSTx7eE4FmSkqshSnR5XCV72LDqG3i
WbzInjMvYfysmcMXLfrWgxOnVew9WqEzlpEWlc7FfNKnkzBVf+JDztfqCUx0XM7H
qefw4ImjqQw993QxJpipXC7aEGUyouB0RIBB71FkCa9ihlh9x7W68evbOI/jTn5q
HWuStgS02sKHjRFliMbdbMY77FNUz4Yroo/GKSvGt64atxkQSJqPNAV+/9n18LNy
QAH5eK6cXFPOIAaYpADU5kHDVVAFiw==
=iBdx
-----END PGP SIGNATURE-----
----------------------------------------------------------------
Andrew Melnychenko (5):
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.
Laurent Vivier (2):
igb: fix link state on resume
e1000e: fix link state on resume
Nick Briggs (1):
Avoid unaligned fetch in ladr_match()
ebpf/ebpf.c | 69 +++
ebpf/ebpf.h | 29 +
ebpf/ebpf_rss-stub.c | 6 +
ebpf/ebpf_rss.c | 149 ++++-
ebpf/ebpf_rss.h | 10 +
ebpf/meson.build | 2 +-
ebpf/rss.bpf.skeleton.h | 1343 ++++++++++++++++++++--------------------
ebpf/trace.h | 1 -
hw/net/e1000e_core.c | 60 +-
hw/net/e1000e_core.h | 2 -
hw/net/igb_core.c | 51 +-
hw/net/igb_core.h | 2 -
hw/net/pcnet.c | 2 +-
hw/net/virtio-net.c | 54 +-
include/hw/virtio/virtio-net.h | 2 +
meson.build | 10 +-
qapi/ebpf.json | 66 ++
qapi/meson.build | 1 +
qapi/qapi-schema.json | 1 +
tools/ebpf/rss.bpf.c | 7 +-
20 files changed, 1058 insertions(+), 809 deletions(-)
create mode 100644 ebpf/ebpf.c
create mode 100644 ebpf/ebpf.h
delete mode 100644 ebpf/trace.h
create mode 100644 qapi/ebpf.json
next reply other threads:[~2024-03-12 11:37 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-03-12 11:36 Jason Wang [this message]
2024-03-12 11:36 ` [PULL 1/8] igb: fix link state on resume Jason Wang
2024-03-12 11:36 ` [PULL 2/8] e1000e: " Jason Wang
2024-03-12 11:36 ` [PULL 3/8] Avoid unaligned fetch in ladr_match() Jason Wang
2024-03-12 11:36 ` [PULL 4/8] ebpf: Added eBPF map update through mmap Jason Wang
2024-03-12 11:36 ` [PULL 5/8] ebpf: Added eBPF initialization by fds Jason Wang
2024-03-12 11:36 ` [PULL 6/8] virtio-net: Added property to load eBPF RSS with fds Jason Wang
2024-03-12 11:36 ` [PULL 7/8] qmp: Added new command to retrieve eBPF blob Jason Wang
2024-03-12 11:36 ` [PULL 8/8] ebpf: Updated eBPF program and skeleton Jason Wang
2024-03-12 16:29 ` [PULL 0/8] Net patches Peter Maydell
2024-03-12 17:56 ` Michael Tokarev
2024-03-13 6:43 ` Jason Wang
-- strict thread matches above, loose matches on Subject: below --
2024-08-02 3:19 Jason Wang
2024-08-02 9:48 ` Richard Henderson
2024-08-05 2:38 ` Jason Wang
2024-08-05 22:00 ` Richard Henderson
2022-09-27 7:30 Jason Wang
2022-09-27 18:40 ` Stefan Hajnoczi
2022-05-18 3:12 Jason Wang
2022-05-18 14:10 ` Richard Henderson
2022-02-14 3:59 Jason Wang
2022-02-15 13:51 ` Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240312113642.36862-1-jasowang@redhat.com \
--to=jasowang@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).