Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 181c04a3 authored by Michael S. Tsirkin's avatar Michael S. Tsirkin
Browse files

vhost_scsi: module rename



Rename module and update Kconfig and Makefile.
Add alias for compatibility with old userspace
scripts if any.

Signed-off-by: default avatarMichael S. Tsirkin <mst@redhat.com>
Reviewed-by: default avatarAsias He <asias@redhat.com>
Acked-by: default avatarNicholas Bellinger <nab@linux-iscsi.org>
parent 5012a3a3
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -9,6 +9,10 @@ config VHOST_NET
	  To compile this driver as a module, choose M here: the module will
	  be called vhost_net.

if STAGING
source "drivers/vhost/Kconfig.tcm"
endif
config VHOST_SCSI
	tristate "VHOST_SCSI TCM fabric driver"
	depends on TARGET_CORE && EVENTFD && m
	default n
	---help---
	Say M here to enable the vhost_scsi TCM fabric module
	for use with virtio-scsi guests

drivers/vhost/Kconfig.tcm

deleted100644 → 0
+0 −6
Original line number Diff line number Diff line
config TCM_VHOST
	tristate "TCM_VHOST fabric module"
	depends on TARGET_CORE && EVENTFD && m
	default n
	---help---
	Say M here to enable the TCM_VHOST fabric module for use with virtio-scsi guests
+2 −2
Original line number Diff line number Diff line
obj-$(CONFIG_VHOST_NET) += vhost_net.o
vhost_net-y := vhost.o net.o

obj-$(CONFIG_TCM_VHOST) += tcm_vhost.o
tcm_vhost-y := scsi.o
obj-$(CONFIG_VHOST_SCSI) += vhost_scsi.o
vhost_scsi-y := scsi.o
+2 −1
Original line number Diff line number Diff line
@@ -2136,7 +2136,8 @@ static void tcm_vhost_exit(void)
	destroy_workqueue(tcm_vhost_workqueue);
};

MODULE_DESCRIPTION("TCM_VHOST series fabric driver");
MODULE_DESCRIPTION("VHOST_SCSI series fabric driver");
MODULE_ALIAS("tcm_vhost");
MODULE_LICENSE("GPL");
module_init(tcm_vhost_init);
module_exit(tcm_vhost_exit);