From 78bdeadfe60b051871f1ca3fffbce9ce1304bd4f Mon Sep 17 00:00:00 2001 From: Vladimir Sementsov-Ogievskiy Date: Mon, 20 Apr 2026 23:20:24 +0300 Subject: [PATCH] vhost: rename vhost-backend.c to vhost-kernel.c This file is totally about vhost-kernel implementation, not generic code. Let's finally give it corresponding name. Signed-off-by: Vladimir Sementsov-Ogievskiy Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin Message-Id: <20260420202032.714884-4-vsementsov@yandex-team.ru> --- 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. *