2008-03-28 07:58:47 +01:00
|
|
|
#
|
|
|
|
# KVM configuration
|
|
|
|
#
|
|
|
|
|
2009-05-21 15:45:19 +02:00
|
|
|
source "virt/kvm/Kconfig"
|
2009-01-04 17:04:18 +01:00
|
|
|
|
2008-03-28 07:58:47 +01:00
|
|
|
menuconfig VIRTUALIZATION
|
|
|
|
bool "Virtualization"
|
|
|
|
depends on HAVE_KVM || IA64
|
|
|
|
default y
|
|
|
|
---help---
|
|
|
|
Say Y here to get to see options for using your Linux host to run other
|
|
|
|
operating systems inside virtual machines (guests).
|
|
|
|
This option alone does not add any kernel code.
|
|
|
|
|
|
|
|
If you say N, all options in this submenu will be skipped and disabled.
|
|
|
|
|
|
|
|
if VIRTUALIZATION
|
|
|
|
|
|
|
|
config KVM
|
|
|
|
tristate "Kernel-based Virtual Machine (KVM) support"
|
2009-04-09 15:37:28 +02:00
|
|
|
depends on HAVE_KVM && MODULES && EXPERIMENTAL
|
2008-11-04 10:25:17 +01:00
|
|
|
# for device assignment:
|
|
|
|
depends on PCI
|
2008-03-28 07:58:47 +01:00
|
|
|
select PREEMPT_NOTIFIERS
|
|
|
|
select ANON_INODES
|
2009-05-21 15:45:19 +02:00
|
|
|
select HAVE_KVM_IRQCHIP
|
2009-06-09 14:56:28 +02:00
|
|
|
select KVM_APIC_ARCHITECTURE
|
2009-12-20 14:00:10 +01:00
|
|
|
select KVM_MMIO
|
2008-03-28 07:58:47 +01:00
|
|
|
---help---
|
|
|
|
Support hosting fully virtualized guest machines using hardware
|
|
|
|
virtualization extensions. You will need a fairly recent
|
|
|
|
processor equipped with virtualization extensions. You will also
|
|
|
|
need to select one or more of the processor modules below.
|
|
|
|
|
|
|
|
This module provides access to the hardware capabilities through
|
|
|
|
a character device node named /dev/kvm.
|
|
|
|
|
|
|
|
To compile this as a module, choose M here: the module
|
|
|
|
will be called kvm.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config KVM_INTEL
|
|
|
|
tristate "KVM for Intel Itanium 2 processors support"
|
|
|
|
depends on KVM && m
|
|
|
|
---help---
|
|
|
|
Provides support for KVM on Itanium 2 processors equipped with the VT
|
|
|
|
extensions.
|
|
|
|
|
vhost_net: a kernel-level virtio server
What it is: vhost net is a character device that can be used to reduce
the number of system calls involved in virtio networking.
Existing virtio net code is used in the guest without modification.
There's similarity with vringfd, with some differences and reduced scope
- uses eventfd for signalling
- structures can be moved around in memory at any time (good for
migration, bug work-arounds in userspace)
- write logging is supported (good for migration)
- support memory table and not just an offset (needed for kvm)
common virtio related code has been put in a separate file vhost.c and
can be made into a separate module if/when more backends appear. I used
Rusty's lguest.c as the source for developing this part : this supplied
me with witty comments I wouldn't be able to write myself.
What it is not: vhost net is not a bus, and not a generic new system
call. No assumptions are made on how guest performs hypercalls.
Userspace hypervisors are supported as well as kvm.
How it works: Basically, we connect virtio frontend (configured by
userspace) to a backend. The backend could be a network device, or a tap
device. Backend is also configured by userspace, including vlan/mac
etc.
Status: This works for me, and I haven't see any crashes.
Compared to userspace, people reported improved latency (as I save up to
4 system calls per packet), as well as better bandwidth and CPU
utilization.
Features that I plan to look at in the future:
- mergeable buffers
- zero copy
- scalability tuning: figure out the best threading model to use
Note on RCU usage (this is also documented in vhost.h, near
private_pointer which is the value protected by this variant of RCU):
what is happening is that the rcu_dereference() is being used in a
workqueue item. The role of rcu_read_lock() is taken on by the start of
execution of the workqueue item, of rcu_read_unlock() by the end of
execution of the workqueue item, and of synchronize_rcu() by
flush_workqueue()/flush_work(). In the future we might need to apply
some gcc attribute or sparse annotation to the function passed to
INIT_WORK(). Paul's ack below is for this RCU usage.
(Includes fixes by Alan Cox <alan@linux.intel.com>,
David L Stevens <dlstevens@us.ibm.com>,
Chris Wright <chrisw@redhat.com>)
Acked-by: Rusty Russell <rusty@rustcorp.com.au>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2010-01-14 07:17:27 +01:00
|
|
|
source drivers/vhost/Kconfig
|
2008-08-26 02:58:53 +02:00
|
|
|
|
2008-03-28 07:58:47 +01:00
|
|
|
endif # VIRTUALIZATION
|