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

Commit 26d57306 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "vservices: block: add the block protocol and drivers"

parents 68cf83d5 402932a0
Loading
Loading
Loading
Loading
+20 −0
Original line number Diff line number Diff line
@@ -538,3 +538,23 @@ config BLK_DEV_RSXX
	  module will be called rsxx.

endif # BLK_DEV

config VSERVICES_BLOCK_SERVER
	tristate "Virtual Services block server"
	depends on BLOCK && VSERVICES_SUPPORT && VSERVICES_SERVER
	default y
	select VSERVICES_PROTOCOL_BLOCK_SERVER
	help
	  Select this option if you want support for server side Virtual
	  Services block. This allows any Linux block device to be
	  virtualized and exported as a virtual service.

config VSERVICES_BLOCK_CLIENT
	tristate "Virtual Services Block client device"
	depends on BLOCK && VSERVICES_SUPPORT && VSERVICES_CLIENT
	default y
	select VSERVICES_PROTOCOL_BLOCK_CLIENT
	help
	  Select this option if you want support for client side Virtual
	  Services block devices. The virtual block devices are typically
	  named /dev/vblock0, /dev/vblock1, etc.
+5 −0
Original line number Diff line number Diff line
@@ -44,3 +44,8 @@ obj-$(CONFIG_ZRAM) += zram/

skd-y		:= skd_main.o
swim_mod-y	:= swim.o swim_asm.o

obj-$(CONFIG_VSERVICES_BLOCK_SERVER)     += vs_block_server.o
CFLAGS_vs_block_server.o += -Werror
obj-$(CONFIG_VSERVICES_BLOCK_CLIENT)     += vs_block_client.o
CFLAGS_vs_block_client.o += -Werror
Loading