diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2010-12-14 13:40:46 -0500 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2011-01-11 14:30:52 -0500 |
commit | ab31523c2fcac557226bac72cbdf5fafe01f9a26 (patch) | |
tree | d846311151a68cb0c3bf55b2c77f34a33e0b02fd /drivers/xen/Makefile | |
parent | f07745325cbd93afc5d8bcf7539a063d33134075 (diff) |
xen/gntdev: allow usermode to map granted pages
The gntdev driver allows usermode to map granted pages from other
domains. This is typically used to implement a Xen backend driver
in user mode.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Stefano Stabellini <Stefano.Stabellini@eu.citrix.com>
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'drivers/xen/Makefile')
-rw-r--r-- | drivers/xen/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/xen/Makefile b/drivers/xen/Makefile index 533a199e7a3f..674fdb5fee49 100644 --- a/drivers/xen/Makefile +++ b/drivers/xen/Makefile | |||
@@ -9,6 +9,7 @@ obj-$(CONFIG_HOTPLUG_CPU) += cpu_hotplug.o | |||
9 | obj-$(CONFIG_XEN_XENCOMM) += xencomm.o | 9 | obj-$(CONFIG_XEN_XENCOMM) += xencomm.o |
10 | obj-$(CONFIG_XEN_BALLOON) += balloon.o | 10 | obj-$(CONFIG_XEN_BALLOON) += balloon.o |
11 | obj-$(CONFIG_XEN_DEV_EVTCHN) += xen-evtchn.o | 11 | obj-$(CONFIG_XEN_DEV_EVTCHN) += xen-evtchn.o |
12 | obj-$(CONFIG_XEN_GNTDEV) += xen-gntdev.o | ||
12 | obj-$(CONFIG_XENFS) += xenfs/ | 13 | obj-$(CONFIG_XENFS) += xenfs/ |
13 | obj-$(CONFIG_XEN_SYS_HYPERVISOR) += sys-hypervisor.o | 14 | obj-$(CONFIG_XEN_SYS_HYPERVISOR) += sys-hypervisor.o |
14 | obj-$(CONFIG_XEN_PLATFORM_PCI) += platform-pci.o | 15 | obj-$(CONFIG_XEN_PLATFORM_PCI) += platform-pci.o |
@@ -16,4 +17,5 @@ obj-$(CONFIG_SWIOTLB_XEN) += swiotlb-xen.o | |||
16 | obj-$(CONFIG_XEN_DOM0) += pci.o | 17 | obj-$(CONFIG_XEN_DOM0) += pci.o |
17 | 18 | ||
18 | xen-evtchn-y := evtchn.o | 19 | xen-evtchn-y := evtchn.o |
20 | xen-gntdev-y := gntdev.o | ||
19 | 21 | ||