This file is totally about vhost-kernel implementation, not generic code. Let's finally give it corresponding name.
Signed-off-by: Vladimir Sementsov-Ogievskiy <[email protected]> --- hw/virtio/meson.build | 2 +- hw/virtio/{vhost-backend.c => vhost-kernel.c} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename hw/virtio/{vhost-backend.c => vhost-kernel.c} (99%) diff --git a/hw/virtio/meson.build b/hw/virtio/meson.build index 6675b63ce6..9506a2185c 100644 --- a/hw/virtio/meson.build +++ b/hw/virtio/meson.build @@ -15,7 +15,7 @@ specific_virtio_ss.add(files('virtio-qmp.c')) if have_vhost system_virtio_ss.add(files('vhost.c')) - system_virtio_ss.add(files('vhost-backend.c', 'vhost-iova-tree.c')) + system_virtio_ss.add(files('vhost-kernel.c', 'vhost-iova-tree.c')) if have_vhost_user # fixme - this really should be generic specific_virtio_ss.add(files('vhost-user.c')) diff --git a/hw/virtio/vhost-backend.c b/hw/virtio/vhost-kernel.c similarity index 99% rename from hw/virtio/vhost-backend.c rename to hw/virtio/vhost-kernel.c index caeadd069b..3390b48c6f 100644 --- a/hw/virtio/vhost-backend.c +++ b/hw/virtio/vhost-kernel.c @@ -1,5 +1,5 @@ /* - * vhost-backend + * vhost-kernel * * Copyright (c) 2013 Virtual Open Systems Sarl. * -- 2.52.0
