diff options
author | Daniel De Graaf <dgdegra@tycho.nsa.gov> | 2011-02-07 17:23:05 -0500 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2011-02-14 14:16:17 -0500 |
commit | dd3140588d9551235ebc2a0dacdca098e7677573 (patch) | |
tree | e9d7c229121b6bd00627b8e6f45235ea6b8ec790 /drivers/xen/Makefile | |
parent | aab8f11a6b4641fcb8c139420f2eae879b5d1698 (diff) |
xen-gntalloc: Userspace grant allocation driver
This allows a userspace application to allocate a shared page for
implementing inter-domain communication or device drivers. These
shared pages can be mapped using the gntdev device or by the kernel
in another domain.
Signed-off-by: Daniel De Graaf <dgdegra@tycho.nsa.gov>
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 5088cc2e6fe..9585a1da52c 100644 --- a/drivers/xen/Makefile +++ b/drivers/xen/Makefile | |||
@@ -10,6 +10,7 @@ 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_XEN_GNTDEV) += xen-gntdev.o |
13 | obj-$(CONFIG_XEN_GRANT_DEV_ALLOC) += xen-gntalloc.o | ||
13 | obj-$(CONFIG_XENFS) += xenfs/ | 14 | obj-$(CONFIG_XENFS) += xenfs/ |
14 | obj-$(CONFIG_XEN_SYS_HYPERVISOR) += sys-hypervisor.o | 15 | obj-$(CONFIG_XEN_SYS_HYPERVISOR) += sys-hypervisor.o |
15 | obj-$(CONFIG_XEN_PLATFORM_PCI) += xen-platform-pci.o | 16 | obj-$(CONFIG_XEN_PLATFORM_PCI) += xen-platform-pci.o |
@@ -18,5 +19,6 @@ obj-$(CONFIG_XEN_DOM0) += pci.o | |||
18 | 19 | ||
19 | xen-evtchn-y := evtchn.o | 20 | xen-evtchn-y := evtchn.o |
20 | xen-gntdev-y := gntdev.o | 21 | xen-gntdev-y := gntdev.o |
22 | xen-gntalloc-y := gntalloc.o | ||
21 | 23 | ||
22 | xen-platform-pci-y := platform-pci.o | 24 | xen-platform-pci-y := platform-pci.o |