mirror of https://github.com/xemu-project/xemu.git
hw/net: fix typo s/epbf/ebpf/ in virtio-net
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> Signed-off-by: Jason Wang <jasowang@redhat.com>
This commit is contained in:
parent
1f37280b37
commit
493a2403c2
|
@ -1254,7 +1254,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 = {};
|
||||
|
||||
|
@ -1276,7 +1276,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);
|
||||
}
|
||||
|
@ -1286,8 +1286,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 {
|
||||
|
@ -1300,7 +1300,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();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue