Adds the virtual services block protocol and block io drivers. This protocol and drivers support exporting virtual block devices from one VM to another, which are backed by another block device. Change-Id: I47f86307c6201cb66d81bd453bb8c6c7ce99480f Signed-off-by: Carl van Schaik <carl@cog.systems> Git-commit: 9e55989babab087627e1ae42b2ed8e656c4b3993 Git-repo: https://github.com/CogSystems/linux-msm/commits/msm-4.9-hyp Signed-off-by: Murali Nalajala <mnalajal@codeaurora.org> [pheragu@codeaurora: Changing bio APIs] Signed-off-by: Prakruthi Deepak Heragu <pheragu@codeaurora.org> Signed-off-by: Murali Nalajala <mnalajal@codeaurora.org>
45 lines
1.2 KiB
Plaintext
45 lines
1.2 KiB
Plaintext
#
|
|
# vServices protocol drivers configuration
|
|
#
|
|
|
|
if VSERVICES_SERVER || VSERVICES_CLIENT
|
|
|
|
menu "Protocol drivers"
|
|
config VSERVICES_PROTOCOL_BLOCK
|
|
bool
|
|
|
|
config VSERVICES_PROTOCOL_BLOCK_SERVER
|
|
tristate "Block server protocol"
|
|
depends on VSERVICES_SUPPORT && VSERVICES_SERVER
|
|
select VSERVICES_PROTOCOL_BLOCK
|
|
help
|
|
This option adds support for Virtual Services block protocol server.
|
|
|
|
config VSERVICES_PROTOCOL_BLOCK_CLIENT
|
|
tristate "Block client protocol"
|
|
depends on VSERVICES_SUPPORT && VSERVICES_CLIENT
|
|
select VSERVICES_PROTOCOL_BLOCK
|
|
help
|
|
This option adds support for Virtual Services block protocol client.
|
|
|
|
config VSERVICES_PROTOCOL_SERIAL
|
|
bool
|
|
|
|
config VSERVICES_PROTOCOL_SERIAL_SERVER
|
|
tristate "Serial server protocol"
|
|
depends on VSERVICES_SUPPORT && VSERVICES_SERVER
|
|
select VSERVICES_PROTOCOL_SERIAL
|
|
help
|
|
This option adds support for Virtual Services serial protocol server.
|
|
|
|
config VSERVICES_PROTOCOL_SERIAL_CLIENT
|
|
tristate "Serial client protocol"
|
|
depends on VSERVICES_SUPPORT && VSERVICES_CLIENT
|
|
select VSERVICES_PROTOCOL_SERIAL
|
|
help
|
|
This option adds support for Virtual Services serial protocol client.
|
|
|
|
endmenu
|
|
|
|
endif # VSERVICES_SERVER || VSERVICES_CLIENT
|