diff options
author | Laurent Vivier <lvivier@redhat.com> | 2025-07-09 10:24:17 +0200 |
---|---|---|
committer | Jason Wang <jasowang@redhat.com> | 2025-07-14 13:27:09 +0800 |
commit | 7136352b40631b058dd0fe731a0d404e761e799f (patch) | |
tree | 88c20a39539fcfcfe482ed88ad67758fbc0cf9c8 /include | |
parent | 9b5b45c7173b0447ec19aed4b901fd22db83d7eb (diff) | |
download | qemu-7136352b40631b058dd0fe731a0d404e761e799f.zip qemu-7136352b40631b058dd0fe731a0d404e761e799f.tar.gz qemu-7136352b40631b058dd0fe731a0d404e761e799f.tar.bz2 |
vhost_net: Rename vhost_set_vring_enable() for clarity
This is a cosmetic change with no functional impact.
The function vhost_set_vring_enable() is specific to vhost_net and
is used outside of vhost_net.c (specifically, in
hw/net/virtio-net.c). To prevent confusion with other similarly named
vhost functions, such as the one found in cryptodev-vhost.c, it has
been renamed to vhost_net_set_vring_enable(). This clarifies that the
function belongs to the vhost_net module.
Signed-off-by: Laurent Vivier <lvivier@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/vhost_net.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/vhost_net.h b/include/net/vhost_net.h index c6a5361..0f40049 100644 --- a/include/net/vhost_net.h +++ b/include/net/vhost_net.h @@ -41,7 +41,7 @@ void vhost_net_config_mask(VHostNetState *net, VirtIODevice *dev, bool mask); int vhost_net_notify_migration_done(VHostNetState *net, char* mac_addr); VHostNetState *get_vhost_net(NetClientState *nc); -int vhost_set_vring_enable(NetClientState * nc, int enable); +int vhost_net_set_vring_enable(NetClientState *nc, int enable); uint64_t vhost_net_get_acked_features(VHostNetState *net); |