diff options
author | Ian Campbell <ian.campbell@citrix.com> | 2009-02-07 03:46:48 +0100 |
---|---|---|
committer | Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> | 2010-10-21 01:22:26 +0200 |
commit | 655d406a7c80bffc03263d071b6ba1e0fcf548f9 (patch) | |
tree | d3cbe97860bff0d347111ff293b6f5b3124bf67e /drivers/xen/xenfs/Makefile | |
parent | Linux 2.6.36-rc8 (diff) | |
download | linux-655d406a7c80bffc03263d071b6ba1e0fcf548f9.tar.xz linux-655d406a7c80bffc03263d071b6ba1e0fcf548f9.zip |
xen: add /proc/xen/xsd_{kva,port} to xenfs
These are used by the userspace xenstore daemon, which runs in dom0.
Xenstored is what's behind the xenfs "xenbus" filesystem.
[ Impact: provide mapping and port to usermode for xenstore ]
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Diffstat (limited to 'drivers/xen/xenfs/Makefile')
-rw-r--r-- | drivers/xen/xenfs/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/xen/xenfs/Makefile b/drivers/xen/xenfs/Makefile index 25275c3bbdff..5d45ff13cc01 100644 --- a/drivers/xen/xenfs/Makefile +++ b/drivers/xen/xenfs/Makefile @@ -1,3 +1,4 @@ obj-$(CONFIG_XENFS) += xenfs.o -xenfs-objs = super.o xenbus.o
\ No newline at end of file +xenfs-y = super.o xenbus.o +xenfs-$(CONFIG_XEN_DOM0) += xenstored.o |