]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/man/man4/vmm.4
8942 zfs promote .../%recv should be an error
[FreeBSD/FreeBSD.git] / share / man / man4 / vmm.4
1 .\" Copyright (c) 2013 Peter Grehan
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD$
26 .\"
27 .Dd December 19, 2013
28 .Dt VMM 4
29 .Os
30 .Sh NAME
31 .Nm vmm.ko
32 .Nd "bhyve virtual machine monitor"
33 .Sh SYNOPSIS
34 .Pp
35 To load the driver as a module at boot, add this line to
36 .Xr loader.conf 5 :
37 .Bd -literal -offset indent
38 .Cd vmm_load="YES"
39 .Ed
40 .Pp
41 The module can also be loaded manually with
42 .Xr kldload 8 :
43 .Bd -literal -offset indent
44 kldload vmm
45 .Ed
46 .Sh DESCRIPTION
47 .Nm
48 provides the kernel portion of the
49 .Xr bhyve 4
50 hypervisor. 
51 .Pp
52 An Intel CPU with VT-x/EPT or AMD CPU with SVM support is required.
53 .Pp
54 PCI device passthrough to a virtual machine requires
55 hardware with VT-d support.
56 .Sh PCI PASSTHROUGH
57 When the hardware supports VT-d, and
58 .Nm
59 has been loaded at boot time,
60 PCI devices can be reserved for use by the hypervisor.
61 Entries consisting of the PCI
62 .Ar bus Ns / Ns Ar slot Ns / Ns Ar function
63 are added to the
64 .Va pptdevs
65 .Xr loader.conf 5
66 variable.
67 Additional entries are separated by spaces.
68 Host PCI devices that match an entry will be assigned to the hypervisor
69 and will not be probed by
70 .Fx
71 device drivers.
72 See the
73 .Sx EXAMPLES
74 section below for sample usage.
75 .Pp
76 A large number of PCI device entries may require a string longer than the
77 128-character limit of
78 .Xr loader.conf 5
79 variables.
80 The
81 .Va pptdevs2
82 and
83 .Va pptdevs3
84 variables can be used for additional entries.
85 .Sh EXAMPLES
86 Reserve three PCI devices for use by the hypervisor: bus 10 slot 0 function 0,
87 bus 6 slot 5 function 0, and bus 6 slot 5 function 1.
88 .Bd -literal -offset indent
89 pptdevs="10/0/0 6/5/0 6/5/1"
90 .Ed
91 .Sh SEE ALSO
92 .Xr bhyve 4 ,
93 .Xr loader.conf 5 ,
94 .Xr bhyve 8 ,
95 .Xr bhyveload 8 ,
96 .Xr kldload 8
97 .Sh HISTORY
98 .Nm vmm.ko
99 first appeared in
100 .Fx 10.0 .
101 .Sh AUTHORS
102 .An Neel Natu Aq neel@freebsd.org
103 .An Peter Grehan Aq grehan@freebsd.org
104
105