From: Vladimir Sementsov-Ogievskiy <[email protected]> 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]> Reviewed-by: Michael S. Tsirkin <[email protected]> Signed-off-by: Michael S. Tsirkin <[email protected]> Message-Id: <[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 0ea89d8af4..3943e0d006 100644 --- a/hw/virtio/meson.build +++ b/hw/virtio/meson.build @@ -14,7 +14,7 @@ system_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 system_virtio_ss.add(files('vhost-user.c')) system_virtio_ss.add(files('vhost-user-base.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. * -- MST
