[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 1/5] hw/net: fix typo s/epbf/ebpf/ in virtio-net
From: |
Daniel P . Berrangé |
Subject: |
[PATCH 1/5] hw/net: fix typo s/epbf/ebpf/ in virtio-net |
Date: |
Tue, 6 Aug 2024 15:56:49 +0100 |
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
---
hw/net/virtio-net.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/hw/net/virtio-net.c b/hw/net/virtio-net.c
index 08aa0b65e3..e5ff3e4b18 100644
--- a/hw/net/virtio-net.c
+++ b/hw/net/virtio-net.c
@@ -1253,7 +1253,7 @@ static void rss_data_to_rss_config(struct
VirtioNetRssData *data,
config->default_queue = data->default_queue;
}
-static bool virtio_net_attach_epbf_rss(VirtIONet *n)
+static bool virtio_net_attach_ebpf_rss(VirtIONet *n)
{
struct EBPFRSSConfig config = {};
@@ -1275,7 +1275,7 @@ static bool virtio_net_attach_epbf_rss(VirtIONet *n)
return true;
}
-static void virtio_net_detach_epbf_rss(VirtIONet *n)
+static void virtio_net_detach_ebpf_rss(VirtIONet *n)
{
virtio_net_attach_ebpf_to_backend(n->nic, -1);
}
@@ -1285,8 +1285,8 @@ static void virtio_net_commit_rss_config(VirtIONet *n)
if (n->rss_data.enabled) {
n->rss_data.enabled_software_rss = n->rss_data.populate_hash;
if (n->rss_data.populate_hash) {
- virtio_net_detach_epbf_rss(n);
- } else if (!virtio_net_attach_epbf_rss(n)) {
+ virtio_net_detach_ebpf_rss(n);
+ } else if (!virtio_net_attach_ebpf_rss(n)) {
if (get_vhost_net(qemu_get_queue(n->nic)->peer)) {
warn_report("Can't load eBPF RSS for vhost");
} else {
@@ -1299,7 +1299,7 @@ static void virtio_net_commit_rss_config(VirtIONet *n)
n->rss_data.indirections_len,
sizeof(n->rss_data.key));
} else {
- virtio_net_detach_epbf_rss(n);
+ virtio_net_detach_ebpf_rss(n);
trace_virtio_net_rss_disable();
}
}
--
2.45.2
[PATCH 5/5] ebpf: improve trace event coverage to all key operations, Daniel P . Berrangé, 2024/08/06