blob: f77f15bd3b0c0307f70f8fe58163daec676ae9ed [file] [log] [blame]
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001config VHOST_NET
Kees Cook43893cb2013-01-16 18:53:56 -08002 tristate "Host kernel accelerator for virtio net"
3 depends on NET && EVENTFD && (TUN || !TUN) && (MACVTAP || !MACVTAP)
Asias He6ac1afb2013-05-06 16:38:21 +08004 select VHOST
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00005 ---help---
6 This kernel module can be loaded in host kernel to accelerate
7 guest networking with virtio_net. Not to be confused with virtio_net
8 module itself which needs to be loaded in guest kernel.
9
10 To compile this driver as a module, choose M here: the module will
11 be called vhost_net.
12
Michael S. Tsirkin181c04a2013-05-02 03:52:59 +030013config VHOST_SCSI
14 tristate "VHOST_SCSI TCM fabric driver"
15 depends on TARGET_CORE && EVENTFD && m
Asias He6ac1afb2013-05-06 16:38:21 +080016 select VHOST
Michael S. Tsirkin181c04a2013-05-02 03:52:59 +030017 default n
18 ---help---
19 Say M here to enable the vhost_scsi TCM fabric module
20 for use with virtio-scsi guests
Rusty Russellf87d0fb2013-03-20 13:50:14 +103021
Asias He304ba622016-07-28 15:36:35 +010022config VHOST_VSOCK
23 tristate "vhost virtio-vsock driver"
24 depends on VSOCKETS && EVENTFD
25 select VIRTIO_VSOCKETS_COMMON
26 select VHOST
27 default n
28 ---help---
29 This kernel module can be loaded in the host kernel to provide AF_VSOCK
30 sockets for communicating with guests. The guests must have the
31 virtio_transport.ko driver loaded to use the virtio-vsock device.
32
33 To compile this driver as a module, choose M here: the module will be called
34 vhost_vsock.
35
Rusty Russellf87d0fb2013-03-20 13:50:14 +103036config VHOST_RING
37 tristate
38 ---help---
39 This option is selected by any driver which needs to access
40 the host side of a virtio ring.
Asias He6ac1afb2013-05-06 16:38:21 +080041
42config VHOST
43 tristate
44 ---help---
45 This option is selected by any driver which needs to access
46 the core of vhost.
Greg Kurz2751c982015-04-24 14:27:24 +020047
48config VHOST_CROSS_ENDIAN_LEGACY
49 bool "Cross-endian support for vhost"
50 default n
51 ---help---
52 This option allows vhost to support guests with a different byte
53 ordering from host while using legacy virtio.
54
55 Userspace programs can control the feature using the
56 VHOST_SET_VRING_ENDIAN and VHOST_GET_VRING_ENDIAN ioctls.
57
58 This is only useful on a few platforms (ppc64 and arm64). Since it
59 adds some overhead, it is disabled by default.
60
61 If unsure, say "N".